summaryrefslogtreecommitdiff
path: root/share/info/bfd.info
diff options
context:
space:
mode:
Diffstat (limited to 'share/info/bfd.info')
-rw-r--r--share/info/bfd.info2310
1 files changed, 1286 insertions, 1024 deletions
diff --git a/share/info/bfd.info b/share/info/bfd.info
index e5d55d6..20780fa 100644
--- a/share/info/bfd.info
+++ b/share/info/bfd.info
@@ -1,5 +1,7 @@
-This is bfd.info, produced by makeinfo version 4.13 from /tmp/android-17841/src/build/../gdb/gdb-7.1.x/bfd/doc/bfd.texinfo.
+This is bfd.info, produced by makeinfo version 4.13 from
+/tmp/android-9627/src/build/../gdb/gdb-7.3.x/bfd/doc/bfd.texinfo.
+INFO-DIR-SECTION Software development
START-INFO-DIR-ENTRY
* Bfd: (bfd). The Binary File Descriptor library.
END-INFO-DIR-ENTRY
@@ -428,6 +430,21 @@ major data about the file and pointers to the rest of the data.
will be consistent from run to run. */
#define BFD_DETERMINISTIC_OUTPUT 0x4000
+ /* Compress sections in this BFD. */
+ #define BFD_COMPRESS 0x8000
+
+ /* Decompress sections in this BFD. */
+ #define BFD_DECOMPRESS 0x10000
+
+ /* Flags bits to be saved in bfd_preserve_save. */
+ #define BFD_FLAGS_SAVED \
+ (BFD_IN_MEMORY | BFD_COMPRESS | BFD_DECOMPRESS)
+
+ /* Flags bits which are for BFD use only. */
+ #define BFD_FLAGS_FOR_BFD_USE_MASK \
+ (BFD_IN_MEMORY | BFD_COMPRESS | BFD_DECOMPRESS | BFD_LINKER_CREATED \
+ | BFD_TRADITIONAL_FORMAT | BFD_DETERMINISTIC_OUTPUT)
+
/* Currently my_archive is tested before adding origin to
anything. I believe that this can become always an add of
origin, with origin set to 0 for non archive files. */
@@ -563,6 +580,10 @@ major data about the file and pointers to the rest of the data.
/* Set if this is a thin archive. */
unsigned int is_thin_archive : 1;
+
+ /* Set if only required symbols should be added in the link hash table for
+ this object. Used by VMS linkers. */
+ unsigned int selective_search : 1;
};
2.2 Error reporting
@@ -1125,6 +1146,7 @@ below).
void *(*bmmap) (struct bfd *abfd, void *addr, bfd_size_type len,
int prot, int flags, file_ptr offset);
};
+ extern const struct bfd_iovec _bfd_memory_iovec;
2.3.1.26 `bfd_get_mtime'
........................
@@ -1570,6 +1592,12 @@ Here is the section structure:
/* Mark flag used by some linker backends for garbage collection. */
unsigned int gc_mark : 1;
+ /* Section compression status. */
+ unsigned int compress_status : 2;
+ #define COMPRESS_SECTION_NONE 0
+ #define COMPRESS_SECTION_DONE 1
+ #define DECOMPRESS_SECTION_SIZED 2
+
/* The following flags are used by the ELF linker. */
/* Mark sections which have been allocated to segments. */
@@ -1626,6 +1654,9 @@ Here is the section structure:
section size calculated on a previous linker relaxation pass. */
bfd_size_type rawsize;
+ /* The compressed size of the section in octets. */
+ bfd_size_type compressed_size;
+
/* Relaxation table. */
struct relax_table *relax;
@@ -1859,17 +1890,17 @@ Here is the section structure:
/* name, id, index, next, prev, flags, user_set_vma, */ \
{ NAME, IDX, 0, NULL, NULL, FLAGS, 0, \
\
- /* linker_mark, linker_has_input, gc_mark, segment_mark, */ \
+ /* linker_mark, linker_has_input, gc_mark, decompress_status, */ \
0, 0, 1, 0, \
\
- /* sec_info_type, use_rela_p, */ \
- 0, 0, \
+ /* segment_mark, sec_info_type, use_rela_p, */ \
+ 0, 0, 0, \
\
/* sec_flg0, sec_flg1, sec_flg2, sec_flg3, sec_flg4, sec_flg5, */ \
0, 0, 0, 0, 0, 0, \
\
- /* vma, lma, size, rawsize, relax, relax_count, */ \
- 0, 0, 0, 0, 0, 0, \
+ /* 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, \
@@ -2048,7 +2079,16 @@ 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_map_over_sections'
+2.6.5.11 `bfd_rename_section'
+.............................
+
+*Synopsis*
+ void bfd_rename_section
+ (bfd *abfd, asection *sec, const char *newname);
+ *Description*
+Rename section SEC in ABFD to NEWNAME.
+
+2.6.5.12 `bfd_map_over_sections'
................................
*Synopsis*
@@ -2069,7 +2109,7 @@ alternative would be to use a loop:
for (p = abfd->sections; p != NULL; p = p->next)
func (abfd, p, ...)
-2.6.5.12 `bfd_sections_find_if'
+2.6.5.13 `bfd_sections_find_if'
...............................
*Synopsis*
@@ -2086,7 +2126,7 @@ by
It returns the first section for which OPERATION returns true.
-2.6.5.13 `bfd_set_section_size'
+2.6.5.14 `bfd_set_section_size'
...............................
*Synopsis*
@@ -2100,7 +2140,7 @@ returned, else `FALSE'.
* `bfd_error_invalid_operation' - Writing has started to the BFD, so
setting the size is invalid.
-2.6.5.14 `bfd_set_section_contents'
+2.6.5.15 `bfd_set_section_contents'
...................................
*Synopsis*
@@ -2121,7 +2161,7 @@ are:
This routine is front end to the back end function
`_bfd_set_section_contents'.
-2.6.5.15 `bfd_get_section_contents'
+2.6.5.16 `bfd_get_section_contents'
...................................
*Synopsis*
@@ -2138,7 +2178,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.16 `bfd_malloc_and_get_section'
+2.6.5.17 `bfd_malloc_and_get_section'
.....................................
*Synopsis*
@@ -2148,7 +2188,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.17 `bfd_copy_private_section_data'
+2.6.5.18 `bfd_copy_private_section_data'
........................................
*Synopsis*
@@ -2166,7 +2206,7 @@ error. Possible error returns are:
BFD_SEND (obfd, _bfd_copy_private_section_data, \
(ibfd, isection, obfd, osection))
-2.6.5.18 `bfd_generic_is_group_section'
+2.6.5.19 `bfd_generic_is_group_section'
.......................................
*Synopsis*
@@ -2174,7 +2214,7 @@ error. Possible error returns are:
*Description*
Returns TRUE if SEC is a member of a group.
-2.6.5.19 `bfd_generic_discard_group'
+2.6.5.20 `bfd_generic_discard_group'
....................................
*Synopsis*
@@ -3062,10 +3102,7 @@ information that libbfd needs to know to tie up a back end's data.
when doing overflow checking. */
unsigned int bitsize;
- /* Notes that the relocation is relative to the location in the
- data section of the addend. The relocation function will
- subtract from the relocation value the address of the location
- being relocated. */
+ /* The relocation is relative to the field being relocated. */
bfd_boolean pc_relative;
/* The bit position of the reloc value in the destination.
@@ -4014,6 +4051,7 @@ attributes.
-- : BFD_RELOC_ARM_RELATIVE
-- : BFD_RELOC_ARM_GOTOFF
-- : BFD_RELOC_ARM_GOTPC
+ -- : BFD_RELOC_ARM_GOT_PREL
Relocations for setting up GOTs and PLTs for shared libraries.
-- : BFD_RELOC_ARM_TLS_GD32
@@ -4024,6 +4062,12 @@ attributes.
-- : BFD_RELOC_ARM_TLS_TPOFF32
-- : BFD_RELOC_ARM_TLS_IE32
-- : BFD_RELOC_ARM_TLS_LE32
+ -- : BFD_RELOC_ARM_TLS_GOTDESC
+ -- : BFD_RELOC_ARM_TLS_CALL
+ -- : BFD_RELOC_ARM_THM_TLS_CALL
+ -- : BFD_RELOC_ARM_TLS_DESCSEQ
+ -- : BFD_RELOC_ARM_THM_TLS_DESCSEQ
+ -- : BFD_RELOC_ARM_TLS_DESC
ARM thread-local storage relocations.
-- : BFD_RELOC_ARM_ALU_PC_G0_NC
@@ -4059,6 +4103,9 @@ attributes.
-- : BFD_RELOC_ARM_V4BX
Annotation of BX instructions.
+ -- : BFD_RELOC_ARM_IRELATIVE
+ ARM support for STT_GNU_IFUNC.
+
-- : BFD_RELOC_ARM_IMMEDIATE
-- : BFD_RELOC_ARM_ADRL_IMMEDIATE
-- : BFD_RELOC_ARM_T32_IMMEDIATE
@@ -4067,6 +4114,7 @@ attributes.
-- : BFD_RELOC_ARM_T32_ADD_PC12
-- : BFD_RELOC_ARM_SHIFT_IMM
-- : BFD_RELOC_ARM_SMC
+ -- : BFD_RELOC_ARM_HVC
-- : BFD_RELOC_ARM_SWI
-- : BFD_RELOC_ARM_MULTI
-- : BFD_RELOC_ARM_CP_OFF_IMM
@@ -4177,6 +4225,13 @@ attributes.
-- : BFD_RELOC_SH_TLS_DTPMOD32
-- : BFD_RELOC_SH_TLS_DTPOFF32
-- : BFD_RELOC_SH_TLS_TPOFF32
+ -- : BFD_RELOC_SH_GOT20
+ -- : BFD_RELOC_SH_GOTOFF20
+ -- : BFD_RELOC_SH_GOTFUNCDESC
+ -- : BFD_RELOC_SH_GOTFUNCDESC20
+ -- : BFD_RELOC_SH_GOTOFFFUNCDESC
+ -- : BFD_RELOC_SH_GOTOFFFUNCDESC20
+ -- : BFD_RELOC_SH_FUNCDESC
Renesas / SuperH SH relocs. Not all of these appear in object
files.
@@ -4495,6 +4550,72 @@ attributes.
This is a variation of BFD_RELOC_LO16 that can be used in v850e
ld.bu instructions.
+ -- : BFD_RELOC_V850_16_PCREL
+ This is a 16-bit reloc.
+
+ -- : BFD_RELOC_V850_17_PCREL
+ This is a 17-bit reloc.
+
+ -- : BFD_RELOC_V850_23
+ This is a 23-bit reloc.
+
+ -- : BFD_RELOC_V850_32_PCREL
+ This is a 32-bit reloc.
+
+ -- : BFD_RELOC_V850_32_ABS
+ This is a 32-bit reloc.
+
+ -- : BFD_RELOC_V850_16_SPLIT_OFFSET
+ This is a 16-bit reloc.
+
+ -- : BFD_RELOC_V850_16_S1
+ This is a 16-bit reloc.
+
+ -- : BFD_RELOC_V850_LO16_S1
+ Low 16 bits. 16 bit shifted by 1.
+
+ -- : BFD_RELOC_V850_CALLT_15_16_OFFSET
+ This is a 16 bit offset from the call table base pointer.
+
+ -- : BFD_RELOC_V850_32_GOTPCREL
+ DSO relocations.
+
+ -- : BFD_RELOC_V850_16_GOT
+ DSO relocations.
+
+ -- : BFD_RELOC_V850_32_GOT
+ DSO relocations.
+
+ -- : BFD_RELOC_V850_22_PLT_PCREL
+ DSO relocations.
+
+ -- : BFD_RELOC_V850_32_PLT_PCREL
+ DSO relocations.
+
+ -- : BFD_RELOC_V850_COPY
+ DSO relocations.
+
+ -- : BFD_RELOC_V850_GLOB_DAT
+ DSO relocations.
+
+ -- : BFD_RELOC_V850_JMP_SLOT
+ DSO relocations.
+
+ -- : BFD_RELOC_V850_RELATIVE
+ DSO relocations.
+
+ -- : BFD_RELOC_V850_16_GOTOFF
+ DSO relocations.
+
+ -- : BFD_RELOC_V850_32_GOTOFF
+ DSO relocations.
+
+ -- : BFD_RELOC_V850_CODE
+ start code.
+
+ -- : 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.
@@ -4530,6 +4651,38 @@ attributes.
This is a reloc for the tms320c54x, where the most significant 7
bits of a 23-bit extended address are placed into the opcode.
+ -- : BFD_RELOC_C6000_PCR_S21
+ -- : BFD_RELOC_C6000_PCR_S12
+ -- : BFD_RELOC_C6000_PCR_S10
+ -- : BFD_RELOC_C6000_PCR_S7
+ -- : BFD_RELOC_C6000_ABS_S16
+ -- : BFD_RELOC_C6000_ABS_L16
+ -- : BFD_RELOC_C6000_ABS_H16
+ -- : BFD_RELOC_C6000_SBR_U15_B
+ -- : BFD_RELOC_C6000_SBR_U15_H
+ -- : BFD_RELOC_C6000_SBR_U15_W
+ -- : BFD_RELOC_C6000_SBR_S16
+ -- : BFD_RELOC_C6000_SBR_L16_B
+ -- : BFD_RELOC_C6000_SBR_L16_H
+ -- : BFD_RELOC_C6000_SBR_L16_W
+ -- : BFD_RELOC_C6000_SBR_H16_B
+ -- : BFD_RELOC_C6000_SBR_H16_H
+ -- : BFD_RELOC_C6000_SBR_H16_W
+ -- : BFD_RELOC_C6000_SBR_GOT_U15_W
+ -- : BFD_RELOC_C6000_SBR_GOT_L16_W
+ -- : BFD_RELOC_C6000_SBR_GOT_H16_W
+ -- : BFD_RELOC_C6000_DSBT_INDEX
+ -- : BFD_RELOC_C6000_PREL31
+ -- : BFD_RELOC_C6000_COPY
+ -- : BFD_RELOC_C6000_JUMP_SLOT
+ -- : BFD_RELOC_C6000_EHTYPE
+ -- : BFD_RELOC_C6000_PCR_H16
+ -- : BFD_RELOC_C6000_PCR_L16
+ -- : BFD_RELOC_C6000_ALIGN
+ -- : BFD_RELOC_C6000_FPHEAD
+ -- : BFD_RELOC_C6000_NOCMP
+ TMS320C6000 relocations.
+
-- : BFD_RELOC_FR30_48
This is a 48 bit reloc for the FR30 that stores 32 bits.
@@ -4761,9 +4914,12 @@ attributes.
-- : BFD_RELOC_RX_GPRELL
-- : BFD_RELOC_RX_SYM
-- : BFD_RELOC_RX_OP_SUBTRACT
+ -- : BFD_RELOC_RX_OP_NEG
-- : BFD_RELOC_RX_ABS8
-- : BFD_RELOC_RX_ABS16
+ -- : BFD_RELOC_RX_ABS16_REV
-- : BFD_RELOC_RX_ABS32
+ -- : BFD_RELOC_RX_ABS32_REV
-- : BFD_RELOC_RX_ABS16U
-- : BFD_RELOC_RX_ABS16UW
-- : BFD_RELOC_RX_ABS16UL
@@ -5643,7 +5799,16 @@ failed and produced the core file ABFD.
Returns the signal number which caused the core dump which generated
the file the BFD ABFD is attached to.
-2.11.1.3 `core_file_matches_executable_p'
+2.11.1.3 `bfd_core_file_pid'
+............................
+
+*Synopsis*
+ int bfd_core_file_pid (bfd *abfd);
+ *Description*
+Returns the PID of the process the core dump the BFD ABFD is attached
+to was generated from.
+
+2.11.1.4 `core_file_matches_executable_p'
.........................................
*Synopsis*
@@ -5653,7 +5818,7 @@ the file the BFD ABFD is attached to.
Return `TRUE' if the core file attached to CORE_BFD was generated by a
run of the executable file attached to EXEC_BFD, `FALSE' otherwise.
-2.11.1.4 `generic_core_file_matches_executable_p'
+2.11.1.5 `generic_core_file_matches_executable_p'
.................................................
*Synopsis*
@@ -5938,11 +6103,13 @@ BFD_JUMP_TABLE macros.
#define BFD_JUMP_TABLE_CORE(NAME) \
NAME##_core_file_failing_command, \
NAME##_core_file_failing_signal, \
- NAME##_core_file_matches_executable_p
+ NAME##_core_file_matches_executable_p, \
+ NAME##_core_file_pid
char * (*_core_file_failing_command) (bfd *);
int (*_core_file_failing_signal) (bfd *);
bfd_boolean (*_core_file_matches_executable_p) (bfd *, bfd *);
+ int (*_core_file_pid) (bfd *);
/* Archive entry points. */
#define BFD_JUMP_TABLE_ARCHIVE(NAME) \
@@ -6380,6 +6547,7 @@ i960 KB, and 68020 and 68030 for Motorola 68020 and 68030.
#define bfd_mach_mips5 5
#define bfd_mach_mips_loongson_2e 3001
#define bfd_mach_mips_loongson_2f 3002
+ #define bfd_mach_mips_loongson_3a 3003
#define bfd_mach_mips_sb1 12310201 /* octal 'SB', 01 */
#define bfd_mach_mips_octeon 6501
#define bfd_mach_mips_xlr 887682 /* decimal 'XLR' */
@@ -6391,6 +6559,8 @@ i960 KB, and 68020 and 68030 for Motorola 68020 and 68030.
#define bfd_mach_i386_i386 1
#define bfd_mach_i386_i8086 2
#define bfd_mach_i386_i386_intel_syntax 3
+ #define bfd_mach_x64_32 32
+ #define bfd_mach_x64_32_intel_syntax 33
#define bfd_mach_x86_64 64
#define bfd_mach_x86_64_intel_syntax 65
bfd_arch_l1om, /* Intel L1OM */
@@ -6512,11 +6682,14 @@ i960 KB, and 68020 and 68030 for Motorola 68020 and 68030.
#define bfd_mach_tic3x 30
#define bfd_mach_tic4x 40
bfd_arch_tic54x, /* Texas Instruments TMS320C54X */
+ bfd_arch_tic6x, /* Texas Instruments TMS320C6X */
bfd_arch_tic80, /* TI TMS320c80 (MVP) */
bfd_arch_v850, /* NEC V850 */
#define bfd_mach_v850 1
#define bfd_mach_v850e 'E'
#define bfd_mach_v850e1 '1'
+ #define bfd_mach_v850e2 0x4532
+ #define bfd_mach_v850e2v3 0x45325633
bfd_arch_arc, /* ARC Cores */
#define bfd_mach_arc_5 5
#define bfd_mach_arc_6 6
@@ -6577,6 +6750,13 @@ i960 KB, and 68020 and 68030 for Motorola 68020 and 68030.
#define bfd_mach_avr5 5
#define bfd_mach_avr51 51
#define bfd_mach_avr6 6
+ #define bfd_mach_avrxmega1 101
+ #define bfd_mach_avrxmega2 102
+ #define bfd_mach_avrxmega3 103
+ #define bfd_mach_avrxmega4 104
+ #define bfd_mach_avrxmega5 105
+ #define bfd_mach_avrxmega6 106
+ #define bfd_mach_avrxmega7 107
bfd_arch_bfin, /* ADI Blackfin */
#define bfd_mach_bfin 1
bfd_arch_cr16, /* National Semiconductor CompactRISC (ie CR16). */
@@ -6623,9 +6803,6 @@ i960 KB, and 68020 and 68030 for Motorola 68020 and 68030.
#define bfd_mach_xc16xs 3
bfd_arch_xtensa, /* Tensilica's Xtensa cores. */
#define bfd_mach_xtensa 1
- bfd_arch_maxq, /* Dallas MAXQ 10/20 */
- #define bfd_mach_maxq10 10
- #define bfd_mach_maxq20 20
bfd_arch_z80,
#define bfd_mach_z80strict 1 /* No undocumented opcodes. */
#define bfd_mach_z80 3 /* With ixl, ixh, iyl, and iyh. */
@@ -6843,6 +7020,9 @@ available

File: bfd.info, Node: Opening and Closing, Next: Internal, Prev: Architectures, Up: BFD front end
+ /* Set to N to open the next N BFDs using an alternate id space. */
+ extern unsigned int bfd_use_reserved_id;
+
2.14 Opening and closing BFDs
=============================
@@ -7020,8 +7200,8 @@ as such.
bfd *bfd_create (const char *filename, bfd *templ);
*Description*
Create a new BFD in the manner of `bfd_openw', but without opening a
-file. The new BFD takes the target from the target used by TEMPLATE.
-The format is always set to `bfd_object'.
+file. The new BFD takes the target from the target used by TEMPL. The
+format is always set to `bfd_object'.
2.14.1.10 `bfd_make_writable'
.............................
@@ -7599,6 +7779,9 @@ look through the symbols defined by the archive and decide which
elements of the archive should be included in the link. For each such
element it must call the `add_archive_element' linker callback, and it
must add the symbols from the object file to the linker hash table.
+(The callback may in fact indicate that a replacement BFD should be
+used, in which case the symbols from that BFD should be added to the
+linker hash table instead.)
In most cases the work of looking through the symbols in the archive
should be done by the `_bfd_generic_link_add_archive_symbols' function.
@@ -7613,9 +7796,13 @@ the linker hash table.
read the symbols of the archive element and decide whether the archive
element should be included in the link. If the element is to be
included, the `add_archive_element' linker callback routine must be
-called with the element as an argument, and the elements symbols must
+called with the element as an argument, and the element's symbols must
be added to the linker hash table just as though the element had itself
-been passed to the `_bfd_link_add_symbols' function.
+been passed to the `_bfd_link_add_symbols' function. The
+`add_archive_element' callback has the option to indicate that it would
+like to replace the element archive with a substitute BFD, in which
+case it is the symbols of that substitute BFD that must be added to the
+linker hash table instead.
When the a.out `_bfd_link_add_symbols' function receives an archive,
it calls `_bfd_generic_link_add_archive_symbols' passing
@@ -7625,7 +7812,9 @@ If the latter decides to add the element (an element is only added if
it provides a real, non-common, definition for a previously undefined
or common symbol) it calls the `add_archive_element' callback and then
`aout_link_check_archive_element' calls `aout_link_add_symbols' to
-actually add the symbols to the linker hash table.
+actually add the symbols to the linker hash table - possibly those of a
+substitute BFD, if the `add_archive_element' callback avails itself of
+that option.
The ECOFF back end is unusual in that it does not normally call
`_bfd_generic_link_add_archive_symbols', because ECOFF archives already
@@ -9784,7 +9973,7 @@ BFD Index
* _bfd_final_link_relocate: Relocating the section contents.
(line 22)
* _bfd_generic_link_add_archive_symbols: Adding symbols from an archive.
- (line 12)
+ (line 15)
* _bfd_generic_link_add_one_symbol: Adding symbols from an object file.
(line 19)
* _bfd_generic_make_empty_symbol: symbol handling functions.
@@ -9804,120 +9993,121 @@ BFD Index
* aout_SIZE_some_aout_object_p: aout. (line 125)
* aout_SIZE_swap_exec_header_in: aout. (line 101)
* aout_SIZE_swap_exec_header_out: aout. (line 113)
-* arelent_chain: typedef arelent. (line 339)
+* arelent_chain: typedef arelent. (line 336)
* BFD: Overview. (line 6)
* BFD canonical format: Canonical format. (line 11)
* bfd_alloc: Opening and Closing.
- (line 211)
+ (line 214)
* bfd_alloc2: Opening and Closing.
- (line 220)
-* bfd_alt_mach_code: BFD front end. (line 689)
-* bfd_arch_bits_per_address: Architectures. (line 521)
-* bfd_arch_bits_per_byte: Architectures. (line 513)
-* bfd_arch_get_compatible: Architectures. (line 456)
-* bfd_arch_list: Architectures. (line 447)
-* bfd_arch_mach_octets_per_byte: Architectures. (line 590)
-* BFD_ARELOC_BFIN_ADD: howto manager. (line 1007)
-* BFD_ARELOC_BFIN_ADDR: howto manager. (line 1058)
-* BFD_ARELOC_BFIN_AND: howto manager. (line 1028)
-* BFD_ARELOC_BFIN_COMP: howto manager. (line 1049)
-* BFD_ARELOC_BFIN_CONST: howto manager. (line 1004)
-* BFD_ARELOC_BFIN_DIV: howto manager. (line 1016)
-* BFD_ARELOC_BFIN_HWPAGE: howto manager. (line 1055)
-* BFD_ARELOC_BFIN_LAND: howto manager. (line 1037)
-* BFD_ARELOC_BFIN_LEN: howto manager. (line 1043)
-* BFD_ARELOC_BFIN_LOR: howto manager. (line 1040)
-* BFD_ARELOC_BFIN_LSHIFT: howto manager. (line 1022)
-* BFD_ARELOC_BFIN_MOD: howto manager. (line 1019)
-* BFD_ARELOC_BFIN_MULT: howto manager. (line 1013)
-* BFD_ARELOC_BFIN_NEG: howto manager. (line 1046)
-* BFD_ARELOC_BFIN_OR: howto manager. (line 1031)
-* BFD_ARELOC_BFIN_PAGE: howto manager. (line 1052)
-* BFD_ARELOC_BFIN_PUSH: howto manager. (line 1001)
-* BFD_ARELOC_BFIN_RSHIFT: howto manager. (line 1025)
-* BFD_ARELOC_BFIN_SUB: howto manager. (line 1010)
-* BFD_ARELOC_BFIN_XOR: howto manager. (line 1034)
+ (line 223)
+* bfd_alt_mach_code: BFD front end. (line 708)
+* bfd_arch_bits_per_address: Architectures. (line 531)
+* bfd_arch_bits_per_byte: Architectures. (line 523)
+* bfd_arch_get_compatible: Architectures. (line 466)
+* bfd_arch_list: Architectures. (line 457)
+* bfd_arch_mach_octets_per_byte: Architectures. (line 600)
+* BFD_ARELOC_BFIN_ADD: howto manager. (line 1025)
+* BFD_ARELOC_BFIN_ADDR: howto manager. (line 1076)
+* BFD_ARELOC_BFIN_AND: howto manager. (line 1046)
+* BFD_ARELOC_BFIN_COMP: howto manager. (line 1067)
+* BFD_ARELOC_BFIN_CONST: howto manager. (line 1022)
+* BFD_ARELOC_BFIN_DIV: howto manager. (line 1034)
+* BFD_ARELOC_BFIN_HWPAGE: howto manager. (line 1073)
+* BFD_ARELOC_BFIN_LAND: howto manager. (line 1055)
+* BFD_ARELOC_BFIN_LEN: howto manager. (line 1061)
+* BFD_ARELOC_BFIN_LOR: howto manager. (line 1058)
+* BFD_ARELOC_BFIN_LSHIFT: howto manager. (line 1040)
+* BFD_ARELOC_BFIN_MOD: howto manager. (line 1037)
+* BFD_ARELOC_BFIN_MULT: howto manager. (line 1031)
+* BFD_ARELOC_BFIN_NEG: howto manager. (line 1064)
+* BFD_ARELOC_BFIN_OR: howto manager. (line 1049)
+* BFD_ARELOC_BFIN_PAGE: howto manager. (line 1070)
+* BFD_ARELOC_BFIN_PUSH: howto manager. (line 1019)
+* BFD_ARELOC_BFIN_RSHIFT: howto manager. (line 1043)
+* BFD_ARELOC_BFIN_SUB: howto manager. (line 1028)
+* BFD_ARELOC_BFIN_XOR: howto manager. (line 1052)
* 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 247)
-* bfd_canonicalize_reloc: BFD front end. (line 408)
+ (line 250)
+* bfd_canonicalize_reloc: BFD front end. (line 427)
* bfd_canonicalize_symtab: symbol handling functions.
(line 50)
* bfd_check_format: Formats. (line 21)
* bfd_check_format_matches: Formats. (line 52)
-* bfd_check_overflow: typedef arelent. (line 351)
+* bfd_check_overflow: typedef arelent. (line 348)
* bfd_close: Opening and Closing.
- (line 136)
+ (line 139)
* bfd_close_all_done: Opening and Closing.
- (line 154)
+ (line 157)
* bfd_coff_backend_data: coff. (line 304)
-* bfd_copy_private_bfd_data: BFD front end. (line 547)
-* bfd_copy_private_header_data: BFD front end. (line 529)
-* bfd_copy_private_section_data: section prototypes. (line 255)
+* bfd_copy_private_bfd_data: BFD front end. (line 566)
+* bfd_copy_private_header_data: BFD front end. (line 548)
+* bfd_copy_private_section_data: section prototypes. (line 264)
* 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 173)
+ (line 176)
* bfd_create_gnu_debuglink_section: Opening and Closing.
- (line 313)
+ (line 316)
* bfd_decode_symclass: symbol handling functions.
(line 111)
-* bfd_default_arch_struct: Architectures. (line 468)
-* bfd_default_compatible: Architectures. (line 530)
-* bfd_default_reloc_type_lookup: howto manager. (line 2302)
-* bfd_default_scan: Architectures. (line 539)
-* bfd_default_set_arch_mach: Architectures. (line 486)
-* bfd_demangle: BFD front end. (line 787)
-* bfd_emul_get_commonpagesize: BFD front end. (line 767)
-* bfd_emul_get_maxpagesize: BFD front end. (line 747)
-* bfd_emul_set_commonpagesize: BFD front end. (line 778)
-* bfd_emul_set_maxpagesize: BFD front end. (line 758)
-* bfd_errmsg: BFD front end. (line 333)
+* bfd_default_arch_struct: Architectures. (line 478)
+* bfd_default_compatible: Architectures. (line 540)
+* bfd_default_reloc_type_lookup: howto manager. (line 2421)
+* bfd_default_scan: Architectures. (line 549)
+* bfd_default_set_arch_mach: Architectures. (line 496)
+* bfd_demangle: BFD front end. (line 806)
+* bfd_emul_get_commonpagesize: BFD front end. (line 786)
+* bfd_emul_get_maxpagesize: BFD front end. (line 766)
+* bfd_emul_set_commonpagesize: BFD front end. (line 797)
+* bfd_emul_set_maxpagesize: BFD front end. (line 777)
+* bfd_errmsg: BFD front end. (line 352)
* bfd_fdopenr: Opening and Closing.
- (line 46)
+ (line 49)
* bfd_fill_in_gnu_debuglink_section: Opening and Closing.
- (line 327)
-* bfd_find_target: bfd_target. (line 454)
+ (line 330)
+* bfd_find_target: bfd_target. (line 456)
* bfd_find_version_for_sym: Writing the symbol table.
(line 80)
* bfd_follow_gnu_debuglink: Opening and Closing.
- (line 292)
+ (line 295)
* bfd_fopen: Opening and Closing.
- (line 9)
+ (line 12)
* bfd_format_string: Formats. (line 79)
* bfd_generic_define_common_symbol: Writing the symbol table.
(line 67)
-* bfd_generic_discard_group: section prototypes. (line 281)
-* bfd_generic_gc_sections: howto manager. (line 2333)
-* bfd_generic_get_relocated_section_contents: howto manager. (line 2353)
-* bfd_generic_is_group_section: section prototypes. (line 273)
-* bfd_generic_merge_sections: howto manager. (line 2343)
-* bfd_generic_relax_section: howto manager. (line 2320)
-* bfd_get_arch: Architectures. (line 497)
-* bfd_get_arch_info: Architectures. (line 549)
-* bfd_get_arch_size: BFD front end. (line 452)
-* bfd_get_error: BFD front end. (line 314)
-* bfd_get_error_handler: BFD front end. (line 384)
-* bfd_get_gp_size: BFD front end. (line 493)
-* bfd_get_mach: Architectures. (line 505)
-* bfd_get_mtime: BFD front end. (line 831)
+* bfd_generic_discard_group: section prototypes. (line 290)
+* bfd_generic_gc_sections: howto manager. (line 2452)
+* bfd_generic_get_relocated_section_contents: howto manager. (line 2472)
+* bfd_generic_is_group_section: section prototypes. (line 282)
+* bfd_generic_merge_sections: howto manager. (line 2462)
+* bfd_generic_relax_section: howto manager. (line 2439)
+* bfd_get_arch: Architectures. (line 507)
+* bfd_get_arch_info: Architectures. (line 559)
+* bfd_get_arch_size: BFD front end. (line 471)
+* bfd_get_error: BFD front end. (line 333)
+* bfd_get_error_handler: BFD front end. (line 403)
+* bfd_get_gp_size: BFD front end. (line 512)
+* bfd_get_mach: Architectures. (line 515)
+* bfd_get_mtime: BFD front end. (line 851)
* bfd_get_next_mapent: Archives. (line 52)
-* bfd_get_reloc_code_name: howto manager. (line 2311)
-* bfd_get_reloc_size: typedef arelent. (line 330)
-* bfd_get_reloc_upper_bound: BFD front end. (line 398)
+* bfd_get_reloc_code_name: howto manager. (line 2430)
+* bfd_get_reloc_size: typedef arelent. (line 327)
+* bfd_get_reloc_upper_bound: BFD front end. (line 417)
* bfd_get_section_by_name: section prototypes. (line 17)
* bfd_get_section_by_name_if: section prototypes. (line 31)
-* bfd_get_section_contents: section prototypes. (line 228)
-* bfd_get_sign_extend_vma: BFD front end. (line 465)
+* bfd_get_section_contents: section prototypes. (line 237)
+* bfd_get_sign_extend_vma: BFD front end. (line 484)
* bfd_get_size <1>: Internal. (line 25)
-* bfd_get_size: BFD front end. (line 840)
+* bfd_get_size: BFD front end. (line 860)
* bfd_get_symtab_upper_bound: symbol handling functions.
(line 6)
-* bfd_get_target_info: bfd_target. (line 470)
+* bfd_get_target_info: bfd_target. (line 472)
* bfd_get_unique_section_name: section prototypes. (line 50)
* bfd_h_put_size: Internal. (line 97)
* bfd_hash_allocate: Creating and Freeing a Hash Table.
@@ -9937,7 +10127,7 @@ BFD Index
* bfd_hash_traverse: Traversing a Hash Table.
(line 6)
* bfd_init: Initialization. (line 11)
-* bfd_install_relocation: typedef arelent. (line 392)
+* bfd_install_relocation: typedef arelent. (line 389)
* bfd_is_local_label: symbol handling functions.
(line 17)
* bfd_is_local_label_name: symbol handling functions.
@@ -9949,44 +10139,44 @@ BFD Index
* bfd_link_split_section: Writing the symbol table.
(line 44)
* bfd_log2: Internal. (line 164)
-* bfd_lookup_arch: Architectures. (line 557)
+* bfd_lookup_arch: Architectures. (line 567)
* 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 197)
+ (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)
* bfd_make_writable: Opening and Closing.
- (line 183)
-* bfd_malloc_and_get_section: section prototypes. (line 245)
-* bfd_map_over_sections: section prototypes. (line 155)
-* bfd_merge_private_bfd_data: BFD front end. (line 563)
-* bfd_mmap: BFD front end. (line 869)
-* bfd_octets_per_byte: Architectures. (line 580)
+ (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 582)
+* bfd_mmap: BFD front end. (line 889)
+* bfd_octets_per_byte: Architectures. (line 590)
* bfd_open_file: File Caching. (line 52)
* bfd_openr: Opening and Closing.
- (line 30)
+ (line 33)
* bfd_openr_iovec: Opening and Closing.
- (line 76)
+ (line 79)
* bfd_openr_next_archived_file: Archives. (line 78)
* bfd_openstreamr: Opening and Closing.
- (line 67)
+ (line 70)
* bfd_openw: Opening and Closing.
- (line 124)
-* bfd_perform_relocation: typedef arelent. (line 367)
-* bfd_perror: BFD front end. (line 342)
-* bfd_preserve_finish: BFD front end. (line 737)
-* bfd_preserve_restore: BFD front end. (line 727)
-* bfd_preserve_save: BFD front end. (line 711)
+ (line 127)
+* bfd_perform_relocation: typedef arelent. (line 364)
+* bfd_perror: BFD front end. (line 361)
+* bfd_preserve_finish: BFD front end. (line 756)
+* bfd_preserve_restore: BFD front end. (line 746)
+* bfd_preserve_save: BFD front end. (line 730)
* bfd_print_symbol_vandf: symbol handling functions.
(line 70)
-* bfd_printable_arch_mach: Architectures. (line 568)
-* bfd_printable_name: Architectures. (line 428)
+* bfd_printable_arch_mach: Architectures. (line 578)
+* bfd_printable_name: Architectures. (line 438)
* bfd_put_size: Internal. (line 22)
* BFD_RELOC_12_PCREL: howto manager. (line 39)
* BFD_RELOC_14: howto manager. (line 31)
@@ -9998,46 +10188,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 1866)
-* BFD_RELOC_16C_ABS20_C: howto manager. (line 1867)
-* BFD_RELOC_16C_ABS24: howto manager. (line 1868)
-* BFD_RELOC_16C_ABS24_C: howto manager. (line 1869)
-* BFD_RELOC_16C_DISP04: howto manager. (line 1846)
-* BFD_RELOC_16C_DISP04_C: howto manager. (line 1847)
-* BFD_RELOC_16C_DISP08: howto manager. (line 1848)
-* BFD_RELOC_16C_DISP08_C: howto manager. (line 1849)
-* BFD_RELOC_16C_DISP16: howto manager. (line 1850)
-* BFD_RELOC_16C_DISP16_C: howto manager. (line 1851)
-* BFD_RELOC_16C_DISP24: howto manager. (line 1852)
-* BFD_RELOC_16C_DISP24_C: howto manager. (line 1853)
-* BFD_RELOC_16C_DISP24a: howto manager. (line 1854)
-* BFD_RELOC_16C_DISP24a_C: howto manager. (line 1855)
-* BFD_RELOC_16C_IMM04: howto manager. (line 1870)
-* BFD_RELOC_16C_IMM04_C: howto manager. (line 1871)
-* BFD_RELOC_16C_IMM16: howto manager. (line 1872)
-* BFD_RELOC_16C_IMM16_C: howto manager. (line 1873)
-* BFD_RELOC_16C_IMM20: howto manager. (line 1874)
-* BFD_RELOC_16C_IMM20_C: howto manager. (line 1875)
-* BFD_RELOC_16C_IMM24: howto manager. (line 1876)
-* BFD_RELOC_16C_IMM24_C: howto manager. (line 1877)
-* BFD_RELOC_16C_IMM32: howto manager. (line 1878)
-* BFD_RELOC_16C_IMM32_C: howto manager. (line 1879)
-* BFD_RELOC_16C_NUM08: howto manager. (line 1840)
-* BFD_RELOC_16C_NUM08_C: howto manager. (line 1841)
-* BFD_RELOC_16C_NUM16: howto manager. (line 1842)
-* BFD_RELOC_16C_NUM16_C: howto manager. (line 1843)
-* BFD_RELOC_16C_NUM32: howto manager. (line 1844)
-* BFD_RELOC_16C_NUM32_C: howto manager. (line 1845)
-* BFD_RELOC_16C_REG04: howto manager. (line 1856)
-* BFD_RELOC_16C_REG04_C: howto manager. (line 1857)
-* BFD_RELOC_16C_REG04a: howto manager. (line 1858)
-* BFD_RELOC_16C_REG04a_C: howto manager. (line 1859)
-* BFD_RELOC_16C_REG14: howto manager. (line 1860)
-* BFD_RELOC_16C_REG14_C: howto manager. (line 1861)
-* BFD_RELOC_16C_REG16: howto manager. (line 1862)
-* BFD_RELOC_16C_REG16_C: howto manager. (line 1863)
-* BFD_RELOC_16C_REG20: howto manager. (line 1864)
-* BFD_RELOC_16C_REG20_C: howto manager. (line 1865)
+* BFD_RELOC_16C_ABS20: howto manager. (line 1985)
+* BFD_RELOC_16C_ABS20_C: howto manager. (line 1986)
+* BFD_RELOC_16C_ABS24: howto manager. (line 1987)
+* BFD_RELOC_16C_ABS24_C: howto manager. (line 1988)
+* BFD_RELOC_16C_DISP04: howto manager. (line 1965)
+* BFD_RELOC_16C_DISP04_C: howto manager. (line 1966)
+* BFD_RELOC_16C_DISP08: howto manager. (line 1967)
+* BFD_RELOC_16C_DISP08_C: howto manager. (line 1968)
+* BFD_RELOC_16C_DISP16: howto manager. (line 1969)
+* BFD_RELOC_16C_DISP16_C: howto manager. (line 1970)
+* BFD_RELOC_16C_DISP24: howto manager. (line 1971)
+* BFD_RELOC_16C_DISP24_C: howto manager. (line 1972)
+* BFD_RELOC_16C_DISP24a: howto manager. (line 1973)
+* BFD_RELOC_16C_DISP24a_C: howto manager. (line 1974)
+* BFD_RELOC_16C_IMM04: howto manager. (line 1989)
+* BFD_RELOC_16C_IMM04_C: howto manager. (line 1990)
+* BFD_RELOC_16C_IMM16: howto manager. (line 1991)
+* BFD_RELOC_16C_IMM16_C: howto manager. (line 1992)
+* BFD_RELOC_16C_IMM20: howto manager. (line 1993)
+* BFD_RELOC_16C_IMM20_C: howto manager. (line 1994)
+* BFD_RELOC_16C_IMM24: howto manager. (line 1995)
+* BFD_RELOC_16C_IMM24_C: howto manager. (line 1996)
+* BFD_RELOC_16C_IMM32: howto manager. (line 1997)
+* BFD_RELOC_16C_IMM32_C: howto manager. (line 1998)
+* BFD_RELOC_16C_NUM08: howto manager. (line 1959)
+* BFD_RELOC_16C_NUM08_C: howto manager. (line 1960)
+* BFD_RELOC_16C_NUM16: howto manager. (line 1961)
+* BFD_RELOC_16C_NUM16_C: howto manager. (line 1962)
+* BFD_RELOC_16C_NUM32: howto manager. (line 1963)
+* BFD_RELOC_16C_NUM32_C: howto manager. (line 1964)
+* BFD_RELOC_16C_REG04: howto manager. (line 1975)
+* BFD_RELOC_16C_REG04_C: howto manager. (line 1976)
+* BFD_RELOC_16C_REG04a: howto manager. (line 1977)
+* BFD_RELOC_16C_REG04a_C: howto manager. (line 1978)
+* BFD_RELOC_16C_REG14: howto manager. (line 1979)
+* BFD_RELOC_16C_REG14_C: howto manager. (line 1980)
+* BFD_RELOC_16C_REG16: howto manager. (line 1981)
+* BFD_RELOC_16C_REG16_C: howto manager. (line 1982)
+* BFD_RELOC_16C_REG20: howto manager. (line 1983)
+* BFD_RELOC_16C_REG20_C: howto manager. (line 1984)
* BFD_RELOC_23_PCREL_S2: howto manager. (line 108)
* BFD_RELOC_24: howto manager. (line 29)
* BFD_RELOC_24_PCREL: howto manager. (line 37)
@@ -10076,56 +10266,56 @@ BFD Index
* BFD_RELOC_386_TLS_LE_32: howto manager. (line 521)
* BFD_RELOC_386_TLS_TPOFF: howto manager. (line 513)
* BFD_RELOC_386_TLS_TPOFF32: howto manager. (line 524)
-* BFD_RELOC_390_12: howto manager. (line 1526)
-* BFD_RELOC_390_20: howto manager. (line 1626)
-* BFD_RELOC_390_COPY: howto manager. (line 1535)
-* BFD_RELOC_390_GLOB_DAT: howto manager. (line 1538)
-* BFD_RELOC_390_GOT12: howto manager. (line 1529)
-* BFD_RELOC_390_GOT16: howto manager. (line 1550)
-* BFD_RELOC_390_GOT20: howto manager. (line 1627)
-* BFD_RELOC_390_GOT64: howto manager. (line 1568)
-* BFD_RELOC_390_GOTENT: howto manager. (line 1574)
-* BFD_RELOC_390_GOTOFF64: howto manager. (line 1577)
-* BFD_RELOC_390_GOTPC: howto manager. (line 1547)
-* BFD_RELOC_390_GOTPCDBL: howto manager. (line 1565)
-* BFD_RELOC_390_GOTPLT12: howto manager. (line 1580)
-* BFD_RELOC_390_GOTPLT16: howto manager. (line 1583)
-* BFD_RELOC_390_GOTPLT20: howto manager. (line 1628)
-* BFD_RELOC_390_GOTPLT32: howto manager. (line 1586)
-* BFD_RELOC_390_GOTPLT64: howto manager. (line 1589)
-* BFD_RELOC_390_GOTPLTENT: howto manager. (line 1592)
-* BFD_RELOC_390_JMP_SLOT: howto manager. (line 1541)
-* BFD_RELOC_390_PC16DBL: howto manager. (line 1553)
-* BFD_RELOC_390_PC32DBL: howto manager. (line 1559)
-* BFD_RELOC_390_PLT16DBL: howto manager. (line 1556)
-* BFD_RELOC_390_PLT32: howto manager. (line 1532)
-* BFD_RELOC_390_PLT32DBL: howto manager. (line 1562)
-* BFD_RELOC_390_PLT64: howto manager. (line 1571)
-* BFD_RELOC_390_PLTOFF16: howto manager. (line 1595)
-* BFD_RELOC_390_PLTOFF32: howto manager. (line 1598)
-* BFD_RELOC_390_PLTOFF64: howto manager. (line 1601)
-* BFD_RELOC_390_RELATIVE: howto manager. (line 1544)
-* BFD_RELOC_390_TLS_DTPMOD: howto manager. (line 1621)
-* BFD_RELOC_390_TLS_DTPOFF: howto manager. (line 1622)
-* BFD_RELOC_390_TLS_GD32: howto manager. (line 1607)
-* BFD_RELOC_390_TLS_GD64: howto manager. (line 1608)
-* BFD_RELOC_390_TLS_GDCALL: howto manager. (line 1605)
-* BFD_RELOC_390_TLS_GOTIE12: howto manager. (line 1609)
-* BFD_RELOC_390_TLS_GOTIE20: howto manager. (line 1629)
-* BFD_RELOC_390_TLS_GOTIE32: howto manager. (line 1610)
-* BFD_RELOC_390_TLS_GOTIE64: howto manager. (line 1611)
-* BFD_RELOC_390_TLS_IE32: howto manager. (line 1614)
-* BFD_RELOC_390_TLS_IE64: howto manager. (line 1615)
-* BFD_RELOC_390_TLS_IEENT: howto manager. (line 1616)
-* BFD_RELOC_390_TLS_LDCALL: howto manager. (line 1606)
-* BFD_RELOC_390_TLS_LDM32: howto manager. (line 1612)
-* BFD_RELOC_390_TLS_LDM64: howto manager. (line 1613)
-* BFD_RELOC_390_TLS_LDO32: howto manager. (line 1619)
-* BFD_RELOC_390_TLS_LDO64: howto manager. (line 1620)
-* BFD_RELOC_390_TLS_LE32: howto manager. (line 1617)
-* BFD_RELOC_390_TLS_LE64: howto manager. (line 1618)
-* BFD_RELOC_390_TLS_LOAD: howto manager. (line 1604)
-* BFD_RELOC_390_TLS_TPOFF: howto manager. (line 1623)
+* BFD_RELOC_390_12: howto manager. (line 1645)
+* BFD_RELOC_390_20: howto manager. (line 1745)
+* BFD_RELOC_390_COPY: howto manager. (line 1654)
+* BFD_RELOC_390_GLOB_DAT: howto manager. (line 1657)
+* BFD_RELOC_390_GOT12: howto manager. (line 1648)
+* BFD_RELOC_390_GOT16: howto manager. (line 1669)
+* BFD_RELOC_390_GOT20: howto manager. (line 1746)
+* BFD_RELOC_390_GOT64: howto manager. (line 1687)
+* BFD_RELOC_390_GOTENT: howto manager. (line 1693)
+* BFD_RELOC_390_GOTOFF64: howto manager. (line 1696)
+* BFD_RELOC_390_GOTPC: howto manager. (line 1666)
+* BFD_RELOC_390_GOTPCDBL: howto manager. (line 1684)
+* BFD_RELOC_390_GOTPLT12: howto manager. (line 1699)
+* BFD_RELOC_390_GOTPLT16: howto manager. (line 1702)
+* BFD_RELOC_390_GOTPLT20: howto manager. (line 1747)
+* BFD_RELOC_390_GOTPLT32: howto manager. (line 1705)
+* BFD_RELOC_390_GOTPLT64: howto manager. (line 1708)
+* BFD_RELOC_390_GOTPLTENT: howto manager. (line 1711)
+* BFD_RELOC_390_JMP_SLOT: howto manager. (line 1660)
+* BFD_RELOC_390_PC16DBL: howto manager. (line 1672)
+* BFD_RELOC_390_PC32DBL: howto manager. (line 1678)
+* BFD_RELOC_390_PLT16DBL: howto manager. (line 1675)
+* BFD_RELOC_390_PLT32: howto manager. (line 1651)
+* BFD_RELOC_390_PLT32DBL: howto manager. (line 1681)
+* BFD_RELOC_390_PLT64: howto manager. (line 1690)
+* BFD_RELOC_390_PLTOFF16: howto manager. (line 1714)
+* BFD_RELOC_390_PLTOFF32: howto manager. (line 1717)
+* BFD_RELOC_390_PLTOFF64: howto manager. (line 1720)
+* BFD_RELOC_390_RELATIVE: howto manager. (line 1663)
+* BFD_RELOC_390_TLS_DTPMOD: howto manager. (line 1740)
+* BFD_RELOC_390_TLS_DTPOFF: howto manager. (line 1741)
+* BFD_RELOC_390_TLS_GD32: howto manager. (line 1726)
+* BFD_RELOC_390_TLS_GD64: howto manager. (line 1727)
+* BFD_RELOC_390_TLS_GDCALL: howto manager. (line 1724)
+* BFD_RELOC_390_TLS_GOTIE12: howto manager. (line 1728)
+* BFD_RELOC_390_TLS_GOTIE20: howto manager. (line 1748)
+* BFD_RELOC_390_TLS_GOTIE32: howto manager. (line 1729)
+* BFD_RELOC_390_TLS_GOTIE64: howto manager. (line 1730)
+* BFD_RELOC_390_TLS_IE32: howto manager. (line 1733)
+* BFD_RELOC_390_TLS_IE64: howto manager. (line 1734)
+* BFD_RELOC_390_TLS_IEENT: howto manager. (line 1735)
+* BFD_RELOC_390_TLS_LDCALL: howto manager. (line 1725)
+* BFD_RELOC_390_TLS_LDM32: howto manager. (line 1731)
+* BFD_RELOC_390_TLS_LDM64: howto manager. (line 1732)
+* BFD_RELOC_390_TLS_LDO32: howto manager. (line 1738)
+* BFD_RELOC_390_TLS_LDO64: howto manager. (line 1739)
+* BFD_RELOC_390_TLS_LE32: howto manager. (line 1736)
+* BFD_RELOC_390_TLS_LE64: howto manager. (line 1737)
+* BFD_RELOC_390_TLS_LOAD: howto manager. (line 1723)
+* BFD_RELOC_390_TLS_TPOFF: howto manager. (line 1742)
* BFD_RELOC_64: howto manager. (line 26)
* BFD_RELOC_64_PCREL: howto manager. (line 35)
* BFD_RELOC_64_PLT_PCREL: howto manager. (line 60)
@@ -10149,38 +10339,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 1994)
-* BFD_RELOC_860_GLOB_DAT: howto manager. (line 1995)
-* BFD_RELOC_860_HAGOT: howto manager. (line 2020)
-* BFD_RELOC_860_HAGOTOFF: howto manager. (line 2021)
-* BFD_RELOC_860_HAPC: howto manager. (line 2022)
-* BFD_RELOC_860_HIGH: howto manager. (line 2023)
-* BFD_RELOC_860_HIGHADJ: howto manager. (line 2019)
-* BFD_RELOC_860_HIGOT: howto manager. (line 2024)
-* BFD_RELOC_860_HIGOTOFF: howto manager. (line 2025)
-* BFD_RELOC_860_JUMP_SLOT: howto manager. (line 1996)
-* BFD_RELOC_860_LOGOT0: howto manager. (line 2008)
-* BFD_RELOC_860_LOGOT1: howto manager. (line 2010)
-* BFD_RELOC_860_LOGOTOFF0: howto manager. (line 2012)
-* BFD_RELOC_860_LOGOTOFF1: howto manager. (line 2014)
-* BFD_RELOC_860_LOGOTOFF2: howto manager. (line 2016)
-* BFD_RELOC_860_LOGOTOFF3: howto manager. (line 2017)
-* BFD_RELOC_860_LOPC: howto manager. (line 2018)
-* BFD_RELOC_860_LOW0: howto manager. (line 2001)
-* BFD_RELOC_860_LOW1: howto manager. (line 2003)
-* BFD_RELOC_860_LOW2: howto manager. (line 2005)
-* BFD_RELOC_860_LOW3: howto manager. (line 2007)
-* BFD_RELOC_860_PC16: howto manager. (line 2000)
-* BFD_RELOC_860_PC26: howto manager. (line 1998)
-* BFD_RELOC_860_PLT26: howto manager. (line 1999)
-* BFD_RELOC_860_RELATIVE: howto manager. (line 1997)
-* BFD_RELOC_860_SPGOT0: howto manager. (line 2009)
-* BFD_RELOC_860_SPGOT1: howto manager. (line 2011)
-* BFD_RELOC_860_SPGOTOFF0: howto manager. (line 2013)
-* BFD_RELOC_860_SPGOTOFF1: howto manager. (line 2015)
-* BFD_RELOC_860_SPLIT0: howto manager. (line 2002)
-* BFD_RELOC_860_SPLIT1: howto manager. (line 2004)
-* BFD_RELOC_860_SPLIT2: howto manager. (line 2006)
+* BFD_RELOC_860_COPY: howto manager. (line 2113)
+* BFD_RELOC_860_GLOB_DAT: howto manager. (line 2114)
+* BFD_RELOC_860_HAGOT: howto manager. (line 2139)
+* BFD_RELOC_860_HAGOTOFF: howto manager. (line 2140)
+* BFD_RELOC_860_HAPC: howto manager. (line 2141)
+* BFD_RELOC_860_HIGH: howto manager. (line 2142)
+* BFD_RELOC_860_HIGHADJ: howto manager. (line 2138)
+* BFD_RELOC_860_HIGOT: howto manager. (line 2143)
+* BFD_RELOC_860_HIGOTOFF: howto manager. (line 2144)
+* BFD_RELOC_860_JUMP_SLOT: howto manager. (line 2115)
+* BFD_RELOC_860_LOGOT0: howto manager. (line 2127)
+* BFD_RELOC_860_LOGOT1: howto manager. (line 2129)
+* BFD_RELOC_860_LOGOTOFF0: howto manager. (line 2131)
+* BFD_RELOC_860_LOGOTOFF1: howto manager. (line 2133)
+* BFD_RELOC_860_LOGOTOFF2: howto manager. (line 2135)
+* BFD_RELOC_860_LOGOTOFF3: howto manager. (line 2136)
+* BFD_RELOC_860_LOPC: howto manager. (line 2137)
+* BFD_RELOC_860_LOW0: howto manager. (line 2120)
+* BFD_RELOC_860_LOW1: howto manager. (line 2122)
+* BFD_RELOC_860_LOW2: howto manager. (line 2124)
+* BFD_RELOC_860_LOW3: howto manager. (line 2126)
+* BFD_RELOC_860_PC16: howto manager. (line 2119)
+* BFD_RELOC_860_PC26: howto manager. (line 2117)
+* BFD_RELOC_860_PLT26: howto manager. (line 2118)
+* BFD_RELOC_860_RELATIVE: howto manager. (line 2116)
+* BFD_RELOC_860_SPGOT0: howto manager. (line 2128)
+* BFD_RELOC_860_SPGOT1: howto manager. (line 2130)
+* BFD_RELOC_860_SPGOTOFF0: howto manager. (line 2132)
+* BFD_RELOC_860_SPGOTOFF1: howto manager. (line 2134)
+* BFD_RELOC_860_SPLIT0: howto manager. (line 2121)
+* BFD_RELOC_860_SPLIT1: howto manager. (line 2123)
+* BFD_RELOC_860_SPLIT2: howto manager. (line 2125)
* 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)
@@ -10217,57 +10407,60 @@ BFD Index
* 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 936)
-* BFD_RELOC_ARC_B26: howto manager. (line 941)
-* BFD_RELOC_ARM_ADR_IMM: howto manager. (line 829)
-* BFD_RELOC_ARM_ADRL_IMMEDIATE: howto manager. (line 816)
-* BFD_RELOC_ARM_ALU_PC_G0: howto manager. (line 783)
-* BFD_RELOC_ARM_ALU_PC_G0_NC: howto manager. (line 782)
-* BFD_RELOC_ARM_ALU_PC_G1: howto manager. (line 785)
-* BFD_RELOC_ARM_ALU_PC_G1_NC: howto manager. (line 784)
-* BFD_RELOC_ARM_ALU_PC_G2: howto manager. (line 786)
-* BFD_RELOC_ARM_ALU_SB_G0: howto manager. (line 797)
-* BFD_RELOC_ARM_ALU_SB_G0_NC: howto manager. (line 796)
-* BFD_RELOC_ARM_ALU_SB_G1: howto manager. (line 799)
-* BFD_RELOC_ARM_ALU_SB_G1_NC: howto manager. (line 798)
-* BFD_RELOC_ARM_ALU_SB_G2: howto manager. (line 800)
-* BFD_RELOC_ARM_CP_OFF_IMM: howto manager. (line 825)
-* BFD_RELOC_ARM_CP_OFF_IMM_S2: howto manager. (line 826)
+* BFD_RELOC_ARC_B22_PCREL: howto manager. (line 954)
+* BFD_RELOC_ARC_B26: howto manager. (line 959)
+* BFD_RELOC_ARM_ADR_IMM: howto manager. (line 840)
+* BFD_RELOC_ARM_ADRL_IMMEDIATE: howto manager. (line 826)
+* BFD_RELOC_ARM_ALU_PC_G0: howto manager. (line 790)
+* BFD_RELOC_ARM_ALU_PC_G0_NC: howto manager. (line 789)
+* BFD_RELOC_ARM_ALU_PC_G1: howto manager. (line 792)
+* BFD_RELOC_ARM_ALU_PC_G1_NC: howto manager. (line 791)
+* BFD_RELOC_ARM_ALU_PC_G2: howto manager. (line 793)
+* BFD_RELOC_ARM_ALU_SB_G0: howto manager. (line 804)
+* BFD_RELOC_ARM_ALU_SB_G0_NC: howto manager. (line 803)
+* BFD_RELOC_ARM_ALU_SB_G1: howto manager. (line 806)
+* BFD_RELOC_ARM_ALU_SB_G1_NC: howto manager. (line 805)
+* BFD_RELOC_ARM_ALU_SB_G2: howto manager. (line 807)
+* BFD_RELOC_ARM_CP_OFF_IMM: howto manager. (line 836)
+* BFD_RELOC_ARM_CP_OFF_IMM_S2: howto manager. (line 837)
* BFD_RELOC_ARM_GLOB_DAT: howto manager. (line 764)
* BFD_RELOC_ARM_GOT32: howto manager. (line 765)
+* BFD_RELOC_ARM_GOT_PREL: howto manager. (line 770)
* BFD_RELOC_ARM_GOTOFF: howto manager. (line 768)
* BFD_RELOC_ARM_GOTPC: howto manager. (line 769)
-* BFD_RELOC_ARM_HWLITERAL: howto manager. (line 836)
-* BFD_RELOC_ARM_IMMEDIATE: howto manager. (line 815)
-* BFD_RELOC_ARM_IN_POOL: howto manager. (line 832)
+* BFD_RELOC_ARM_HVC: howto manager. (line 833)
+* BFD_RELOC_ARM_HWLITERAL: howto manager. (line 847)
+* BFD_RELOC_ARM_IMMEDIATE: howto manager. (line 825)
+* BFD_RELOC_ARM_IN_POOL: howto manager. (line 843)
+* BFD_RELOC_ARM_IRELATIVE: howto manager. (line 822)
* BFD_RELOC_ARM_JUMP_SLOT: howto manager. (line 763)
-* BFD_RELOC_ARM_LDC_PC_G0: howto manager. (line 793)
-* BFD_RELOC_ARM_LDC_PC_G1: howto manager. (line 794)
-* BFD_RELOC_ARM_LDC_PC_G2: howto manager. (line 795)
-* BFD_RELOC_ARM_LDC_SB_G0: howto manager. (line 807)
-* BFD_RELOC_ARM_LDC_SB_G1: howto manager. (line 808)
-* BFD_RELOC_ARM_LDC_SB_G2: howto manager. (line 809)
-* BFD_RELOC_ARM_LDR_IMM: howto manager. (line 830)
-* BFD_RELOC_ARM_LDR_PC_G0: howto manager. (line 787)
-* BFD_RELOC_ARM_LDR_PC_G1: howto manager. (line 788)
-* BFD_RELOC_ARM_LDR_PC_G2: howto manager. (line 789)
-* BFD_RELOC_ARM_LDR_SB_G0: howto manager. (line 801)
-* BFD_RELOC_ARM_LDR_SB_G1: howto manager. (line 802)
-* BFD_RELOC_ARM_LDR_SB_G2: howto manager. (line 803)
-* BFD_RELOC_ARM_LDRS_PC_G0: howto manager. (line 790)
-* BFD_RELOC_ARM_LDRS_PC_G1: howto manager. (line 791)
-* BFD_RELOC_ARM_LDRS_PC_G2: howto manager. (line 792)
-* BFD_RELOC_ARM_LDRS_SB_G0: howto manager. (line 804)
-* BFD_RELOC_ARM_LDRS_SB_G1: howto manager. (line 805)
-* BFD_RELOC_ARM_LDRS_SB_G2: howto manager. (line 806)
-* BFD_RELOC_ARM_LITERAL: howto manager. (line 831)
+* BFD_RELOC_ARM_LDC_PC_G0: howto manager. (line 800)
+* BFD_RELOC_ARM_LDC_PC_G1: howto manager. (line 801)
+* BFD_RELOC_ARM_LDC_PC_G2: howto manager. (line 802)
+* BFD_RELOC_ARM_LDC_SB_G0: howto manager. (line 814)
+* BFD_RELOC_ARM_LDC_SB_G1: howto manager. (line 815)
+* BFD_RELOC_ARM_LDC_SB_G2: howto manager. (line 816)
+* BFD_RELOC_ARM_LDR_IMM: howto manager. (line 841)
+* BFD_RELOC_ARM_LDR_PC_G0: howto manager. (line 794)
+* BFD_RELOC_ARM_LDR_PC_G1: howto manager. (line 795)
+* BFD_RELOC_ARM_LDR_PC_G2: howto manager. (line 796)
+* BFD_RELOC_ARM_LDR_SB_G0: howto manager. (line 808)
+* BFD_RELOC_ARM_LDR_SB_G1: howto manager. (line 809)
+* BFD_RELOC_ARM_LDR_SB_G2: howto manager. (line 810)
+* BFD_RELOC_ARM_LDRS_PC_G0: howto manager. (line 797)
+* BFD_RELOC_ARM_LDRS_PC_G1: howto manager. (line 798)
+* BFD_RELOC_ARM_LDRS_PC_G2: howto manager. (line 799)
+* BFD_RELOC_ARM_LDRS_SB_G0: howto manager. (line 811)
+* BFD_RELOC_ARM_LDRS_SB_G1: howto manager. (line 812)
+* BFD_RELOC_ARM_LDRS_SB_G2: howto manager. (line 813)
+* BFD_RELOC_ARM_LITERAL: howto manager. (line 842)
* BFD_RELOC_ARM_MOVT: howto manager. (line 754)
* BFD_RELOC_ARM_MOVT_PCREL: howto manager. (line 756)
* BFD_RELOC_ARM_MOVW: howto manager. (line 753)
* BFD_RELOC_ARM_MOVW_PCREL: howto manager. (line 755)
-* BFD_RELOC_ARM_MULTI: howto manager. (line 824)
+* BFD_RELOC_ARM_MULTI: howto manager. (line 835)
* BFD_RELOC_ARM_OFFSET_IMM: howto manager. (line 727)
-* BFD_RELOC_ARM_OFFSET_IMM8: howto manager. (line 833)
+* BFD_RELOC_ARM_OFFSET_IMM8: howto manager. (line 844)
* BFD_RELOC_ARM_PCREL_BLX: howto manager. (line 698)
* BFD_RELOC_ARM_PCREL_BRANCH: howto manager. (line 694)
* BFD_RELOC_ARM_PCREL_CALL: howto manager. (line 708)
@@ -10277,200 +10470,236 @@ BFD Index
* BFD_RELOC_ARM_RELATIVE: howto manager. (line 767)
* BFD_RELOC_ARM_ROSEGREL32: howto manager. (line 739)
* BFD_RELOC_ARM_SBREL32: howto manager. (line 742)
-* BFD_RELOC_ARM_SHIFT_IMM: howto manager. (line 821)
-* BFD_RELOC_ARM_SMC: howto manager. (line 822)
-* BFD_RELOC_ARM_SWI: howto manager. (line 823)
-* BFD_RELOC_ARM_T32_ADD_IMM: howto manager. (line 818)
-* BFD_RELOC_ARM_T32_ADD_PC12: howto manager. (line 820)
-* BFD_RELOC_ARM_T32_CP_OFF_IMM: howto manager. (line 827)
-* BFD_RELOC_ARM_T32_CP_OFF_IMM_S2: howto manager. (line 828)
-* BFD_RELOC_ARM_T32_IMM12: howto manager. (line 819)
-* BFD_RELOC_ARM_T32_IMMEDIATE: howto manager. (line 817)
-* BFD_RELOC_ARM_T32_OFFSET_IMM: howto manager. (line 835)
-* BFD_RELOC_ARM_T32_OFFSET_U8: howto manager. (line 834)
+* BFD_RELOC_ARM_SHIFT_IMM: howto manager. (line 831)
+* BFD_RELOC_ARM_SMC: howto manager. (line 832)
+* BFD_RELOC_ARM_SWI: howto manager. (line 834)
+* BFD_RELOC_ARM_T32_ADD_IMM: howto manager. (line 828)
+* BFD_RELOC_ARM_T32_ADD_PC12: howto manager. (line 830)
+* BFD_RELOC_ARM_T32_CP_OFF_IMM: howto manager. (line 838)
+* BFD_RELOC_ARM_T32_CP_OFF_IMM_S2: howto manager. (line 839)
+* BFD_RELOC_ARM_T32_IMM12: howto manager. (line 829)
+* BFD_RELOC_ARM_T32_IMMEDIATE: howto manager. (line 827)
+* BFD_RELOC_ARM_T32_OFFSET_IMM: howto manager. (line 846)
+* BFD_RELOC_ARM_T32_OFFSET_U8: howto manager. (line 845)
* BFD_RELOC_ARM_TARGET1: howto manager. (line 735)
* BFD_RELOC_ARM_TARGET2: howto manager. (line 745)
-* BFD_RELOC_ARM_THUMB_ADD: howto manager. (line 837)
-* BFD_RELOC_ARM_THUMB_IMM: howto manager. (line 838)
+* BFD_RELOC_ARM_THM_TLS_CALL: howto manager. (line 783)
+* BFD_RELOC_ARM_THM_TLS_DESCSEQ: howto manager. (line 785)
+* BFD_RELOC_ARM_THUMB_ADD: howto manager. (line 848)
+* BFD_RELOC_ARM_THUMB_IMM: howto manager. (line 849)
* BFD_RELOC_ARM_THUMB_MOVT: howto manager. (line 758)
* BFD_RELOC_ARM_THUMB_MOVT_PCREL: howto manager. (line 760)
* BFD_RELOC_ARM_THUMB_MOVW: howto manager. (line 757)
* BFD_RELOC_ARM_THUMB_MOVW_PCREL: howto manager. (line 759)
* BFD_RELOC_ARM_THUMB_OFFSET: howto manager. (line 731)
-* BFD_RELOC_ARM_THUMB_SHIFT: howto manager. (line 839)
-* BFD_RELOC_ARM_TLS_DTPMOD32: howto manager. (line 776)
-* BFD_RELOC_ARM_TLS_DTPOFF32: howto manager. (line 775)
-* BFD_RELOC_ARM_TLS_GD32: howto manager. (line 772)
-* BFD_RELOC_ARM_TLS_IE32: howto manager. (line 778)
-* BFD_RELOC_ARM_TLS_LDM32: howto manager. (line 774)
-* BFD_RELOC_ARM_TLS_LDO32: howto manager. (line 773)
-* BFD_RELOC_ARM_TLS_LE32: howto manager. (line 779)
-* BFD_RELOC_ARM_TLS_TPOFF32: howto manager. (line 777)
-* BFD_RELOC_ARM_V4BX: howto manager. (line 812)
-* BFD_RELOC_AVR_13_PCREL: howto manager. (line 1401)
-* BFD_RELOC_AVR_16_PM: howto manager. (line 1405)
-* BFD_RELOC_AVR_6: howto manager. (line 1492)
-* BFD_RELOC_AVR_6_ADIW: howto manager. (line 1496)
-* BFD_RELOC_AVR_7_PCREL: howto manager. (line 1397)
-* BFD_RELOC_AVR_CALL: howto manager. (line 1484)
-* BFD_RELOC_AVR_HH8_LDI: howto manager. (line 1417)
-* BFD_RELOC_AVR_HH8_LDI_NEG: howto manager. (line 1436)
-* BFD_RELOC_AVR_HH8_LDI_PM: howto manager. (line 1465)
-* BFD_RELOC_AVR_HH8_LDI_PM_NEG: howto manager. (line 1479)
-* BFD_RELOC_AVR_HI8_LDI: howto manager. (line 1413)
-* BFD_RELOC_AVR_HI8_LDI_GS: howto manager. (line 1459)
-* BFD_RELOC_AVR_HI8_LDI_NEG: howto manager. (line 1431)
-* BFD_RELOC_AVR_HI8_LDI_PM: howto manager. (line 1455)
-* BFD_RELOC_AVR_HI8_LDI_PM_NEG: howto manager. (line 1474)
-* BFD_RELOC_AVR_LDI: howto manager. (line 1488)
-* BFD_RELOC_AVR_LO8_LDI: howto manager. (line 1409)
-* BFD_RELOC_AVR_LO8_LDI_GS: howto manager. (line 1449)
-* BFD_RELOC_AVR_LO8_LDI_NEG: howto manager. (line 1426)
-* BFD_RELOC_AVR_LO8_LDI_PM: howto manager. (line 1445)
-* BFD_RELOC_AVR_LO8_LDI_PM_NEG: howto manager. (line 1470)
-* BFD_RELOC_AVR_MS8_LDI: howto manager. (line 1422)
-* BFD_RELOC_AVR_MS8_LDI_NEG: howto manager. (line 1441)
-* BFD_RELOC_BFIN_10_PCREL: howto manager. (line 961)
-* BFD_RELOC_BFIN_11_PCREL: howto manager. (line 964)
-* BFD_RELOC_BFIN_12_PCREL_JUMP: howto manager. (line 967)
-* BFD_RELOC_BFIN_12_PCREL_JUMP_S: howto manager. (line 970)
-* BFD_RELOC_BFIN_16_HIGH: howto manager. (line 949)
-* BFD_RELOC_BFIN_16_IMM: howto manager. (line 946)
-* BFD_RELOC_BFIN_16_LOW: howto manager. (line 958)
-* BFD_RELOC_BFIN_24_PCREL_CALL_X: howto manager. (line 973)
-* BFD_RELOC_BFIN_24_PCREL_JUMP_L: howto manager. (line 976)
-* BFD_RELOC_BFIN_4_PCREL: howto manager. (line 952)
-* BFD_RELOC_BFIN_5_PCREL: howto manager. (line 955)
-* BFD_RELOC_BFIN_FUNCDESC: howto manager. (line 982)
-* BFD_RELOC_BFIN_FUNCDESC_GOT17M4: howto manager. (line 983)
-* BFD_RELOC_BFIN_FUNCDESC_GOTHI: howto manager. (line 984)
-* BFD_RELOC_BFIN_FUNCDESC_GOTLO: howto manager. (line 985)
-* BFD_RELOC_BFIN_FUNCDESC_GOTOFF17M4: howto manager. (line 987)
-* BFD_RELOC_BFIN_FUNCDESC_GOTOFFHI: howto manager. (line 988)
-* BFD_RELOC_BFIN_FUNCDESC_GOTOFFLO: howto manager. (line 989)
-* BFD_RELOC_BFIN_FUNCDESC_VALUE: howto manager. (line 986)
-* BFD_RELOC_BFIN_GOT: howto manager. (line 995)
-* BFD_RELOC_BFIN_GOT17M4: howto manager. (line 979)
-* BFD_RELOC_BFIN_GOTHI: howto manager. (line 980)
-* BFD_RELOC_BFIN_GOTLO: howto manager. (line 981)
-* BFD_RELOC_BFIN_GOTOFF17M4: howto manager. (line 990)
-* BFD_RELOC_BFIN_GOTOFFHI: howto manager. (line 991)
-* BFD_RELOC_BFIN_GOTOFFLO: howto manager. (line 992)
-* BFD_RELOC_BFIN_PLTPC: howto manager. (line 998)
+* BFD_RELOC_ARM_THUMB_SHIFT: howto manager. (line 850)
+* BFD_RELOC_ARM_TLS_CALL: howto manager. (line 782)
+* BFD_RELOC_ARM_TLS_DESC: howto manager. (line 786)
+* BFD_RELOC_ARM_TLS_DESCSEQ: howto manager. (line 784)
+* BFD_RELOC_ARM_TLS_DTPMOD32: howto manager. (line 777)
+* BFD_RELOC_ARM_TLS_DTPOFF32: howto manager. (line 776)
+* BFD_RELOC_ARM_TLS_GD32: howto manager. (line 773)
+* BFD_RELOC_ARM_TLS_GOTDESC: howto manager. (line 781)
+* BFD_RELOC_ARM_TLS_IE32: howto manager. (line 779)
+* BFD_RELOC_ARM_TLS_LDM32: howto manager. (line 775)
+* BFD_RELOC_ARM_TLS_LDO32: howto manager. (line 774)
+* BFD_RELOC_ARM_TLS_LE32: howto manager. (line 780)
+* BFD_RELOC_ARM_TLS_TPOFF32: howto manager. (line 778)
+* BFD_RELOC_ARM_V4BX: howto manager. (line 819)
+* BFD_RELOC_AVR_13_PCREL: howto manager. (line 1517)
+* BFD_RELOC_AVR_16_PM: howto manager. (line 1521)
+* BFD_RELOC_AVR_6: howto manager. (line 1608)
+* BFD_RELOC_AVR_6_ADIW: howto manager. (line 1612)
+* BFD_RELOC_AVR_7_PCREL: howto manager. (line 1513)
+* BFD_RELOC_AVR_CALL: howto manager. (line 1600)
+* BFD_RELOC_AVR_HH8_LDI: howto manager. (line 1533)
+* BFD_RELOC_AVR_HH8_LDI_NEG: howto manager. (line 1552)
+* BFD_RELOC_AVR_HH8_LDI_PM: howto manager. (line 1581)
+* BFD_RELOC_AVR_HH8_LDI_PM_NEG: howto manager. (line 1595)
+* BFD_RELOC_AVR_HI8_LDI: howto manager. (line 1529)
+* BFD_RELOC_AVR_HI8_LDI_GS: howto manager. (line 1575)
+* BFD_RELOC_AVR_HI8_LDI_NEG: howto manager. (line 1547)
+* BFD_RELOC_AVR_HI8_LDI_PM: howto manager. (line 1571)
+* BFD_RELOC_AVR_HI8_LDI_PM_NEG: howto manager. (line 1590)
+* BFD_RELOC_AVR_LDI: howto manager. (line 1604)
+* BFD_RELOC_AVR_LO8_LDI: howto manager. (line 1525)
+* BFD_RELOC_AVR_LO8_LDI_GS: howto manager. (line 1565)
+* BFD_RELOC_AVR_LO8_LDI_NEG: howto manager. (line 1542)
+* BFD_RELOC_AVR_LO8_LDI_PM: howto manager. (line 1561)
+* BFD_RELOC_AVR_LO8_LDI_PM_NEG: howto manager. (line 1586)
+* BFD_RELOC_AVR_MS8_LDI: howto manager. (line 1538)
+* BFD_RELOC_AVR_MS8_LDI_NEG: howto manager. (line 1557)
+* BFD_RELOC_BFIN_10_PCREL: howto manager. (line 979)
+* BFD_RELOC_BFIN_11_PCREL: howto manager. (line 982)
+* BFD_RELOC_BFIN_12_PCREL_JUMP: howto manager. (line 985)
+* BFD_RELOC_BFIN_12_PCREL_JUMP_S: howto manager. (line 988)
+* BFD_RELOC_BFIN_16_HIGH: howto manager. (line 967)
+* BFD_RELOC_BFIN_16_IMM: howto manager. (line 964)
+* BFD_RELOC_BFIN_16_LOW: howto manager. (line 976)
+* BFD_RELOC_BFIN_24_PCREL_CALL_X: howto manager. (line 991)
+* BFD_RELOC_BFIN_24_PCREL_JUMP_L: howto manager. (line 994)
+* BFD_RELOC_BFIN_4_PCREL: howto manager. (line 970)
+* BFD_RELOC_BFIN_5_PCREL: howto manager. (line 973)
+* BFD_RELOC_BFIN_FUNCDESC: howto manager. (line 1000)
+* BFD_RELOC_BFIN_FUNCDESC_GOT17M4: howto manager. (line 1001)
+* BFD_RELOC_BFIN_FUNCDESC_GOTHI: howto manager. (line 1002)
+* BFD_RELOC_BFIN_FUNCDESC_GOTLO: howto manager. (line 1003)
+* BFD_RELOC_BFIN_FUNCDESC_GOTOFF17M4: howto manager. (line 1005)
+* BFD_RELOC_BFIN_FUNCDESC_GOTOFFHI: howto manager. (line 1006)
+* BFD_RELOC_BFIN_FUNCDESC_GOTOFFLO: howto manager. (line 1007)
+* BFD_RELOC_BFIN_FUNCDESC_VALUE: howto manager. (line 1004)
+* BFD_RELOC_BFIN_GOT: howto manager. (line 1013)
+* BFD_RELOC_BFIN_GOT17M4: howto manager. (line 997)
+* BFD_RELOC_BFIN_GOTHI: howto manager. (line 998)
+* BFD_RELOC_BFIN_GOTLO: howto manager. (line 999)
+* BFD_RELOC_BFIN_GOTOFF17M4: howto manager. (line 1008)
+* BFD_RELOC_BFIN_GOTOFFHI: howto manager. (line 1009)
+* BFD_RELOC_BFIN_GOTOFFLO: howto manager. (line 1010)
+* BFD_RELOC_BFIN_PLTPC: howto manager. (line 1016)
+* BFD_RELOC_C6000_ABS_H16: howto manager. (line 1376)
+* BFD_RELOC_C6000_ABS_L16: howto manager. (line 1375)
+* BFD_RELOC_C6000_ABS_S16: howto manager. (line 1374)
+* BFD_RELOC_C6000_ALIGN: howto manager. (line 1397)
+* BFD_RELOC_C6000_COPY: howto manager. (line 1392)
+* BFD_RELOC_C6000_DSBT_INDEX: howto manager. (line 1390)
+* BFD_RELOC_C6000_EHTYPE: howto manager. (line 1394)
+* BFD_RELOC_C6000_FPHEAD: howto manager. (line 1398)
+* BFD_RELOC_C6000_JUMP_SLOT: howto manager. (line 1393)
+* BFD_RELOC_C6000_NOCMP: howto manager. (line 1399)
+* BFD_RELOC_C6000_PCR_H16: howto manager. (line 1395)
+* BFD_RELOC_C6000_PCR_L16: howto manager. (line 1396)
+* BFD_RELOC_C6000_PCR_S10: howto manager. (line 1372)
+* BFD_RELOC_C6000_PCR_S12: howto manager. (line 1371)
+* BFD_RELOC_C6000_PCR_S21: howto manager. (line 1370)
+* BFD_RELOC_C6000_PCR_S7: howto manager. (line 1373)
+* BFD_RELOC_C6000_PREL31: howto manager. (line 1391)
+* BFD_RELOC_C6000_SBR_GOT_H16_W: howto manager. (line 1389)
+* BFD_RELOC_C6000_SBR_GOT_L16_W: howto manager. (line 1388)
+* BFD_RELOC_C6000_SBR_GOT_U15_W: howto manager. (line 1387)
+* BFD_RELOC_C6000_SBR_H16_B: howto manager. (line 1384)
+* BFD_RELOC_C6000_SBR_H16_H: howto manager. (line 1385)
+* BFD_RELOC_C6000_SBR_H16_W: howto manager. (line 1386)
+* BFD_RELOC_C6000_SBR_L16_B: howto manager. (line 1381)
+* BFD_RELOC_C6000_SBR_L16_H: howto manager. (line 1382)
+* BFD_RELOC_C6000_SBR_L16_W: howto manager. (line 1383)
+* BFD_RELOC_C6000_SBR_S16: howto manager. (line 1380)
+* BFD_RELOC_C6000_SBR_U15_B: howto manager. (line 1377)
+* BFD_RELOC_C6000_SBR_U15_H: howto manager. (line 1378)
+* BFD_RELOC_C6000_SBR_U15_W: howto manager. (line 1379)
* bfd_reloc_code_type: howto manager. (line 10)
-* BFD_RELOC_CR16_ABS20: howto manager. (line 1894)
-* BFD_RELOC_CR16_ABS24: howto manager. (line 1895)
-* BFD_RELOC_CR16_DISP16: howto manager. (line 1905)
-* BFD_RELOC_CR16_DISP20: howto manager. (line 1906)
-* BFD_RELOC_CR16_DISP24: howto manager. (line 1907)
-* BFD_RELOC_CR16_DISP24a: howto manager. (line 1908)
-* BFD_RELOC_CR16_DISP4: howto manager. (line 1903)
-* BFD_RELOC_CR16_DISP8: howto manager. (line 1904)
-* BFD_RELOC_CR16_GLOB_DAT: howto manager. (line 1914)
-* BFD_RELOC_CR16_GOT_REGREL20: howto manager. (line 1912)
-* BFD_RELOC_CR16_GOTC_REGREL20: howto manager. (line 1913)
-* BFD_RELOC_CR16_IMM16: howto manager. (line 1898)
-* BFD_RELOC_CR16_IMM20: howto manager. (line 1899)
-* BFD_RELOC_CR16_IMM24: howto manager. (line 1900)
-* BFD_RELOC_CR16_IMM32: howto manager. (line 1901)
-* BFD_RELOC_CR16_IMM32a: howto manager. (line 1902)
-* BFD_RELOC_CR16_IMM4: howto manager. (line 1896)
-* BFD_RELOC_CR16_IMM8: howto manager. (line 1897)
-* BFD_RELOC_CR16_NUM16: howto manager. (line 1883)
-* BFD_RELOC_CR16_NUM32: howto manager. (line 1884)
-* BFD_RELOC_CR16_NUM32a: howto manager. (line 1885)
-* BFD_RELOC_CR16_NUM8: howto manager. (line 1882)
-* BFD_RELOC_CR16_REGREL0: howto manager. (line 1886)
-* BFD_RELOC_CR16_REGREL14: howto manager. (line 1889)
-* BFD_RELOC_CR16_REGREL14a: howto manager. (line 1890)
-* BFD_RELOC_CR16_REGREL16: howto manager. (line 1891)
-* BFD_RELOC_CR16_REGREL20: howto manager. (line 1892)
-* BFD_RELOC_CR16_REGREL20a: howto manager. (line 1893)
-* BFD_RELOC_CR16_REGREL4: howto manager. (line 1887)
-* BFD_RELOC_CR16_REGREL4a: howto manager. (line 1888)
-* BFD_RELOC_CR16_SWITCH16: howto manager. (line 1910)
-* BFD_RELOC_CR16_SWITCH32: howto manager. (line 1911)
-* BFD_RELOC_CR16_SWITCH8: howto manager. (line 1909)
-* BFD_RELOC_CRIS_16_DTPREL: howto manager. (line 1985)
-* BFD_RELOC_CRIS_16_GOT: howto manager. (line 1961)
-* BFD_RELOC_CRIS_16_GOT_GD: howto manager. (line 1981)
-* BFD_RELOC_CRIS_16_GOT_TPREL: howto manager. (line 1987)
-* BFD_RELOC_CRIS_16_GOTPLT: howto manager. (line 1967)
-* BFD_RELOC_CRIS_16_TPREL: howto manager. (line 1989)
-* BFD_RELOC_CRIS_32_DTPREL: howto manager. (line 1984)
-* BFD_RELOC_CRIS_32_GD: howto manager. (line 1982)
-* BFD_RELOC_CRIS_32_GOT: howto manager. (line 1958)
-* BFD_RELOC_CRIS_32_GOT_GD: howto manager. (line 1980)
-* BFD_RELOC_CRIS_32_GOT_TPREL: howto manager. (line 1986)
-* BFD_RELOC_CRIS_32_GOTPLT: howto manager. (line 1964)
-* BFD_RELOC_CRIS_32_GOTREL: howto manager. (line 1970)
-* BFD_RELOC_CRIS_32_IE: howto manager. (line 1991)
-* BFD_RELOC_CRIS_32_PLT_GOTREL: howto manager. (line 1973)
-* BFD_RELOC_CRIS_32_PLT_PCREL: howto manager. (line 1976)
-* BFD_RELOC_CRIS_32_TPREL: howto manager. (line 1988)
-* BFD_RELOC_CRIS_BDISP8: howto manager. (line 1939)
-* BFD_RELOC_CRIS_COPY: howto manager. (line 1952)
-* BFD_RELOC_CRIS_DTP: howto manager. (line 1983)
-* BFD_RELOC_CRIS_DTPMOD: howto manager. (line 1990)
-* BFD_RELOC_CRIS_GLOB_DAT: howto manager. (line 1953)
-* BFD_RELOC_CRIS_JUMP_SLOT: howto manager. (line 1954)
-* BFD_RELOC_CRIS_LAPCQ_OFFSET: howto manager. (line 1947)
-* BFD_RELOC_CRIS_RELATIVE: howto manager. (line 1955)
-* BFD_RELOC_CRIS_SIGNED_16: howto manager. (line 1945)
-* BFD_RELOC_CRIS_SIGNED_6: howto manager. (line 1941)
-* BFD_RELOC_CRIS_SIGNED_8: howto manager. (line 1943)
-* BFD_RELOC_CRIS_UNSIGNED_16: howto manager. (line 1946)
-* BFD_RELOC_CRIS_UNSIGNED_4: howto manager. (line 1948)
-* BFD_RELOC_CRIS_UNSIGNED_5: howto manager. (line 1940)
-* BFD_RELOC_CRIS_UNSIGNED_6: howto manager. (line 1942)
-* BFD_RELOC_CRIS_UNSIGNED_8: howto manager. (line 1944)
-* BFD_RELOC_CRX_ABS16: howto manager. (line 1927)
-* BFD_RELOC_CRX_ABS32: howto manager. (line 1928)
-* BFD_RELOC_CRX_IMM16: howto manager. (line 1932)
-* BFD_RELOC_CRX_IMM32: howto manager. (line 1933)
-* BFD_RELOC_CRX_NUM16: howto manager. (line 1930)
-* BFD_RELOC_CRX_NUM32: howto manager. (line 1931)
-* BFD_RELOC_CRX_NUM8: howto manager. (line 1929)
-* BFD_RELOC_CRX_REGREL12: howto manager. (line 1923)
-* BFD_RELOC_CRX_REGREL22: howto manager. (line 1924)
-* BFD_RELOC_CRX_REGREL28: howto manager. (line 1925)
-* BFD_RELOC_CRX_REGREL32: howto manager. (line 1926)
-* BFD_RELOC_CRX_REL16: howto manager. (line 1920)
-* BFD_RELOC_CRX_REL24: howto manager. (line 1921)
-* BFD_RELOC_CRX_REL32: howto manager. (line 1922)
-* BFD_RELOC_CRX_REL4: howto manager. (line 1917)
-* BFD_RELOC_CRX_REL8: howto manager. (line 1918)
-* BFD_RELOC_CRX_REL8_CMP: howto manager. (line 1919)
-* BFD_RELOC_CRX_SWITCH16: howto manager. (line 1935)
-* BFD_RELOC_CRX_SWITCH32: howto manager. (line 1936)
-* BFD_RELOC_CRX_SWITCH8: howto manager. (line 1934)
+* BFD_RELOC_CR16_ABS20: howto manager. (line 2013)
+* BFD_RELOC_CR16_ABS24: howto manager. (line 2014)
+* BFD_RELOC_CR16_DISP16: howto manager. (line 2024)
+* BFD_RELOC_CR16_DISP20: howto manager. (line 2025)
+* BFD_RELOC_CR16_DISP24: howto manager. (line 2026)
+* BFD_RELOC_CR16_DISP24a: howto manager. (line 2027)
+* BFD_RELOC_CR16_DISP4: howto manager. (line 2022)
+* BFD_RELOC_CR16_DISP8: howto manager. (line 2023)
+* BFD_RELOC_CR16_GLOB_DAT: howto manager. (line 2033)
+* BFD_RELOC_CR16_GOT_REGREL20: howto manager. (line 2031)
+* BFD_RELOC_CR16_GOTC_REGREL20: howto manager. (line 2032)
+* BFD_RELOC_CR16_IMM16: howto manager. (line 2017)
+* BFD_RELOC_CR16_IMM20: howto manager. (line 2018)
+* BFD_RELOC_CR16_IMM24: howto manager. (line 2019)
+* BFD_RELOC_CR16_IMM32: howto manager. (line 2020)
+* BFD_RELOC_CR16_IMM32a: howto manager. (line 2021)
+* BFD_RELOC_CR16_IMM4: howto manager. (line 2015)
+* BFD_RELOC_CR16_IMM8: howto manager. (line 2016)
+* BFD_RELOC_CR16_NUM16: howto manager. (line 2002)
+* BFD_RELOC_CR16_NUM32: howto manager. (line 2003)
+* BFD_RELOC_CR16_NUM32a: howto manager. (line 2004)
+* BFD_RELOC_CR16_NUM8: howto manager. (line 2001)
+* BFD_RELOC_CR16_REGREL0: howto manager. (line 2005)
+* BFD_RELOC_CR16_REGREL14: howto manager. (line 2008)
+* BFD_RELOC_CR16_REGREL14a: howto manager. (line 2009)
+* BFD_RELOC_CR16_REGREL16: howto manager. (line 2010)
+* BFD_RELOC_CR16_REGREL20: howto manager. (line 2011)
+* BFD_RELOC_CR16_REGREL20a: howto manager. (line 2012)
+* BFD_RELOC_CR16_REGREL4: howto manager. (line 2006)
+* BFD_RELOC_CR16_REGREL4a: howto manager. (line 2007)
+* BFD_RELOC_CR16_SWITCH16: howto manager. (line 2029)
+* BFD_RELOC_CR16_SWITCH32: howto manager. (line 2030)
+* BFD_RELOC_CR16_SWITCH8: howto manager. (line 2028)
+* BFD_RELOC_CRIS_16_DTPREL: howto manager. (line 2104)
+* BFD_RELOC_CRIS_16_GOT: howto manager. (line 2080)
+* BFD_RELOC_CRIS_16_GOT_GD: howto manager. (line 2100)
+* BFD_RELOC_CRIS_16_GOT_TPREL: howto manager. (line 2106)
+* BFD_RELOC_CRIS_16_GOTPLT: howto manager. (line 2086)
+* BFD_RELOC_CRIS_16_TPREL: howto manager. (line 2108)
+* BFD_RELOC_CRIS_32_DTPREL: howto manager. (line 2103)
+* BFD_RELOC_CRIS_32_GD: howto manager. (line 2101)
+* BFD_RELOC_CRIS_32_GOT: howto manager. (line 2077)
+* BFD_RELOC_CRIS_32_GOT_GD: howto manager. (line 2099)
+* BFD_RELOC_CRIS_32_GOT_TPREL: howto manager. (line 2105)
+* BFD_RELOC_CRIS_32_GOTPLT: howto manager. (line 2083)
+* BFD_RELOC_CRIS_32_GOTREL: howto manager. (line 2089)
+* BFD_RELOC_CRIS_32_IE: howto manager. (line 2110)
+* BFD_RELOC_CRIS_32_PLT_GOTREL: howto manager. (line 2092)
+* BFD_RELOC_CRIS_32_PLT_PCREL: howto manager. (line 2095)
+* BFD_RELOC_CRIS_32_TPREL: howto manager. (line 2107)
+* BFD_RELOC_CRIS_BDISP8: howto manager. (line 2058)
+* BFD_RELOC_CRIS_COPY: howto manager. (line 2071)
+* BFD_RELOC_CRIS_DTP: howto manager. (line 2102)
+* BFD_RELOC_CRIS_DTPMOD: howto manager. (line 2109)
+* BFD_RELOC_CRIS_GLOB_DAT: howto manager. (line 2072)
+* BFD_RELOC_CRIS_JUMP_SLOT: howto manager. (line 2073)
+* BFD_RELOC_CRIS_LAPCQ_OFFSET: howto manager. (line 2066)
+* BFD_RELOC_CRIS_RELATIVE: howto manager. (line 2074)
+* BFD_RELOC_CRIS_SIGNED_16: howto manager. (line 2064)
+* BFD_RELOC_CRIS_SIGNED_6: howto manager. (line 2060)
+* BFD_RELOC_CRIS_SIGNED_8: howto manager. (line 2062)
+* BFD_RELOC_CRIS_UNSIGNED_16: howto manager. (line 2065)
+* BFD_RELOC_CRIS_UNSIGNED_4: howto manager. (line 2067)
+* BFD_RELOC_CRIS_UNSIGNED_5: howto manager. (line 2059)
+* BFD_RELOC_CRIS_UNSIGNED_6: howto manager. (line 2061)
+* BFD_RELOC_CRIS_UNSIGNED_8: howto manager. (line 2063)
+* BFD_RELOC_CRX_ABS16: howto manager. (line 2046)
+* BFD_RELOC_CRX_ABS32: howto manager. (line 2047)
+* BFD_RELOC_CRX_IMM16: howto manager. (line 2051)
+* BFD_RELOC_CRX_IMM32: howto manager. (line 2052)
+* BFD_RELOC_CRX_NUM16: howto manager. (line 2049)
+* BFD_RELOC_CRX_NUM32: howto manager. (line 2050)
+* BFD_RELOC_CRX_NUM8: howto manager. (line 2048)
+* BFD_RELOC_CRX_REGREL12: howto manager. (line 2042)
+* BFD_RELOC_CRX_REGREL22: howto manager. (line 2043)
+* BFD_RELOC_CRX_REGREL28: howto manager. (line 2044)
+* BFD_RELOC_CRX_REGREL32: howto manager. (line 2045)
+* BFD_RELOC_CRX_REL16: howto manager. (line 2039)
+* BFD_RELOC_CRX_REL24: howto manager. (line 2040)
+* BFD_RELOC_CRX_REL32: howto manager. (line 2041)
+* BFD_RELOC_CRX_REL4: howto manager. (line 2036)
+* BFD_RELOC_CRX_REL8: howto manager. (line 2037)
+* BFD_RELOC_CRX_REL8_CMP: howto manager. (line 2038)
+* BFD_RELOC_CRX_SWITCH16: howto manager. (line 2054)
+* BFD_RELOC_CRX_SWITCH32: howto manager. (line 2055)
+* BFD_RELOC_CRX_SWITCH8: howto manager. (line 2053)
* BFD_RELOC_CTOR: howto manager. (line 688)
-* BFD_RELOC_D10V_10_PCREL_L: howto manager. (line 1065)
-* BFD_RELOC_D10V_10_PCREL_R: howto manager. (line 1061)
-* BFD_RELOC_D10V_18: howto manager. (line 1070)
-* BFD_RELOC_D10V_18_PCREL: howto manager. (line 1073)
-* BFD_RELOC_D30V_15: howto manager. (line 1088)
-* BFD_RELOC_D30V_15_PCREL: howto manager. (line 1092)
-* BFD_RELOC_D30V_15_PCREL_R: howto manager. (line 1096)
-* BFD_RELOC_D30V_21: howto manager. (line 1101)
-* BFD_RELOC_D30V_21_PCREL: howto manager. (line 1105)
-* BFD_RELOC_D30V_21_PCREL_R: howto manager. (line 1109)
-* BFD_RELOC_D30V_32: howto manager. (line 1114)
-* BFD_RELOC_D30V_32_PCREL: howto manager. (line 1117)
-* BFD_RELOC_D30V_6: howto manager. (line 1076)
-* BFD_RELOC_D30V_9_PCREL: howto manager. (line 1079)
-* BFD_RELOC_D30V_9_PCREL_R: howto manager. (line 1083)
-* BFD_RELOC_DLX_HI16_S: howto manager. (line 1120)
-* BFD_RELOC_DLX_JMP26: howto manager. (line 1126)
-* BFD_RELOC_DLX_LO16: howto manager. (line 1123)
-* BFD_RELOC_FR30_10_IN_8: howto manager. (line 1305)
-* BFD_RELOC_FR30_12_PCREL: howto manager. (line 1313)
-* BFD_RELOC_FR30_20: howto manager. (line 1289)
-* BFD_RELOC_FR30_48: howto manager. (line 1286)
-* BFD_RELOC_FR30_6_IN_4: howto manager. (line 1293)
-* BFD_RELOC_FR30_8_IN_8: howto manager. (line 1297)
-* BFD_RELOC_FR30_9_IN_8: howto manager. (line 1301)
-* BFD_RELOC_FR30_9_PCREL: howto manager. (line 1309)
+* BFD_RELOC_D10V_10_PCREL_L: howto manager. (line 1083)
+* BFD_RELOC_D10V_10_PCREL_R: howto manager. (line 1079)
+* BFD_RELOC_D10V_18: howto manager. (line 1088)
+* BFD_RELOC_D10V_18_PCREL: howto manager. (line 1091)
+* BFD_RELOC_D30V_15: howto manager. (line 1106)
+* BFD_RELOC_D30V_15_PCREL: howto manager. (line 1110)
+* BFD_RELOC_D30V_15_PCREL_R: howto manager. (line 1114)
+* BFD_RELOC_D30V_21: howto manager. (line 1119)
+* BFD_RELOC_D30V_21_PCREL: howto manager. (line 1123)
+* BFD_RELOC_D30V_21_PCREL_R: howto manager. (line 1127)
+* BFD_RELOC_D30V_32: howto manager. (line 1132)
+* BFD_RELOC_D30V_32_PCREL: howto manager. (line 1135)
+* BFD_RELOC_D30V_6: howto manager. (line 1094)
+* BFD_RELOC_D30V_9_PCREL: howto manager. (line 1097)
+* BFD_RELOC_D30V_9_PCREL_R: howto manager. (line 1101)
+* BFD_RELOC_DLX_HI16_S: howto manager. (line 1138)
+* BFD_RELOC_DLX_JMP26: howto manager. (line 1144)
+* BFD_RELOC_DLX_LO16: howto manager. (line 1141)
+* BFD_RELOC_FR30_10_IN_8: howto manager. (line 1421)
+* BFD_RELOC_FR30_12_PCREL: howto manager. (line 1429)
+* BFD_RELOC_FR30_20: howto manager. (line 1405)
+* BFD_RELOC_FR30_48: howto manager. (line 1402)
+* BFD_RELOC_FR30_6_IN_4: howto manager. (line 1409)
+* BFD_RELOC_FR30_8_IN_8: howto manager. (line 1413)
+* BFD_RELOC_FR30_9_IN_8: howto manager. (line 1417)
+* BFD_RELOC_FR30_9_PCREL: howto manager. (line 1425)
* BFD_RELOC_FRV_FUNCDESC: howto manager. (line 440)
* BFD_RELOC_FRV_FUNCDESC_GOT12: howto manager. (line 441)
* BFD_RELOC_FRV_FUNCDESC_GOTHI: howto manager. (line 442)
@@ -10512,11 +10741,11 @@ BFD Index
* BFD_RELOC_FRV_TLSOFF_RELAX: howto manager. (line 465)
* BFD_RELOC_GPREL16: howto manager. (line 121)
* BFD_RELOC_GPREL32: howto manager. (line 122)
-* BFD_RELOC_H8_DIR16A8: howto manager. (line 2032)
-* BFD_RELOC_H8_DIR16R8: howto manager. (line 2033)
-* BFD_RELOC_H8_DIR24A8: howto manager. (line 2034)
-* BFD_RELOC_H8_DIR24R8: howto manager. (line 2035)
-* BFD_RELOC_H8_DIR32A16: howto manager. (line 2036)
+* BFD_RELOC_H8_DIR16A8: howto manager. (line 2151)
+* BFD_RELOC_H8_DIR16R8: howto manager. (line 2152)
+* BFD_RELOC_H8_DIR24A8: howto manager. (line 2153)
+* BFD_RELOC_H8_DIR24R8: howto manager. (line 2154)
+* BFD_RELOC_H8_DIR32A16: howto manager. (line 2155)
* BFD_RELOC_HI16: howto manager. (line 344)
* BFD_RELOC_HI16_BASEREL: howto manager. (line 97)
* BFD_RELOC_HI16_GOTOFF: howto manager. (line 57)
@@ -10530,202 +10759,202 @@ BFD Index
* BFD_RELOC_HI22: howto manager. (line 116)
* BFD_RELOC_I370_D12: howto manager. (line 685)
* BFD_RELOC_I960_CALLJ: howto manager. (line 128)
-* BFD_RELOC_IA64_COPY: howto manager. (line 1776)
-* BFD_RELOC_IA64_DIR32LSB: howto manager. (line 1721)
-* BFD_RELOC_IA64_DIR32MSB: howto manager. (line 1720)
-* BFD_RELOC_IA64_DIR64LSB: howto manager. (line 1723)
-* BFD_RELOC_IA64_DIR64MSB: howto manager. (line 1722)
-* BFD_RELOC_IA64_DTPMOD64LSB: howto manager. (line 1786)
-* BFD_RELOC_IA64_DTPMOD64MSB: howto manager. (line 1785)
-* BFD_RELOC_IA64_DTPREL14: howto manager. (line 1788)
-* BFD_RELOC_IA64_DTPREL22: howto manager. (line 1789)
-* BFD_RELOC_IA64_DTPREL32LSB: howto manager. (line 1792)
-* BFD_RELOC_IA64_DTPREL32MSB: howto manager. (line 1791)
-* BFD_RELOC_IA64_DTPREL64I: howto manager. (line 1790)
-* BFD_RELOC_IA64_DTPREL64LSB: howto manager. (line 1794)
-* BFD_RELOC_IA64_DTPREL64MSB: howto manager. (line 1793)
-* BFD_RELOC_IA64_FPTR32LSB: howto manager. (line 1738)
-* BFD_RELOC_IA64_FPTR32MSB: howto manager. (line 1737)
-* BFD_RELOC_IA64_FPTR64I: howto manager. (line 1736)
-* BFD_RELOC_IA64_FPTR64LSB: howto manager. (line 1740)
-* BFD_RELOC_IA64_FPTR64MSB: howto manager. (line 1739)
-* BFD_RELOC_IA64_GPREL22: howto manager. (line 1724)
-* BFD_RELOC_IA64_GPREL32LSB: howto manager. (line 1727)
-* BFD_RELOC_IA64_GPREL32MSB: howto manager. (line 1726)
-* BFD_RELOC_IA64_GPREL64I: howto manager. (line 1725)
-* BFD_RELOC_IA64_GPREL64LSB: howto manager. (line 1729)
-* BFD_RELOC_IA64_GPREL64MSB: howto manager. (line 1728)
-* BFD_RELOC_IA64_IMM14: howto manager. (line 1717)
-* BFD_RELOC_IA64_IMM22: howto manager. (line 1718)
-* BFD_RELOC_IA64_IMM64: howto manager. (line 1719)
-* BFD_RELOC_IA64_IPLTLSB: howto manager. (line 1775)
-* BFD_RELOC_IA64_IPLTMSB: howto manager. (line 1774)
-* BFD_RELOC_IA64_LDXMOV: howto manager. (line 1778)
-* BFD_RELOC_IA64_LTOFF22: howto manager. (line 1730)
-* BFD_RELOC_IA64_LTOFF22X: howto manager. (line 1777)
-* BFD_RELOC_IA64_LTOFF64I: howto manager. (line 1731)
-* BFD_RELOC_IA64_LTOFF_DTPMOD22: howto manager. (line 1787)
-* BFD_RELOC_IA64_LTOFF_DTPREL22: howto manager. (line 1795)
-* BFD_RELOC_IA64_LTOFF_FPTR22: howto manager. (line 1752)
-* BFD_RELOC_IA64_LTOFF_FPTR32LSB: howto manager. (line 1755)
-* BFD_RELOC_IA64_LTOFF_FPTR32MSB: howto manager. (line 1754)
-* BFD_RELOC_IA64_LTOFF_FPTR64I: howto manager. (line 1753)
-* BFD_RELOC_IA64_LTOFF_FPTR64LSB: howto manager. (line 1757)
-* BFD_RELOC_IA64_LTOFF_FPTR64MSB: howto manager. (line 1756)
-* BFD_RELOC_IA64_LTOFF_TPREL22: howto manager. (line 1784)
-* BFD_RELOC_IA64_LTV32LSB: howto manager. (line 1771)
-* BFD_RELOC_IA64_LTV32MSB: howto manager. (line 1770)
-* BFD_RELOC_IA64_LTV64LSB: howto manager. (line 1773)
-* BFD_RELOC_IA64_LTV64MSB: howto manager. (line 1772)
-* BFD_RELOC_IA64_PCREL21B: howto manager. (line 1741)
-* BFD_RELOC_IA64_PCREL21BI: howto manager. (line 1742)
-* BFD_RELOC_IA64_PCREL21F: howto manager. (line 1744)
-* BFD_RELOC_IA64_PCREL21M: howto manager. (line 1743)
-* BFD_RELOC_IA64_PCREL22: howto manager. (line 1745)
-* BFD_RELOC_IA64_PCREL32LSB: howto manager. (line 1749)
-* BFD_RELOC_IA64_PCREL32MSB: howto manager. (line 1748)
-* BFD_RELOC_IA64_PCREL60B: howto manager. (line 1746)
-* BFD_RELOC_IA64_PCREL64I: howto manager. (line 1747)
-* BFD_RELOC_IA64_PCREL64LSB: howto manager. (line 1751)
-* BFD_RELOC_IA64_PCREL64MSB: howto manager. (line 1750)
-* BFD_RELOC_IA64_PLTOFF22: howto manager. (line 1732)
-* BFD_RELOC_IA64_PLTOFF64I: howto manager. (line 1733)
-* BFD_RELOC_IA64_PLTOFF64LSB: howto manager. (line 1735)
-* BFD_RELOC_IA64_PLTOFF64MSB: howto manager. (line 1734)
-* BFD_RELOC_IA64_REL32LSB: howto manager. (line 1767)
-* BFD_RELOC_IA64_REL32MSB: howto manager. (line 1766)
-* BFD_RELOC_IA64_REL64LSB: howto manager. (line 1769)
-* BFD_RELOC_IA64_REL64MSB: howto manager. (line 1768)
-* BFD_RELOC_IA64_SECREL32LSB: howto manager. (line 1763)
-* BFD_RELOC_IA64_SECREL32MSB: howto manager. (line 1762)
-* BFD_RELOC_IA64_SECREL64LSB: howto manager. (line 1765)
-* BFD_RELOC_IA64_SECREL64MSB: howto manager. (line 1764)
-* BFD_RELOC_IA64_SEGREL32LSB: howto manager. (line 1759)
-* BFD_RELOC_IA64_SEGREL32MSB: howto manager. (line 1758)
-* BFD_RELOC_IA64_SEGREL64LSB: howto manager. (line 1761)
-* BFD_RELOC_IA64_SEGREL64MSB: howto manager. (line 1760)
-* BFD_RELOC_IA64_TPREL14: howto manager. (line 1779)
-* BFD_RELOC_IA64_TPREL22: howto manager. (line 1780)
-* BFD_RELOC_IA64_TPREL64I: howto manager. (line 1781)
-* BFD_RELOC_IA64_TPREL64LSB: howto manager. (line 1783)
-* BFD_RELOC_IA64_TPREL64MSB: howto manager. (line 1782)
-* BFD_RELOC_IP2K_ADDR16CJP: howto manager. (line 1669)
-* BFD_RELOC_IP2K_BANK: howto manager. (line 1666)
-* BFD_RELOC_IP2K_EX8DATA: howto manager. (line 1677)
-* BFD_RELOC_IP2K_FR9: howto manager. (line 1663)
-* BFD_RELOC_IP2K_FR_OFFSET: howto manager. (line 1690)
-* BFD_RELOC_IP2K_HI8DATA: howto manager. (line 1676)
-* BFD_RELOC_IP2K_HI8INSN: howto manager. (line 1681)
-* BFD_RELOC_IP2K_LO8DATA: howto manager. (line 1675)
-* BFD_RELOC_IP2K_LO8INSN: howto manager. (line 1680)
-* BFD_RELOC_IP2K_PAGE3: howto manager. (line 1672)
-* BFD_RELOC_IP2K_PC_SKIP: howto manager. (line 1684)
-* BFD_RELOC_IP2K_TEXT: howto manager. (line 1687)
-* BFD_RELOC_IQ2000_OFFSET_16: howto manager. (line 2086)
-* BFD_RELOC_IQ2000_OFFSET_21: howto manager. (line 2087)
-* BFD_RELOC_IQ2000_UHI16: howto manager. (line 2088)
-* BFD_RELOC_LM32_16_GOT: howto manager. (line 2193)
-* BFD_RELOC_LM32_BRANCH: howto manager. (line 2192)
-* BFD_RELOC_LM32_CALL: howto manager. (line 2191)
-* BFD_RELOC_LM32_COPY: howto manager. (line 2196)
-* BFD_RELOC_LM32_GLOB_DAT: howto manager. (line 2197)
-* BFD_RELOC_LM32_GOTOFF_HI16: howto manager. (line 2194)
-* BFD_RELOC_LM32_GOTOFF_LO16: howto manager. (line 2195)
-* BFD_RELOC_LM32_JMP_SLOT: howto manager. (line 2198)
-* BFD_RELOC_LM32_RELATIVE: howto manager. (line 2199)
+* BFD_RELOC_IA64_COPY: howto manager. (line 1895)
+* BFD_RELOC_IA64_DIR32LSB: howto manager. (line 1840)
+* BFD_RELOC_IA64_DIR32MSB: howto manager. (line 1839)
+* BFD_RELOC_IA64_DIR64LSB: howto manager. (line 1842)
+* BFD_RELOC_IA64_DIR64MSB: howto manager. (line 1841)
+* BFD_RELOC_IA64_DTPMOD64LSB: howto manager. (line 1905)
+* BFD_RELOC_IA64_DTPMOD64MSB: howto manager. (line 1904)
+* BFD_RELOC_IA64_DTPREL14: howto manager. (line 1907)
+* BFD_RELOC_IA64_DTPREL22: howto manager. (line 1908)
+* BFD_RELOC_IA64_DTPREL32LSB: howto manager. (line 1911)
+* BFD_RELOC_IA64_DTPREL32MSB: howto manager. (line 1910)
+* BFD_RELOC_IA64_DTPREL64I: howto manager. (line 1909)
+* BFD_RELOC_IA64_DTPREL64LSB: howto manager. (line 1913)
+* BFD_RELOC_IA64_DTPREL64MSB: howto manager. (line 1912)
+* BFD_RELOC_IA64_FPTR32LSB: howto manager. (line 1857)
+* BFD_RELOC_IA64_FPTR32MSB: howto manager. (line 1856)
+* BFD_RELOC_IA64_FPTR64I: howto manager. (line 1855)
+* BFD_RELOC_IA64_FPTR64LSB: howto manager. (line 1859)
+* BFD_RELOC_IA64_FPTR64MSB: howto manager. (line 1858)
+* BFD_RELOC_IA64_GPREL22: howto manager. (line 1843)
+* BFD_RELOC_IA64_GPREL32LSB: howto manager. (line 1846)
+* BFD_RELOC_IA64_GPREL32MSB: howto manager. (line 1845)
+* BFD_RELOC_IA64_GPREL64I: howto manager. (line 1844)
+* BFD_RELOC_IA64_GPREL64LSB: howto manager. (line 1848)
+* BFD_RELOC_IA64_GPREL64MSB: howto manager. (line 1847)
+* BFD_RELOC_IA64_IMM14: howto manager. (line 1836)
+* BFD_RELOC_IA64_IMM22: howto manager. (line 1837)
+* BFD_RELOC_IA64_IMM64: howto manager. (line 1838)
+* BFD_RELOC_IA64_IPLTLSB: howto manager. (line 1894)
+* BFD_RELOC_IA64_IPLTMSB: howto manager. (line 1893)
+* BFD_RELOC_IA64_LDXMOV: howto manager. (line 1897)
+* BFD_RELOC_IA64_LTOFF22: howto manager. (line 1849)
+* BFD_RELOC_IA64_LTOFF22X: howto manager. (line 1896)
+* BFD_RELOC_IA64_LTOFF64I: howto manager. (line 1850)
+* BFD_RELOC_IA64_LTOFF_DTPMOD22: howto manager. (line 1906)
+* BFD_RELOC_IA64_LTOFF_DTPREL22: howto manager. (line 1914)
+* BFD_RELOC_IA64_LTOFF_FPTR22: howto manager. (line 1871)
+* BFD_RELOC_IA64_LTOFF_FPTR32LSB: howto manager. (line 1874)
+* BFD_RELOC_IA64_LTOFF_FPTR32MSB: howto manager. (line 1873)
+* BFD_RELOC_IA64_LTOFF_FPTR64I: howto manager. (line 1872)
+* BFD_RELOC_IA64_LTOFF_FPTR64LSB: howto manager. (line 1876)
+* BFD_RELOC_IA64_LTOFF_FPTR64MSB: howto manager. (line 1875)
+* BFD_RELOC_IA64_LTOFF_TPREL22: howto manager. (line 1903)
+* BFD_RELOC_IA64_LTV32LSB: howto manager. (line 1890)
+* BFD_RELOC_IA64_LTV32MSB: howto manager. (line 1889)
+* BFD_RELOC_IA64_LTV64LSB: howto manager. (line 1892)
+* BFD_RELOC_IA64_LTV64MSB: howto manager. (line 1891)
+* BFD_RELOC_IA64_PCREL21B: howto manager. (line 1860)
+* BFD_RELOC_IA64_PCREL21BI: howto manager. (line 1861)
+* BFD_RELOC_IA64_PCREL21F: howto manager. (line 1863)
+* BFD_RELOC_IA64_PCREL21M: howto manager. (line 1862)
+* BFD_RELOC_IA64_PCREL22: howto manager. (line 1864)
+* BFD_RELOC_IA64_PCREL32LSB: howto manager. (line 1868)
+* BFD_RELOC_IA64_PCREL32MSB: howto manager. (line 1867)
+* BFD_RELOC_IA64_PCREL60B: howto manager. (line 1865)
+* BFD_RELOC_IA64_PCREL64I: howto manager. (line 1866)
+* BFD_RELOC_IA64_PCREL64LSB: howto manager. (line 1870)
+* BFD_RELOC_IA64_PCREL64MSB: howto manager. (line 1869)
+* BFD_RELOC_IA64_PLTOFF22: howto manager. (line 1851)
+* BFD_RELOC_IA64_PLTOFF64I: howto manager. (line 1852)
+* BFD_RELOC_IA64_PLTOFF64LSB: howto manager. (line 1854)
+* BFD_RELOC_IA64_PLTOFF64MSB: howto manager. (line 1853)
+* BFD_RELOC_IA64_REL32LSB: howto manager. (line 1886)
+* BFD_RELOC_IA64_REL32MSB: howto manager. (line 1885)
+* BFD_RELOC_IA64_REL64LSB: howto manager. (line 1888)
+* BFD_RELOC_IA64_REL64MSB: howto manager. (line 1887)
+* BFD_RELOC_IA64_SECREL32LSB: howto manager. (line 1882)
+* BFD_RELOC_IA64_SECREL32MSB: howto manager. (line 1881)
+* BFD_RELOC_IA64_SECREL64LSB: howto manager. (line 1884)
+* BFD_RELOC_IA64_SECREL64MSB: howto manager. (line 1883)
+* BFD_RELOC_IA64_SEGREL32LSB: howto manager. (line 1878)
+* BFD_RELOC_IA64_SEGREL32MSB: howto manager. (line 1877)
+* BFD_RELOC_IA64_SEGREL64LSB: howto manager. (line 1880)
+* BFD_RELOC_IA64_SEGREL64MSB: howto manager. (line 1879)
+* BFD_RELOC_IA64_TPREL14: howto manager. (line 1898)
+* BFD_RELOC_IA64_TPREL22: howto manager. (line 1899)
+* BFD_RELOC_IA64_TPREL64I: howto manager. (line 1900)
+* BFD_RELOC_IA64_TPREL64LSB: howto manager. (line 1902)
+* BFD_RELOC_IA64_TPREL64MSB: howto manager. (line 1901)
+* BFD_RELOC_IP2K_ADDR16CJP: howto manager. (line 1788)
+* BFD_RELOC_IP2K_BANK: howto manager. (line 1785)
+* BFD_RELOC_IP2K_EX8DATA: howto manager. (line 1796)
+* BFD_RELOC_IP2K_FR9: howto manager. (line 1782)
+* BFD_RELOC_IP2K_FR_OFFSET: howto manager. (line 1809)
+* BFD_RELOC_IP2K_HI8DATA: howto manager. (line 1795)
+* BFD_RELOC_IP2K_HI8INSN: howto manager. (line 1800)
+* BFD_RELOC_IP2K_LO8DATA: howto manager. (line 1794)
+* BFD_RELOC_IP2K_LO8INSN: howto manager. (line 1799)
+* BFD_RELOC_IP2K_PAGE3: howto manager. (line 1791)
+* BFD_RELOC_IP2K_PC_SKIP: howto manager. (line 1803)
+* BFD_RELOC_IP2K_TEXT: howto manager. (line 1806)
+* BFD_RELOC_IQ2000_OFFSET_16: howto manager. (line 2205)
+* BFD_RELOC_IQ2000_OFFSET_21: howto manager. (line 2206)
+* BFD_RELOC_IQ2000_UHI16: howto manager. (line 2207)
+* BFD_RELOC_LM32_16_GOT: howto manager. (line 2312)
+* BFD_RELOC_LM32_BRANCH: howto manager. (line 2311)
+* BFD_RELOC_LM32_CALL: howto manager. (line 2310)
+* BFD_RELOC_LM32_COPY: howto manager. (line 2315)
+* BFD_RELOC_LM32_GLOB_DAT: howto manager. (line 2316)
+* BFD_RELOC_LM32_GOTOFF_HI16: howto manager. (line 2313)
+* BFD_RELOC_LM32_GOTOFF_LO16: howto manager. (line 2314)
+* BFD_RELOC_LM32_JMP_SLOT: howto manager. (line 2317)
+* BFD_RELOC_LM32_RELATIVE: howto manager. (line 2318)
* BFD_RELOC_LO10: howto manager. (line 117)
* BFD_RELOC_LO16: howto manager. (line 353)
* 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_PLTOFF: howto manager. (line 68)
-* BFD_RELOC_M32C_HI8: howto manager. (line 1129)
-* BFD_RELOC_M32C_RL_1ADDR: howto manager. (line 1131)
-* BFD_RELOC_M32C_RL_2ADDR: howto manager. (line 1132)
-* BFD_RELOC_M32C_RL_JUMP: howto manager. (line 1130)
-* BFD_RELOC_M32R_10_PCREL: howto manager. (line 1139)
-* BFD_RELOC_M32R_18_PCREL: howto manager. (line 1143)
-* BFD_RELOC_M32R_24: howto manager. (line 1135)
-* BFD_RELOC_M32R_26_PCREL: howto manager. (line 1146)
-* BFD_RELOC_M32R_26_PLTREL: howto manager. (line 1165)
-* BFD_RELOC_M32R_COPY: howto manager. (line 1166)
-* BFD_RELOC_M32R_GLOB_DAT: howto manager. (line 1167)
-* BFD_RELOC_M32R_GOT16_HI_SLO: howto manager. (line 1176)
-* BFD_RELOC_M32R_GOT16_HI_ULO: howto manager. (line 1175)
-* BFD_RELOC_M32R_GOT16_LO: howto manager. (line 1177)
-* BFD_RELOC_M32R_GOT24: howto manager. (line 1164)
-* BFD_RELOC_M32R_GOTOFF: howto manager. (line 1170)
-* BFD_RELOC_M32R_GOTOFF_HI_SLO: howto manager. (line 1172)
-* BFD_RELOC_M32R_GOTOFF_HI_ULO: howto manager. (line 1171)
-* BFD_RELOC_M32R_GOTOFF_LO: howto manager. (line 1173)
-* BFD_RELOC_M32R_GOTPC24: howto manager. (line 1174)
-* BFD_RELOC_M32R_GOTPC_HI_SLO: howto manager. (line 1179)
-* BFD_RELOC_M32R_GOTPC_HI_ULO: howto manager. (line 1178)
-* BFD_RELOC_M32R_GOTPC_LO: howto manager. (line 1180)
-* BFD_RELOC_M32R_HI16_SLO: howto manager. (line 1153)
-* BFD_RELOC_M32R_HI16_ULO: howto manager. (line 1149)
-* BFD_RELOC_M32R_JMP_SLOT: howto manager. (line 1168)
-* BFD_RELOC_M32R_LO16: howto manager. (line 1157)
-* BFD_RELOC_M32R_RELATIVE: howto manager. (line 1169)
-* BFD_RELOC_M32R_SDA16: howto manager. (line 1160)
-* BFD_RELOC_M68HC11_24: howto manager. (line 1831)
-* BFD_RELOC_M68HC11_3B: howto manager. (line 1806)
-* BFD_RELOC_M68HC11_HI8: howto manager. (line 1798)
-* BFD_RELOC_M68HC11_LO16: howto manager. (line 1820)
-* BFD_RELOC_M68HC11_LO8: howto manager. (line 1802)
-* BFD_RELOC_M68HC11_PAGE: howto manager. (line 1826)
-* BFD_RELOC_M68HC11_RL_GROUP: howto manager. (line 1815)
-* BFD_RELOC_M68HC11_RL_JUMP: howto manager. (line 1809)
-* BFD_RELOC_M68HC12_5B: howto manager. (line 1837)
-* BFD_RELOC_MACH_O_PAIR: howto manager. (line 2206)
-* BFD_RELOC_MACH_O_SECTDIFF: howto manager. (line 2202)
-* BFD_RELOC_MACH_O_X86_64_BRANCH32: howto manager. (line 2209)
-* BFD_RELOC_MACH_O_X86_64_BRANCH8: howto manager. (line 2210)
-* BFD_RELOC_MACH_O_X86_64_GOT: howto manager. (line 2214)
-* BFD_RELOC_MACH_O_X86_64_GOT_LOAD: howto manager. (line 2217)
-* BFD_RELOC_MACH_O_X86_64_PCREL32_1: howto manager. (line 2227)
-* BFD_RELOC_MACH_O_X86_64_PCREL32_2: howto manager. (line 2230)
-* BFD_RELOC_MACH_O_X86_64_PCREL32_4: howto manager. (line 2233)
-* BFD_RELOC_MACH_O_X86_64_SUBTRACTOR32: howto manager. (line 2221)
-* BFD_RELOC_MACH_O_X86_64_SUBTRACTOR64: howto manager. (line 2224)
-* BFD_RELOC_MCORE_PCREL_32: howto manager. (line 1320)
-* BFD_RELOC_MCORE_PCREL_IMM11BY2: howto manager. (line 1318)
-* BFD_RELOC_MCORE_PCREL_IMM4BY2: howto manager. (line 1319)
-* BFD_RELOC_MCORE_PCREL_IMM8BY4: howto manager. (line 1317)
-* BFD_RELOC_MCORE_PCREL_JSR_IMM11BY2: howto manager. (line 1321)
-* BFD_RELOC_MCORE_RVA: howto manager. (line 1322)
-* BFD_RELOC_MEP_16: howto manager. (line 1326)
-* BFD_RELOC_MEP_32: howto manager. (line 1327)
-* BFD_RELOC_MEP_8: howto manager. (line 1325)
-* BFD_RELOC_MEP_ADDR24A4: howto manager. (line 1342)
-* BFD_RELOC_MEP_GNU_VTENTRY: howto manager. (line 1344)
-* BFD_RELOC_MEP_GNU_VTINHERIT: howto manager. (line 1343)
-* BFD_RELOC_MEP_GPREL: howto manager. (line 1336)
-* BFD_RELOC_MEP_HI16S: howto manager. (line 1335)
-* BFD_RELOC_MEP_HI16U: howto manager. (line 1334)
-* BFD_RELOC_MEP_LOW16: howto manager. (line 1333)
-* BFD_RELOC_MEP_PCABS24A2: howto manager. (line 1332)
-* BFD_RELOC_MEP_PCREL12A2: howto manager. (line 1329)
-* BFD_RELOC_MEP_PCREL17A2: howto manager. (line 1330)
-* BFD_RELOC_MEP_PCREL24A2: howto manager. (line 1331)
-* BFD_RELOC_MEP_PCREL8A2: howto manager. (line 1328)
-* BFD_RELOC_MEP_TPREL: howto manager. (line 1337)
-* BFD_RELOC_MEP_TPREL7: howto manager. (line 1338)
-* BFD_RELOC_MEP_TPREL7A2: howto manager. (line 1339)
-* BFD_RELOC_MEP_TPREL7A4: howto manager. (line 1340)
-* BFD_RELOC_MEP_UIMM24: howto manager. (line 1341)
-* BFD_RELOC_MICROBLAZE_32_GOTOFF: howto manager. (line 2280)
-* BFD_RELOC_MICROBLAZE_32_LO: howto manager. (line 2236)
-* BFD_RELOC_MICROBLAZE_32_LO_PCREL: howto manager. (line 2240)
-* BFD_RELOC_MICROBLAZE_32_ROSDA: howto manager. (line 2244)
-* BFD_RELOC_MICROBLAZE_32_RWSDA: howto manager. (line 2248)
-* BFD_RELOC_MICROBLAZE_32_SYM_OP_SYM: howto manager. (line 2252)
-* BFD_RELOC_MICROBLAZE_64_GOT: howto manager. (line 2266)
-* BFD_RELOC_MICROBLAZE_64_GOTOFF: howto manager. (line 2275)
-* BFD_RELOC_MICROBLAZE_64_GOTPC: howto manager. (line 2261)
-* BFD_RELOC_MICROBLAZE_64_NONE: howto manager. (line 2256)
-* BFD_RELOC_MICROBLAZE_64_PLT: howto manager. (line 2270)
-* BFD_RELOC_MICROBLAZE_COPY: howto manager. (line 2284)
+* BFD_RELOC_M32C_HI8: howto manager. (line 1147)
+* BFD_RELOC_M32C_RL_1ADDR: howto manager. (line 1149)
+* BFD_RELOC_M32C_RL_2ADDR: howto manager. (line 1150)
+* BFD_RELOC_M32C_RL_JUMP: howto manager. (line 1148)
+* BFD_RELOC_M32R_10_PCREL: howto manager. (line 1157)
+* BFD_RELOC_M32R_18_PCREL: howto manager. (line 1161)
+* BFD_RELOC_M32R_24: howto manager. (line 1153)
+* BFD_RELOC_M32R_26_PCREL: howto manager. (line 1164)
+* BFD_RELOC_M32R_26_PLTREL: howto manager. (line 1183)
+* BFD_RELOC_M32R_COPY: howto manager. (line 1184)
+* BFD_RELOC_M32R_GLOB_DAT: howto manager. (line 1185)
+* BFD_RELOC_M32R_GOT16_HI_SLO: howto manager. (line 1194)
+* BFD_RELOC_M32R_GOT16_HI_ULO: howto manager. (line 1193)
+* BFD_RELOC_M32R_GOT16_LO: howto manager. (line 1195)
+* BFD_RELOC_M32R_GOT24: howto manager. (line 1182)
+* BFD_RELOC_M32R_GOTOFF: howto manager. (line 1188)
+* BFD_RELOC_M32R_GOTOFF_HI_SLO: howto manager. (line 1190)
+* BFD_RELOC_M32R_GOTOFF_HI_ULO: howto manager. (line 1189)
+* BFD_RELOC_M32R_GOTOFF_LO: howto manager. (line 1191)
+* BFD_RELOC_M32R_GOTPC24: howto manager. (line 1192)
+* BFD_RELOC_M32R_GOTPC_HI_SLO: howto manager. (line 1197)
+* BFD_RELOC_M32R_GOTPC_HI_ULO: howto manager. (line 1196)
+* BFD_RELOC_M32R_GOTPC_LO: howto manager. (line 1198)
+* BFD_RELOC_M32R_HI16_SLO: howto manager. (line 1171)
+* BFD_RELOC_M32R_HI16_ULO: howto manager. (line 1167)
+* BFD_RELOC_M32R_JMP_SLOT: howto manager. (line 1186)
+* BFD_RELOC_M32R_LO16: howto manager. (line 1175)
+* BFD_RELOC_M32R_RELATIVE: howto manager. (line 1187)
+* BFD_RELOC_M32R_SDA16: howto manager. (line 1178)
+* BFD_RELOC_M68HC11_24: howto manager. (line 1950)
+* BFD_RELOC_M68HC11_3B: howto manager. (line 1925)
+* BFD_RELOC_M68HC11_HI8: howto manager. (line 1917)
+* BFD_RELOC_M68HC11_LO16: howto manager. (line 1939)
+* BFD_RELOC_M68HC11_LO8: howto manager. (line 1921)
+* BFD_RELOC_M68HC11_PAGE: howto manager. (line 1945)
+* BFD_RELOC_M68HC11_RL_GROUP: howto manager. (line 1934)
+* BFD_RELOC_M68HC11_RL_JUMP: howto manager. (line 1928)
+* BFD_RELOC_M68HC12_5B: howto manager. (line 1956)
+* BFD_RELOC_MACH_O_PAIR: howto manager. (line 2325)
+* BFD_RELOC_MACH_O_SECTDIFF: howto manager. (line 2321)
+* BFD_RELOC_MACH_O_X86_64_BRANCH32: howto manager. (line 2328)
+* BFD_RELOC_MACH_O_X86_64_BRANCH8: howto manager. (line 2329)
+* BFD_RELOC_MACH_O_X86_64_GOT: howto manager. (line 2333)
+* BFD_RELOC_MACH_O_X86_64_GOT_LOAD: howto manager. (line 2336)
+* BFD_RELOC_MACH_O_X86_64_PCREL32_1: howto manager. (line 2346)
+* BFD_RELOC_MACH_O_X86_64_PCREL32_2: howto manager. (line 2349)
+* BFD_RELOC_MACH_O_X86_64_PCREL32_4: howto manager. (line 2352)
+* BFD_RELOC_MACH_O_X86_64_SUBTRACTOR32: howto manager. (line 2340)
+* BFD_RELOC_MACH_O_X86_64_SUBTRACTOR64: howto manager. (line 2343)
+* BFD_RELOC_MCORE_PCREL_32: howto manager. (line 1436)
+* BFD_RELOC_MCORE_PCREL_IMM11BY2: howto manager. (line 1434)
+* BFD_RELOC_MCORE_PCREL_IMM4BY2: howto manager. (line 1435)
+* BFD_RELOC_MCORE_PCREL_IMM8BY4: howto manager. (line 1433)
+* BFD_RELOC_MCORE_PCREL_JSR_IMM11BY2: howto manager. (line 1437)
+* BFD_RELOC_MCORE_RVA: howto manager. (line 1438)
+* BFD_RELOC_MEP_16: howto manager. (line 1442)
+* BFD_RELOC_MEP_32: howto manager. (line 1443)
+* BFD_RELOC_MEP_8: howto manager. (line 1441)
+* BFD_RELOC_MEP_ADDR24A4: howto manager. (line 1458)
+* BFD_RELOC_MEP_GNU_VTENTRY: howto manager. (line 1460)
+* BFD_RELOC_MEP_GNU_VTINHERIT: howto manager. (line 1459)
+* BFD_RELOC_MEP_GPREL: howto manager. (line 1452)
+* BFD_RELOC_MEP_HI16S: howto manager. (line 1451)
+* BFD_RELOC_MEP_HI16U: howto manager. (line 1450)
+* BFD_RELOC_MEP_LOW16: howto manager. (line 1449)
+* BFD_RELOC_MEP_PCABS24A2: howto manager. (line 1448)
+* BFD_RELOC_MEP_PCREL12A2: howto manager. (line 1445)
+* BFD_RELOC_MEP_PCREL17A2: howto manager. (line 1446)
+* BFD_RELOC_MEP_PCREL24A2: howto manager. (line 1447)
+* BFD_RELOC_MEP_PCREL8A2: howto manager. (line 1444)
+* BFD_RELOC_MEP_TPREL: howto manager. (line 1453)
+* BFD_RELOC_MEP_TPREL7: howto manager. (line 1454)
+* BFD_RELOC_MEP_TPREL7A2: howto manager. (line 1455)
+* BFD_RELOC_MEP_TPREL7A4: howto manager. (line 1456)
+* BFD_RELOC_MEP_UIMM24: howto manager. (line 1457)
+* BFD_RELOC_MICROBLAZE_32_GOTOFF: howto manager. (line 2399)
+* BFD_RELOC_MICROBLAZE_32_LO: howto manager. (line 2355)
+* BFD_RELOC_MICROBLAZE_32_LO_PCREL: howto manager. (line 2359)
+* BFD_RELOC_MICROBLAZE_32_ROSDA: howto manager. (line 2363)
+* BFD_RELOC_MICROBLAZE_32_RWSDA: howto manager. (line 2367)
+* BFD_RELOC_MICROBLAZE_32_SYM_OP_SYM: howto manager. (line 2371)
+* BFD_RELOC_MICROBLAZE_64_GOT: howto manager. (line 2385)
+* BFD_RELOC_MICROBLAZE_64_GOTOFF: howto manager. (line 2394)
+* BFD_RELOC_MICROBLAZE_64_GOTPC: howto manager. (line 2380)
+* BFD_RELOC_MICROBLAZE_64_NONE: howto manager. (line 2375)
+* BFD_RELOC_MICROBLAZE_64_PLT: howto manager. (line 2389)
+* BFD_RELOC_MICROBLAZE_COPY: howto manager. (line 2403)
* BFD_RELOC_MIPS16_CALL16: howto manager. (line 366)
* BFD_RELOC_MIPS16_GOT16: howto manager. (line 365)
* BFD_RELOC_MIPS16_GPREL: howto manager. (line 341)
@@ -10771,32 +11000,32 @@ BFD Index
* BFD_RELOC_MIPS_TLS_TPREL64: howto manager. (line 416)
* BFD_RELOC_MIPS_TLS_TPREL_HI16: howto manager. (line 417)
* BFD_RELOC_MIPS_TLS_TPREL_LO16: howto manager. (line 418)
-* BFD_RELOC_MMIX_ADDR19: howto manager. (line 1373)
-* BFD_RELOC_MMIX_ADDR27: howto manager. (line 1377)
-* BFD_RELOC_MMIX_BASE_PLUS_OFFSET: howto manager. (line 1389)
-* BFD_RELOC_MMIX_CBRANCH: howto manager. (line 1353)
-* BFD_RELOC_MMIX_CBRANCH_1: howto manager. (line 1355)
-* BFD_RELOC_MMIX_CBRANCH_2: howto manager. (line 1356)
-* BFD_RELOC_MMIX_CBRANCH_3: howto manager. (line 1357)
-* BFD_RELOC_MMIX_CBRANCH_J: howto manager. (line 1354)
-* BFD_RELOC_MMIX_GETA: howto manager. (line 1347)
-* BFD_RELOC_MMIX_GETA_1: howto manager. (line 1348)
-* BFD_RELOC_MMIX_GETA_2: howto manager. (line 1349)
-* BFD_RELOC_MMIX_GETA_3: howto manager. (line 1350)
-* BFD_RELOC_MMIX_JMP: howto manager. (line 1367)
-* BFD_RELOC_MMIX_JMP_1: howto manager. (line 1368)
-* BFD_RELOC_MMIX_JMP_2: howto manager. (line 1369)
-* BFD_RELOC_MMIX_JMP_3: howto manager. (line 1370)
-* BFD_RELOC_MMIX_LOCAL: howto manager. (line 1393)
-* BFD_RELOC_MMIX_PUSHJ: howto manager. (line 1360)
-* BFD_RELOC_MMIX_PUSHJ_1: howto manager. (line 1361)
-* BFD_RELOC_MMIX_PUSHJ_2: howto manager. (line 1362)
-* BFD_RELOC_MMIX_PUSHJ_3: howto manager. (line 1363)
-* BFD_RELOC_MMIX_PUSHJ_STUBBABLE: howto manager. (line 1364)
-* BFD_RELOC_MMIX_REG: howto manager. (line 1385)
-* BFD_RELOC_MMIX_REG_OR_BYTE: howto manager. (line 1381)
-* BFD_RELOC_MN10300_16_PCREL: howto manager. (line 1255)
-* BFD_RELOC_MN10300_32_PCREL: howto manager. (line 1251)
+* BFD_RELOC_MMIX_ADDR19: howto manager. (line 1489)
+* BFD_RELOC_MMIX_ADDR27: howto manager. (line 1493)
+* BFD_RELOC_MMIX_BASE_PLUS_OFFSET: howto manager. (line 1505)
+* BFD_RELOC_MMIX_CBRANCH: howto manager. (line 1469)
+* BFD_RELOC_MMIX_CBRANCH_1: howto manager. (line 1471)
+* BFD_RELOC_MMIX_CBRANCH_2: howto manager. (line 1472)
+* BFD_RELOC_MMIX_CBRANCH_3: howto manager. (line 1473)
+* BFD_RELOC_MMIX_CBRANCH_J: howto manager. (line 1470)
+* BFD_RELOC_MMIX_GETA: howto manager. (line 1463)
+* BFD_RELOC_MMIX_GETA_1: howto manager. (line 1464)
+* BFD_RELOC_MMIX_GETA_2: howto manager. (line 1465)
+* BFD_RELOC_MMIX_GETA_3: howto manager. (line 1466)
+* BFD_RELOC_MMIX_JMP: howto manager. (line 1483)
+* BFD_RELOC_MMIX_JMP_1: howto manager. (line 1484)
+* BFD_RELOC_MMIX_JMP_2: howto manager. (line 1485)
+* BFD_RELOC_MMIX_JMP_3: howto manager. (line 1486)
+* BFD_RELOC_MMIX_LOCAL: howto manager. (line 1509)
+* BFD_RELOC_MMIX_PUSHJ: howto manager. (line 1476)
+* BFD_RELOC_MMIX_PUSHJ_1: howto manager. (line 1477)
+* BFD_RELOC_MMIX_PUSHJ_2: howto manager. (line 1478)
+* BFD_RELOC_MMIX_PUSHJ_3: howto manager. (line 1479)
+* BFD_RELOC_MMIX_PUSHJ_STUBBABLE: howto manager. (line 1480)
+* BFD_RELOC_MMIX_REG: howto manager. (line 1501)
+* BFD_RELOC_MMIX_REG_OR_BYTE: howto manager. (line 1497)
+* BFD_RELOC_MN10300_16_PCREL: howto manager. (line 1339)
+* BFD_RELOC_MN10300_32_PCREL: howto manager. (line 1335)
* BFD_RELOC_MN10300_ALIGN: howto manager. (line 501)
* BFD_RELOC_MN10300_COPY: howto manager. (line 484)
* BFD_RELOC_MN10300_GLOB_DAT: howto manager. (line 487)
@@ -10808,19 +11037,19 @@ BFD Index
* BFD_RELOC_MN10300_RELATIVE: howto manager. (line 493)
* BFD_RELOC_MN10300_SYM_DIFF: howto manager. (line 496)
* BFD_RELOC_MOXIE_10_PCREL: howto manager. (line 425)
-* BFD_RELOC_MSP430_10_PCREL: howto manager. (line 2077)
-* BFD_RELOC_MSP430_16: howto manager. (line 2079)
-* BFD_RELOC_MSP430_16_BYTE: howto manager. (line 2081)
-* BFD_RELOC_MSP430_16_PCREL: howto manager. (line 2078)
-* BFD_RELOC_MSP430_16_PCREL_BYTE: howto manager. (line 2080)
-* BFD_RELOC_MSP430_2X_PCREL: howto manager. (line 2082)
-* BFD_RELOC_MSP430_RL_PCREL: howto manager. (line 2083)
-* BFD_RELOC_MT_GNU_VTENTRY: howto manager. (line 2071)
-* BFD_RELOC_MT_GNU_VTINHERIT: howto manager. (line 2068)
-* BFD_RELOC_MT_HI16: howto manager. (line 2062)
-* BFD_RELOC_MT_LO16: howto manager. (line 2065)
-* BFD_RELOC_MT_PC16: howto manager. (line 2059)
-* BFD_RELOC_MT_PCINSN8: howto manager. (line 2074)
+* BFD_RELOC_MSP430_10_PCREL: howto manager. (line 2196)
+* BFD_RELOC_MSP430_16: howto manager. (line 2198)
+* BFD_RELOC_MSP430_16_BYTE: howto manager. (line 2200)
+* BFD_RELOC_MSP430_16_PCREL: howto manager. (line 2197)
+* BFD_RELOC_MSP430_16_PCREL_BYTE: howto manager. (line 2199)
+* BFD_RELOC_MSP430_2X_PCREL: howto manager. (line 2201)
+* BFD_RELOC_MSP430_RL_PCREL: howto manager. (line 2202)
+* BFD_RELOC_MT_GNU_VTENTRY: howto manager. (line 2190)
+* BFD_RELOC_MT_GNU_VTINHERIT: howto manager. (line 2187)
+* BFD_RELOC_MT_HI16: howto manager. (line 2181)
+* BFD_RELOC_MT_LO16: howto manager. (line 2184)
+* BFD_RELOC_MT_PC16: howto manager. (line 2178)
+* BFD_RELOC_MT_PCINSN8: howto manager. (line 2193)
* BFD_RELOC_NONE: howto manager. (line 131)
* BFD_RELOC_NS32K_DISP_16: howto manager. (line 567)
* BFD_RELOC_NS32K_DISP_16_PCREL: howto manager. (line 570)
@@ -10834,8 +11063,8 @@ BFD Index
* BFD_RELOC_NS32K_IMM_32_PCREL: howto manager. (line 565)
* BFD_RELOC_NS32K_IMM_8: howto manager. (line 560)
* BFD_RELOC_NS32K_IMM_8_PCREL: howto manager. (line 563)
-* BFD_RELOC_OPENRISC_ABS_26: howto manager. (line 2028)
-* BFD_RELOC_OPENRISC_REL_26: howto manager. (line 2029)
+* BFD_RELOC_OPENRISC_ABS_26: howto manager. (line 2147)
+* BFD_RELOC_OPENRISC_REL_26: howto manager. (line 2148)
* BFD_RELOC_PDP11_DISP_6_PCREL: howto manager. (line 575)
* BFD_RELOC_PDP11_DISP_8_PCREL: howto manager. (line 574)
* BFD_RELOC_PJ_CODE_DIR16: howto manager. (line 580)
@@ -10939,135 +11168,145 @@ BFD Index
* BFD_RELOC_PPC_TPREL16_HA: howto manager. (line 648)
* BFD_RELOC_PPC_TPREL16_HI: howto manager. (line 647)
* BFD_RELOC_PPC_TPREL16_LO: howto manager. (line 646)
-* BFD_RELOC_RELC: howto manager. (line 2045)
+* BFD_RELOC_RELC: howto manager. (line 2164)
* BFD_RELOC_RVA: howto manager. (line 100)
-* BFD_RELOC_RX_16_OP: howto manager. (line 1504)
-* BFD_RELOC_RX_16U: howto manager. (line 1508)
-* BFD_RELOC_RX_24_OP: howto manager. (line 1505)
-* BFD_RELOC_RX_24U: howto manager. (line 1509)
-* BFD_RELOC_RX_32_OP: howto manager. (line 1506)
-* BFD_RELOC_RX_8U: howto manager. (line 1507)
-* BFD_RELOC_RX_ABS16: howto manager. (line 1518)
-* BFD_RELOC_RX_ABS16U: howto manager. (line 1520)
-* BFD_RELOC_RX_ABS16UL: howto manager. (line 1522)
-* BFD_RELOC_RX_ABS16UW: howto manager. (line 1521)
-* BFD_RELOC_RX_ABS32: howto manager. (line 1519)
-* BFD_RELOC_RX_ABS8: howto manager. (line 1517)
-* BFD_RELOC_RX_DIFF: howto manager. (line 1511)
-* BFD_RELOC_RX_DIR3U_PCREL: howto manager. (line 1510)
-* BFD_RELOC_RX_GPRELB: howto manager. (line 1512)
-* BFD_RELOC_RX_GPRELL: howto manager. (line 1514)
-* BFD_RELOC_RX_GPRELW: howto manager. (line 1513)
-* BFD_RELOC_RX_NEG16: howto manager. (line 1501)
-* BFD_RELOC_RX_NEG24: howto manager. (line 1502)
-* BFD_RELOC_RX_NEG32: howto manager. (line 1503)
-* BFD_RELOC_RX_NEG8: howto manager. (line 1500)
-* BFD_RELOC_RX_OP_SUBTRACT: howto manager. (line 1516)
-* BFD_RELOC_RX_RELAX: howto manager. (line 1523)
-* BFD_RELOC_RX_SYM: howto manager. (line 1515)
-* BFD_RELOC_SCORE16_BRANCH: howto manager. (line 1651)
-* BFD_RELOC_SCORE16_JMP: howto manager. (line 1648)
-* BFD_RELOC_SCORE_BCMP: howto manager. (line 1654)
-* BFD_RELOC_SCORE_BRANCH: howto manager. (line 1639)
-* BFD_RELOC_SCORE_CALL15: howto manager. (line 1659)
-* BFD_RELOC_SCORE_DUMMY2: howto manager. (line 1635)
-* BFD_RELOC_SCORE_DUMMY_HI16: howto manager. (line 1660)
-* BFD_RELOC_SCORE_GOT15: howto manager. (line 1657)
-* BFD_RELOC_SCORE_GOT_LO16: howto manager. (line 1658)
-* BFD_RELOC_SCORE_GPREL15: howto manager. (line 1632)
-* BFD_RELOC_SCORE_IMM30: howto manager. (line 1642)
-* BFD_RELOC_SCORE_IMM32: howto manager. (line 1645)
-* BFD_RELOC_SCORE_JMP: howto manager. (line 1636)
-* BFD_RELOC_SH_ALIGN: howto manager. (line 865)
-* BFD_RELOC_SH_CODE: howto manager. (line 866)
-* BFD_RELOC_SH_COPY: howto manager. (line 871)
-* BFD_RELOC_SH_COPY64: howto manager. (line 896)
-* BFD_RELOC_SH_COUNT: howto manager. (line 864)
-* BFD_RELOC_SH_DATA: howto manager. (line 867)
-* BFD_RELOC_SH_DISP12: howto manager. (line 847)
-* BFD_RELOC_SH_DISP12BY2: howto manager. (line 848)
-* BFD_RELOC_SH_DISP12BY4: howto manager. (line 849)
-* BFD_RELOC_SH_DISP12BY8: howto manager. (line 850)
-* BFD_RELOC_SH_DISP20: howto manager. (line 851)
-* BFD_RELOC_SH_DISP20BY8: howto manager. (line 852)
-* BFD_RELOC_SH_GLOB_DAT: howto manager. (line 872)
-* BFD_RELOC_SH_GLOB_DAT64: howto manager. (line 897)
-* BFD_RELOC_SH_GOT10BY4: howto manager. (line 900)
-* BFD_RELOC_SH_GOT10BY8: howto manager. (line 901)
-* BFD_RELOC_SH_GOT_HI16: howto manager. (line 879)
-* BFD_RELOC_SH_GOT_LOW16: howto manager. (line 876)
-* BFD_RELOC_SH_GOT_MEDHI16: howto manager. (line 878)
-* BFD_RELOC_SH_GOT_MEDLOW16: howto manager. (line 877)
-* BFD_RELOC_SH_GOTOFF_HI16: howto manager. (line 891)
-* BFD_RELOC_SH_GOTOFF_LOW16: howto manager. (line 888)
-* BFD_RELOC_SH_GOTOFF_MEDHI16: howto manager. (line 890)
-* BFD_RELOC_SH_GOTOFF_MEDLOW16: howto manager. (line 889)
-* BFD_RELOC_SH_GOTPC: howto manager. (line 875)
-* BFD_RELOC_SH_GOTPC_HI16: howto manager. (line 895)
-* BFD_RELOC_SH_GOTPC_LOW16: howto manager. (line 892)
-* BFD_RELOC_SH_GOTPC_MEDHI16: howto manager. (line 894)
-* BFD_RELOC_SH_GOTPC_MEDLOW16: howto manager. (line 893)
-* BFD_RELOC_SH_GOTPLT10BY4: howto manager. (line 902)
-* BFD_RELOC_SH_GOTPLT10BY8: howto manager. (line 903)
-* BFD_RELOC_SH_GOTPLT32: howto manager. (line 904)
-* BFD_RELOC_SH_GOTPLT_HI16: howto manager. (line 883)
-* BFD_RELOC_SH_GOTPLT_LOW16: howto manager. (line 880)
-* BFD_RELOC_SH_GOTPLT_MEDHI16: howto manager. (line 882)
-* BFD_RELOC_SH_GOTPLT_MEDLOW16: howto manager. (line 881)
-* BFD_RELOC_SH_IMM3: howto manager. (line 845)
-* BFD_RELOC_SH_IMM3U: howto manager. (line 846)
-* BFD_RELOC_SH_IMM4: howto manager. (line 853)
-* BFD_RELOC_SH_IMM4BY2: howto manager. (line 854)
-* BFD_RELOC_SH_IMM4BY4: howto manager. (line 855)
-* BFD_RELOC_SH_IMM8: howto manager. (line 856)
-* BFD_RELOC_SH_IMM8BY2: howto manager. (line 857)
-* BFD_RELOC_SH_IMM8BY4: howto manager. (line 858)
-* BFD_RELOC_SH_IMM_HI16: howto manager. (line 922)
-* BFD_RELOC_SH_IMM_HI16_PCREL: howto manager. (line 923)
-* BFD_RELOC_SH_IMM_LOW16: howto manager. (line 916)
-* BFD_RELOC_SH_IMM_LOW16_PCREL: howto manager. (line 917)
-* BFD_RELOC_SH_IMM_MEDHI16: howto manager. (line 920)
-* BFD_RELOC_SH_IMM_MEDHI16_PCREL: howto manager. (line 921)
-* BFD_RELOC_SH_IMM_MEDLOW16: howto manager. (line 918)
-* BFD_RELOC_SH_IMM_MEDLOW16_PCREL: howto manager. (line 919)
-* BFD_RELOC_SH_IMMS10: howto manager. (line 910)
-* BFD_RELOC_SH_IMMS10BY2: howto manager. (line 911)
-* BFD_RELOC_SH_IMMS10BY4: howto manager. (line 912)
-* BFD_RELOC_SH_IMMS10BY8: howto manager. (line 913)
-* BFD_RELOC_SH_IMMS16: howto manager. (line 914)
-* BFD_RELOC_SH_IMMS6: howto manager. (line 907)
-* BFD_RELOC_SH_IMMS6BY32: howto manager. (line 908)
-* BFD_RELOC_SH_IMMU16: howto manager. (line 915)
-* BFD_RELOC_SH_IMMU5: howto manager. (line 906)
-* BFD_RELOC_SH_IMMU6: howto manager. (line 909)
-* BFD_RELOC_SH_JMP_SLOT: howto manager. (line 873)
-* BFD_RELOC_SH_JMP_SLOT64: howto manager. (line 898)
-* BFD_RELOC_SH_LABEL: howto manager. (line 868)
-* BFD_RELOC_SH_LOOP_END: howto manager. (line 870)
-* BFD_RELOC_SH_LOOP_START: howto manager. (line 869)
-* BFD_RELOC_SH_PCDISP12BY2: howto manager. (line 844)
-* BFD_RELOC_SH_PCDISP8BY2: howto manager. (line 843)
-* BFD_RELOC_SH_PCRELIMM8BY2: howto manager. (line 859)
-* BFD_RELOC_SH_PCRELIMM8BY4: howto manager. (line 860)
-* BFD_RELOC_SH_PLT_HI16: howto manager. (line 887)
-* BFD_RELOC_SH_PLT_LOW16: howto manager. (line 884)
-* BFD_RELOC_SH_PLT_MEDHI16: howto manager. (line 886)
-* BFD_RELOC_SH_PLT_MEDLOW16: howto manager. (line 885)
-* BFD_RELOC_SH_PT_16: howto manager. (line 924)
-* BFD_RELOC_SH_RELATIVE: howto manager. (line 874)
-* BFD_RELOC_SH_RELATIVE64: howto manager. (line 899)
-* BFD_RELOC_SH_SHMEDIA_CODE: howto manager. (line 905)
-* BFD_RELOC_SH_SWITCH16: howto manager. (line 861)
-* BFD_RELOC_SH_SWITCH32: howto manager. (line 862)
-* BFD_RELOC_SH_TLS_DTPMOD32: howto manager. (line 930)
-* BFD_RELOC_SH_TLS_DTPOFF32: howto manager. (line 931)
-* BFD_RELOC_SH_TLS_GD_32: howto manager. (line 925)
-* BFD_RELOC_SH_TLS_IE_32: howto manager. (line 928)
-* BFD_RELOC_SH_TLS_LD_32: howto manager. (line 926)
-* BFD_RELOC_SH_TLS_LDO_32: howto manager. (line 927)
-* BFD_RELOC_SH_TLS_LE_32: howto manager. (line 929)
-* BFD_RELOC_SH_TLS_TPOFF32: howto manager. (line 932)
-* BFD_RELOC_SH_USES: howto manager. (line 863)
+* BFD_RELOC_RX_16_OP: howto manager. (line 1620)
+* BFD_RELOC_RX_16U: howto manager. (line 1624)
+* BFD_RELOC_RX_24_OP: howto manager. (line 1621)
+* BFD_RELOC_RX_24U: howto manager. (line 1625)
+* BFD_RELOC_RX_32_OP: howto manager. (line 1622)
+* BFD_RELOC_RX_8U: howto manager. (line 1623)
+* BFD_RELOC_RX_ABS16: howto manager. (line 1635)
+* BFD_RELOC_RX_ABS16_REV: howto manager. (line 1636)
+* BFD_RELOC_RX_ABS16U: howto manager. (line 1639)
+* BFD_RELOC_RX_ABS16UL: howto manager. (line 1641)
+* BFD_RELOC_RX_ABS16UW: howto manager. (line 1640)
+* BFD_RELOC_RX_ABS32: howto manager. (line 1637)
+* BFD_RELOC_RX_ABS32_REV: howto manager. (line 1638)
+* BFD_RELOC_RX_ABS8: howto manager. (line 1634)
+* BFD_RELOC_RX_DIFF: howto manager. (line 1627)
+* BFD_RELOC_RX_DIR3U_PCREL: howto manager. (line 1626)
+* BFD_RELOC_RX_GPRELB: howto manager. (line 1628)
+* BFD_RELOC_RX_GPRELL: howto manager. (line 1630)
+* BFD_RELOC_RX_GPRELW: howto manager. (line 1629)
+* BFD_RELOC_RX_NEG16: howto manager. (line 1617)
+* BFD_RELOC_RX_NEG24: howto manager. (line 1618)
+* BFD_RELOC_RX_NEG32: howto manager. (line 1619)
+* BFD_RELOC_RX_NEG8: howto manager. (line 1616)
+* BFD_RELOC_RX_OP_NEG: howto manager. (line 1633)
+* BFD_RELOC_RX_OP_SUBTRACT: howto manager. (line 1632)
+* BFD_RELOC_RX_RELAX: howto manager. (line 1642)
+* BFD_RELOC_RX_SYM: howto manager. (line 1631)
+* BFD_RELOC_SCORE16_BRANCH: howto manager. (line 1770)
+* BFD_RELOC_SCORE16_JMP: howto manager. (line 1767)
+* BFD_RELOC_SCORE_BCMP: howto manager. (line 1773)
+* BFD_RELOC_SCORE_BRANCH: howto manager. (line 1758)
+* BFD_RELOC_SCORE_CALL15: howto manager. (line 1778)
+* BFD_RELOC_SCORE_DUMMY2: howto manager. (line 1754)
+* BFD_RELOC_SCORE_DUMMY_HI16: howto manager. (line 1779)
+* BFD_RELOC_SCORE_GOT15: howto manager. (line 1776)
+* BFD_RELOC_SCORE_GOT_LO16: howto manager. (line 1777)
+* BFD_RELOC_SCORE_GPREL15: howto manager. (line 1751)
+* BFD_RELOC_SCORE_IMM30: howto manager. (line 1761)
+* BFD_RELOC_SCORE_IMM32: howto manager. (line 1764)
+* BFD_RELOC_SCORE_JMP: howto manager. (line 1755)
+* BFD_RELOC_SH_ALIGN: howto manager. (line 876)
+* BFD_RELOC_SH_CODE: howto manager. (line 877)
+* BFD_RELOC_SH_COPY: howto manager. (line 882)
+* BFD_RELOC_SH_COPY64: howto manager. (line 907)
+* BFD_RELOC_SH_COUNT: howto manager. (line 875)
+* BFD_RELOC_SH_DATA: howto manager. (line 878)
+* BFD_RELOC_SH_DISP12: howto manager. (line 858)
+* BFD_RELOC_SH_DISP12BY2: howto manager. (line 859)
+* BFD_RELOC_SH_DISP12BY4: howto manager. (line 860)
+* BFD_RELOC_SH_DISP12BY8: howto manager. (line 861)
+* BFD_RELOC_SH_DISP20: howto manager. (line 862)
+* BFD_RELOC_SH_DISP20BY8: howto manager. (line 863)
+* BFD_RELOC_SH_FUNCDESC: howto manager. (line 950)
+* BFD_RELOC_SH_GLOB_DAT: howto manager. (line 883)
+* BFD_RELOC_SH_GLOB_DAT64: howto manager. (line 908)
+* BFD_RELOC_SH_GOT10BY4: howto manager. (line 911)
+* BFD_RELOC_SH_GOT10BY8: howto manager. (line 912)
+* BFD_RELOC_SH_GOT20: howto manager. (line 944)
+* BFD_RELOC_SH_GOT_HI16: howto manager. (line 890)
+* BFD_RELOC_SH_GOT_LOW16: howto manager. (line 887)
+* BFD_RELOC_SH_GOT_MEDHI16: howto manager. (line 889)
+* BFD_RELOC_SH_GOT_MEDLOW16: howto manager. (line 888)
+* BFD_RELOC_SH_GOTFUNCDESC: howto manager. (line 946)
+* BFD_RELOC_SH_GOTFUNCDESC20: howto manager. (line 947)
+* BFD_RELOC_SH_GOTOFF20: howto manager. (line 945)
+* BFD_RELOC_SH_GOTOFF_HI16: howto manager. (line 902)
+* BFD_RELOC_SH_GOTOFF_LOW16: howto manager. (line 899)
+* BFD_RELOC_SH_GOTOFF_MEDHI16: howto manager. (line 901)
+* BFD_RELOC_SH_GOTOFF_MEDLOW16: howto manager. (line 900)
+* BFD_RELOC_SH_GOTOFFFUNCDESC: howto manager. (line 948)
+* BFD_RELOC_SH_GOTOFFFUNCDESC20: howto manager. (line 949)
+* BFD_RELOC_SH_GOTPC: howto manager. (line 886)
+* BFD_RELOC_SH_GOTPC_HI16: howto manager. (line 906)
+* BFD_RELOC_SH_GOTPC_LOW16: howto manager. (line 903)
+* BFD_RELOC_SH_GOTPC_MEDHI16: howto manager. (line 905)
+* BFD_RELOC_SH_GOTPC_MEDLOW16: howto manager. (line 904)
+* BFD_RELOC_SH_GOTPLT10BY4: howto manager. (line 913)
+* BFD_RELOC_SH_GOTPLT10BY8: howto manager. (line 914)
+* BFD_RELOC_SH_GOTPLT32: howto manager. (line 915)
+* BFD_RELOC_SH_GOTPLT_HI16: howto manager. (line 894)
+* BFD_RELOC_SH_GOTPLT_LOW16: howto manager. (line 891)
+* BFD_RELOC_SH_GOTPLT_MEDHI16: howto manager. (line 893)
+* BFD_RELOC_SH_GOTPLT_MEDLOW16: howto manager. (line 892)
+* BFD_RELOC_SH_IMM3: howto manager. (line 856)
+* BFD_RELOC_SH_IMM3U: howto manager. (line 857)
+* BFD_RELOC_SH_IMM4: howto manager. (line 864)
+* BFD_RELOC_SH_IMM4BY2: howto manager. (line 865)
+* BFD_RELOC_SH_IMM4BY4: howto manager. (line 866)
+* BFD_RELOC_SH_IMM8: howto manager. (line 867)
+* BFD_RELOC_SH_IMM8BY2: howto manager. (line 868)
+* BFD_RELOC_SH_IMM8BY4: howto manager. (line 869)
+* BFD_RELOC_SH_IMM_HI16: howto manager. (line 933)
+* BFD_RELOC_SH_IMM_HI16_PCREL: howto manager. (line 934)
+* BFD_RELOC_SH_IMM_LOW16: howto manager. (line 927)
+* BFD_RELOC_SH_IMM_LOW16_PCREL: howto manager. (line 928)
+* BFD_RELOC_SH_IMM_MEDHI16: howto manager. (line 931)
+* BFD_RELOC_SH_IMM_MEDHI16_PCREL: howto manager. (line 932)
+* BFD_RELOC_SH_IMM_MEDLOW16: howto manager. (line 929)
+* BFD_RELOC_SH_IMM_MEDLOW16_PCREL: howto manager. (line 930)
+* BFD_RELOC_SH_IMMS10: howto manager. (line 921)
+* BFD_RELOC_SH_IMMS10BY2: howto manager. (line 922)
+* BFD_RELOC_SH_IMMS10BY4: howto manager. (line 923)
+* BFD_RELOC_SH_IMMS10BY8: howto manager. (line 924)
+* BFD_RELOC_SH_IMMS16: howto manager. (line 925)
+* BFD_RELOC_SH_IMMS6: howto manager. (line 918)
+* BFD_RELOC_SH_IMMS6BY32: howto manager. (line 919)
+* BFD_RELOC_SH_IMMU16: howto manager. (line 926)
+* BFD_RELOC_SH_IMMU5: howto manager. (line 917)
+* BFD_RELOC_SH_IMMU6: howto manager. (line 920)
+* BFD_RELOC_SH_JMP_SLOT: howto manager. (line 884)
+* BFD_RELOC_SH_JMP_SLOT64: howto manager. (line 909)
+* BFD_RELOC_SH_LABEL: howto manager. (line 879)
+* BFD_RELOC_SH_LOOP_END: howto manager. (line 881)
+* BFD_RELOC_SH_LOOP_START: howto manager. (line 880)
+* BFD_RELOC_SH_PCDISP12BY2: howto manager. (line 855)
+* BFD_RELOC_SH_PCDISP8BY2: howto manager. (line 854)
+* BFD_RELOC_SH_PCRELIMM8BY2: howto manager. (line 870)
+* BFD_RELOC_SH_PCRELIMM8BY4: howto manager. (line 871)
+* BFD_RELOC_SH_PLT_HI16: howto manager. (line 898)
+* BFD_RELOC_SH_PLT_LOW16: howto manager. (line 895)
+* BFD_RELOC_SH_PLT_MEDHI16: howto manager. (line 897)
+* BFD_RELOC_SH_PLT_MEDLOW16: howto manager. (line 896)
+* BFD_RELOC_SH_PT_16: howto manager. (line 935)
+* BFD_RELOC_SH_RELATIVE: howto manager. (line 885)
+* BFD_RELOC_SH_RELATIVE64: howto manager. (line 910)
+* BFD_RELOC_SH_SHMEDIA_CODE: howto manager. (line 916)
+* BFD_RELOC_SH_SWITCH16: howto manager. (line 872)
+* BFD_RELOC_SH_SWITCH32: howto manager. (line 873)
+* BFD_RELOC_SH_TLS_DTPMOD32: howto manager. (line 941)
+* BFD_RELOC_SH_TLS_DTPOFF32: howto manager. (line 942)
+* BFD_RELOC_SH_TLS_GD_32: howto manager. (line 936)
+* BFD_RELOC_SH_TLS_IE_32: howto manager. (line 939)
+* BFD_RELOC_SH_TLS_LD_32: howto manager. (line 937)
+* BFD_RELOC_SH_TLS_LDO_32: howto manager. (line 938)
+* BFD_RELOC_SH_TLS_LE_32: howto manager. (line 940)
+* BFD_RELOC_SH_TLS_TPOFF32: howto manager. (line 943)
+* BFD_RELOC_SH_USES: howto manager. (line 874)
* BFD_RELOC_SPARC13: howto manager. (line 134)
* BFD_RELOC_SPARC22: howto manager. (line 133)
* BFD_RELOC_SPARC_10: howto manager. (line 163)
@@ -11164,40 +11403,62 @@ BFD Index
* BFD_RELOC_THUMB_PCREL_BRANCH25: howto manager. (line 720)
* BFD_RELOC_THUMB_PCREL_BRANCH7: howto manager. (line 715)
* BFD_RELOC_THUMB_PCREL_BRANCH9: howto manager. (line 716)
-* BFD_RELOC_TIC30_LDP: howto manager. (line 1259)
-* BFD_RELOC_TIC54X_16_OF_23: howto manager. (line 1277)
-* BFD_RELOC_TIC54X_23: howto manager. (line 1274)
-* BFD_RELOC_TIC54X_MS7_OF_23: howto manager. (line 1282)
-* BFD_RELOC_TIC54X_PARTLS7: howto manager. (line 1264)
-* BFD_RELOC_TIC54X_PARTMS9: howto manager. (line 1269)
-* bfd_reloc_type_lookup: howto manager. (line 2289)
-* BFD_RELOC_V850_22_PCREL: howto manager. (line 1186)
-* BFD_RELOC_V850_9_PCREL: howto manager. (line 1183)
-* BFD_RELOC_V850_ALIGN: howto manager. (line 1244)
-* BFD_RELOC_V850_CALLT_16_16_OFFSET: howto manager. (line 1235)
-* BFD_RELOC_V850_CALLT_6_7_OFFSET: howto manager. (line 1232)
-* BFD_RELOC_V850_LO16_SPLIT_OFFSET: howto manager. (line 1247)
-* BFD_RELOC_V850_LONGCALL: howto manager. (line 1238)
-* BFD_RELOC_V850_LONGJUMP: howto manager. (line 1241)
-* BFD_RELOC_V850_SDA_15_16_OFFSET: howto manager. (line 1192)
-* BFD_RELOC_V850_SDA_16_16_OFFSET: howto manager. (line 1189)
-* BFD_RELOC_V850_SDA_16_16_SPLIT_OFFSET: howto manager. (line 1224)
-* BFD_RELOC_V850_TDA_16_16_OFFSET: howto manager. (line 1214)
-* BFD_RELOC_V850_TDA_4_4_OFFSET: howto manager. (line 1221)
-* BFD_RELOC_V850_TDA_4_5_OFFSET: howto manager. (line 1217)
-* BFD_RELOC_V850_TDA_6_8_OFFSET: howto manager. (line 1203)
-* BFD_RELOC_V850_TDA_7_7_OFFSET: howto manager. (line 1211)
-* BFD_RELOC_V850_TDA_7_8_OFFSET: howto manager. (line 1207)
-* BFD_RELOC_V850_ZDA_15_16_OFFSET: howto manager. (line 1199)
-* BFD_RELOC_V850_ZDA_16_16_OFFSET: howto manager. (line 1196)
-* BFD_RELOC_V850_ZDA_16_16_SPLIT_OFFSET: howto manager. (line 1228)
-* BFD_RELOC_VAX_GLOB_DAT: howto manager. (line 2054)
-* BFD_RELOC_VAX_JMP_SLOT: howto manager. (line 2055)
-* BFD_RELOC_VAX_RELATIVE: howto manager. (line 2056)
-* BFD_RELOC_VPE4KMATH_DATA: howto manager. (line 1693)
-* BFD_RELOC_VPE4KMATH_INSN: howto manager. (line 1694)
-* BFD_RELOC_VTABLE_ENTRY: howto manager. (line 1698)
-* BFD_RELOC_VTABLE_INHERIT: howto manager. (line 1697)
+* BFD_RELOC_TIC30_LDP: howto manager. (line 1343)
+* BFD_RELOC_TIC54X_16_OF_23: howto manager. (line 1361)
+* BFD_RELOC_TIC54X_23: howto manager. (line 1358)
+* BFD_RELOC_TIC54X_MS7_OF_23: howto manager. (line 1366)
+* BFD_RELOC_TIC54X_PARTLS7: howto manager. (line 1348)
+* BFD_RELOC_TIC54X_PARTMS9: howto manager. (line 1353)
+* bfd_reloc_type_lookup: howto manager. (line 2408)
+* BFD_RELOC_V850_16_GOT: howto manager. (line 1299)
+* BFD_RELOC_V850_16_GOTOFF: howto manager. (line 1323)
+* BFD_RELOC_V850_16_PCREL: howto manager. (line 1269)
+* BFD_RELOC_V850_16_S1: howto manager. (line 1287)
+* BFD_RELOC_V850_16_SPLIT_OFFSET: howto manager. (line 1284)
+* BFD_RELOC_V850_17_PCREL: howto manager. (line 1272)
+* BFD_RELOC_V850_22_PCREL: howto manager. (line 1204)
+* BFD_RELOC_V850_22_PLT_PCREL: howto manager. (line 1305)
+* BFD_RELOC_V850_23: howto manager. (line 1275)
+* BFD_RELOC_V850_32_ABS: howto manager. (line 1281)
+* BFD_RELOC_V850_32_GOT: howto manager. (line 1302)
+* BFD_RELOC_V850_32_GOTOFF: howto manager. (line 1326)
+* BFD_RELOC_V850_32_GOTPCREL: howto manager. (line 1296)
+* BFD_RELOC_V850_32_PCREL: howto manager. (line 1278)
+* BFD_RELOC_V850_32_PLT_PCREL: howto manager. (line 1308)
+* BFD_RELOC_V850_9_PCREL: howto manager. (line 1201)
+* BFD_RELOC_V850_ALIGN: howto manager. (line 1262)
+* BFD_RELOC_V850_CALLT_15_16_OFFSET: howto manager. (line 1293)
+* BFD_RELOC_V850_CALLT_16_16_OFFSET: howto manager. (line 1253)
+* BFD_RELOC_V850_CALLT_6_7_OFFSET: howto manager. (line 1250)
+* BFD_RELOC_V850_CODE: howto manager. (line 1329)
+* BFD_RELOC_V850_COPY: howto manager. (line 1311)
+* BFD_RELOC_V850_DATA: howto manager. (line 1332)
+* BFD_RELOC_V850_GLOB_DAT: howto manager. (line 1314)
+* BFD_RELOC_V850_JMP_SLOT: howto manager. (line 1317)
+* BFD_RELOC_V850_LO16_S1: howto manager. (line 1290)
+* BFD_RELOC_V850_LO16_SPLIT_OFFSET: howto manager. (line 1265)
+* BFD_RELOC_V850_LONGCALL: howto manager. (line 1256)
+* BFD_RELOC_V850_LONGJUMP: howto manager. (line 1259)
+* BFD_RELOC_V850_RELATIVE: howto manager. (line 1320)
+* BFD_RELOC_V850_SDA_15_16_OFFSET: howto manager. (line 1210)
+* BFD_RELOC_V850_SDA_16_16_OFFSET: howto manager. (line 1207)
+* BFD_RELOC_V850_SDA_16_16_SPLIT_OFFSET: howto manager. (line 1242)
+* BFD_RELOC_V850_TDA_16_16_OFFSET: howto manager. (line 1232)
+* BFD_RELOC_V850_TDA_4_4_OFFSET: howto manager. (line 1239)
+* BFD_RELOC_V850_TDA_4_5_OFFSET: howto manager. (line 1235)
+* BFD_RELOC_V850_TDA_6_8_OFFSET: howto manager. (line 1221)
+* BFD_RELOC_V850_TDA_7_7_OFFSET: howto manager. (line 1229)
+* BFD_RELOC_V850_TDA_7_8_OFFSET: howto manager. (line 1225)
+* BFD_RELOC_V850_ZDA_15_16_OFFSET: howto manager. (line 1217)
+* BFD_RELOC_V850_ZDA_16_16_OFFSET: howto manager. (line 1214)
+* BFD_RELOC_V850_ZDA_16_16_SPLIT_OFFSET: howto manager. (line 1246)
+* BFD_RELOC_VAX_GLOB_DAT: howto manager. (line 2173)
+* BFD_RELOC_VAX_JMP_SLOT: howto manager. (line 2174)
+* BFD_RELOC_VAX_RELATIVE: howto manager. (line 2175)
+* BFD_RELOC_VPE4KMATH_DATA: howto manager. (line 1812)
+* BFD_RELOC_VPE4KMATH_INSN: howto manager. (line 1813)
+* BFD_RELOC_VTABLE_ENTRY: howto manager. (line 1817)
+* BFD_RELOC_VTABLE_INHERIT: howto manager. (line 1816)
* BFD_RELOC_X86_64_32S: howto manager. (line 538)
* BFD_RELOC_X86_64_COPY: howto manager. (line 533)
* BFD_RELOC_X86_64_DTPMOD64: howto manager. (line 539)
@@ -11225,187 +11486,188 @@ BFD Index
* BFD_RELOC_X86_64_TLSLD: howto manager. (line 543)
* BFD_RELOC_X86_64_TPOFF32: howto manager. (line 546)
* BFD_RELOC_X86_64_TPOFF64: howto manager. (line 541)
-* BFD_RELOC_XC16X_PAG: howto manager. (line 2048)
-* BFD_RELOC_XC16X_POF: howto manager. (line 2049)
-* BFD_RELOC_XC16X_SEG: howto manager. (line 2050)
-* BFD_RELOC_XC16X_SOF: howto manager. (line 2051)
-* BFD_RELOC_XSTORMY16_12: howto manager. (line 2040)
-* BFD_RELOC_XSTORMY16_24: howto manager. (line 2041)
-* BFD_RELOC_XSTORMY16_FPTR16: howto manager. (line 2042)
-* BFD_RELOC_XSTORMY16_REL_12: howto manager. (line 2039)
-* BFD_RELOC_XTENSA_ASM_EXPAND: howto manager. (line 2160)
-* BFD_RELOC_XTENSA_ASM_SIMPLIFY: howto manager. (line 2165)
-* BFD_RELOC_XTENSA_DIFF16: howto manager. (line 2107)
-* BFD_RELOC_XTENSA_DIFF32: howto manager. (line 2108)
-* BFD_RELOC_XTENSA_DIFF8: howto manager. (line 2106)
-* BFD_RELOC_XTENSA_GLOB_DAT: howto manager. (line 2096)
-* BFD_RELOC_XTENSA_JMP_SLOT: howto manager. (line 2097)
-* BFD_RELOC_XTENSA_OP0: howto manager. (line 2154)
-* BFD_RELOC_XTENSA_OP1: howto manager. (line 2155)
-* BFD_RELOC_XTENSA_OP2: howto manager. (line 2156)
-* BFD_RELOC_XTENSA_PLT: howto manager. (line 2101)
-* BFD_RELOC_XTENSA_RELATIVE: howto manager. (line 2098)
-* BFD_RELOC_XTENSA_RTLD: howto manager. (line 2091)
-* BFD_RELOC_XTENSA_SLOT0_ALT: howto manager. (line 2136)
-* BFD_RELOC_XTENSA_SLOT0_OP: howto manager. (line 2116)
-* BFD_RELOC_XTENSA_SLOT10_ALT: howto manager. (line 2146)
-* BFD_RELOC_XTENSA_SLOT10_OP: howto manager. (line 2126)
-* BFD_RELOC_XTENSA_SLOT11_ALT: howto manager. (line 2147)
-* BFD_RELOC_XTENSA_SLOT11_OP: howto manager. (line 2127)
-* BFD_RELOC_XTENSA_SLOT12_ALT: howto manager. (line 2148)
-* BFD_RELOC_XTENSA_SLOT12_OP: howto manager. (line 2128)
-* BFD_RELOC_XTENSA_SLOT13_ALT: howto manager. (line 2149)
-* BFD_RELOC_XTENSA_SLOT13_OP: howto manager. (line 2129)
-* BFD_RELOC_XTENSA_SLOT14_ALT: howto manager. (line 2150)
-* BFD_RELOC_XTENSA_SLOT14_OP: howto manager. (line 2130)
-* BFD_RELOC_XTENSA_SLOT1_ALT: howto manager. (line 2137)
-* BFD_RELOC_XTENSA_SLOT1_OP: howto manager. (line 2117)
-* BFD_RELOC_XTENSA_SLOT2_ALT: howto manager. (line 2138)
-* BFD_RELOC_XTENSA_SLOT2_OP: howto manager. (line 2118)
-* BFD_RELOC_XTENSA_SLOT3_ALT: howto manager. (line 2139)
-* BFD_RELOC_XTENSA_SLOT3_OP: howto manager. (line 2119)
-* BFD_RELOC_XTENSA_SLOT4_ALT: howto manager. (line 2140)
-* BFD_RELOC_XTENSA_SLOT4_OP: howto manager. (line 2120)
-* BFD_RELOC_XTENSA_SLOT5_ALT: howto manager. (line 2141)
-* BFD_RELOC_XTENSA_SLOT5_OP: howto manager. (line 2121)
-* BFD_RELOC_XTENSA_SLOT6_ALT: howto manager. (line 2142)
-* BFD_RELOC_XTENSA_SLOT6_OP: howto manager. (line 2122)
-* BFD_RELOC_XTENSA_SLOT7_ALT: howto manager. (line 2143)
-* BFD_RELOC_XTENSA_SLOT7_OP: howto manager. (line 2123)
-* BFD_RELOC_XTENSA_SLOT8_ALT: howto manager. (line 2144)
-* BFD_RELOC_XTENSA_SLOT8_OP: howto manager. (line 2124)
-* BFD_RELOC_XTENSA_SLOT9_ALT: howto manager. (line 2145)
-* BFD_RELOC_XTENSA_SLOT9_OP: howto manager. (line 2125)
-* BFD_RELOC_XTENSA_TLS_ARG: howto manager. (line 2175)
-* BFD_RELOC_XTENSA_TLS_CALL: howto manager. (line 2176)
-* BFD_RELOC_XTENSA_TLS_DTPOFF: howto manager. (line 2172)
-* BFD_RELOC_XTENSA_TLS_FUNC: howto manager. (line 2174)
-* BFD_RELOC_XTENSA_TLS_TPOFF: howto manager. (line 2173)
-* BFD_RELOC_XTENSA_TLSDESC_ARG: howto manager. (line 2171)
-* BFD_RELOC_XTENSA_TLSDESC_FN: howto manager. (line 2170)
-* BFD_RELOC_Z80_DISP8: howto manager. (line 2179)
-* BFD_RELOC_Z8K_CALLR: howto manager. (line 2185)
-* BFD_RELOC_Z8K_DISP7: howto manager. (line 2182)
-* BFD_RELOC_Z8K_IMM4L: howto manager. (line 2188)
-* bfd_scan_arch: Architectures. (line 437)
-* bfd_scan_vma: BFD front end. (line 513)
-* bfd_seach_for_target: bfd_target. (line 505)
+* BFD_RELOC_XC16X_PAG: howto manager. (line 2167)
+* BFD_RELOC_XC16X_POF: howto manager. (line 2168)
+* BFD_RELOC_XC16X_SEG: howto manager. (line 2169)
+* BFD_RELOC_XC16X_SOF: howto manager. (line 2170)
+* BFD_RELOC_XSTORMY16_12: howto manager. (line 2159)
+* BFD_RELOC_XSTORMY16_24: howto manager. (line 2160)
+* BFD_RELOC_XSTORMY16_FPTR16: howto manager. (line 2161)
+* BFD_RELOC_XSTORMY16_REL_12: howto manager. (line 2158)
+* BFD_RELOC_XTENSA_ASM_EXPAND: howto manager. (line 2279)
+* BFD_RELOC_XTENSA_ASM_SIMPLIFY: howto manager. (line 2284)
+* BFD_RELOC_XTENSA_DIFF16: howto manager. (line 2226)
+* BFD_RELOC_XTENSA_DIFF32: howto manager. (line 2227)
+* BFD_RELOC_XTENSA_DIFF8: howto manager. (line 2225)
+* BFD_RELOC_XTENSA_GLOB_DAT: howto manager. (line 2215)
+* BFD_RELOC_XTENSA_JMP_SLOT: howto manager. (line 2216)
+* BFD_RELOC_XTENSA_OP0: howto manager. (line 2273)
+* BFD_RELOC_XTENSA_OP1: howto manager. (line 2274)
+* BFD_RELOC_XTENSA_OP2: howto manager. (line 2275)
+* BFD_RELOC_XTENSA_PLT: howto manager. (line 2220)
+* BFD_RELOC_XTENSA_RELATIVE: howto manager. (line 2217)
+* BFD_RELOC_XTENSA_RTLD: howto manager. (line 2210)
+* BFD_RELOC_XTENSA_SLOT0_ALT: howto manager. (line 2255)
+* BFD_RELOC_XTENSA_SLOT0_OP: howto manager. (line 2235)
+* BFD_RELOC_XTENSA_SLOT10_ALT: howto manager. (line 2265)
+* BFD_RELOC_XTENSA_SLOT10_OP: howto manager. (line 2245)
+* BFD_RELOC_XTENSA_SLOT11_ALT: howto manager. (line 2266)
+* BFD_RELOC_XTENSA_SLOT11_OP: howto manager. (line 2246)
+* BFD_RELOC_XTENSA_SLOT12_ALT: howto manager. (line 2267)
+* BFD_RELOC_XTENSA_SLOT12_OP: howto manager. (line 2247)
+* BFD_RELOC_XTENSA_SLOT13_ALT: howto manager. (line 2268)
+* BFD_RELOC_XTENSA_SLOT13_OP: howto manager. (line 2248)
+* BFD_RELOC_XTENSA_SLOT14_ALT: howto manager. (line 2269)
+* BFD_RELOC_XTENSA_SLOT14_OP: howto manager. (line 2249)
+* BFD_RELOC_XTENSA_SLOT1_ALT: howto manager. (line 2256)
+* BFD_RELOC_XTENSA_SLOT1_OP: howto manager. (line 2236)
+* BFD_RELOC_XTENSA_SLOT2_ALT: howto manager. (line 2257)
+* BFD_RELOC_XTENSA_SLOT2_OP: howto manager. (line 2237)
+* BFD_RELOC_XTENSA_SLOT3_ALT: howto manager. (line 2258)
+* BFD_RELOC_XTENSA_SLOT3_OP: howto manager. (line 2238)
+* BFD_RELOC_XTENSA_SLOT4_ALT: howto manager. (line 2259)
+* BFD_RELOC_XTENSA_SLOT4_OP: howto manager. (line 2239)
+* BFD_RELOC_XTENSA_SLOT5_ALT: howto manager. (line 2260)
+* BFD_RELOC_XTENSA_SLOT5_OP: howto manager. (line 2240)
+* BFD_RELOC_XTENSA_SLOT6_ALT: howto manager. (line 2261)
+* BFD_RELOC_XTENSA_SLOT6_OP: howto manager. (line 2241)
+* BFD_RELOC_XTENSA_SLOT7_ALT: howto manager. (line 2262)
+* BFD_RELOC_XTENSA_SLOT7_OP: howto manager. (line 2242)
+* BFD_RELOC_XTENSA_SLOT8_ALT: howto manager. (line 2263)
+* BFD_RELOC_XTENSA_SLOT8_OP: howto manager. (line 2243)
+* BFD_RELOC_XTENSA_SLOT9_ALT: howto manager. (line 2264)
+* BFD_RELOC_XTENSA_SLOT9_OP: howto manager. (line 2244)
+* BFD_RELOC_XTENSA_TLS_ARG: howto manager. (line 2294)
+* BFD_RELOC_XTENSA_TLS_CALL: howto manager. (line 2295)
+* BFD_RELOC_XTENSA_TLS_DTPOFF: howto manager. (line 2291)
+* BFD_RELOC_XTENSA_TLS_FUNC: howto manager. (line 2293)
+* BFD_RELOC_XTENSA_TLS_TPOFF: howto manager. (line 2292)
+* BFD_RELOC_XTENSA_TLSDESC_ARG: howto manager. (line 2290)
+* BFD_RELOC_XTENSA_TLSDESC_FN: howto manager. (line 2289)
+* BFD_RELOC_Z80_DISP8: howto manager. (line 2298)
+* BFD_RELOC_Z8K_CALLR: howto manager. (line 2304)
+* BFD_RELOC_Z8K_DISP7: howto manager. (line 2301)
+* BFD_RELOC_Z8K_IMM4L: howto manager. (line 2307)
+* bfd_rename_section: section prototypes. (line 155)
+* bfd_scan_arch: Architectures. (line 447)
+* bfd_scan_vma: BFD front end. (line 532)
+* bfd_seach_for_target: bfd_target. (line 507)
* bfd_section_already_linked: Writing the symbol table.
(line 55)
* bfd_section_list_clear: section prototypes. (line 8)
-* bfd_sections_find_if: section prototypes. (line 176)
-* bfd_set_arch_info: Architectures. (line 478)
+* bfd_sections_find_if: section prototypes. (line 185)
+* bfd_set_arch_info: Architectures. (line 488)
* bfd_set_archive_head: Archives. (line 69)
-* bfd_set_default_target: bfd_target. (line 444)
-* bfd_set_error: BFD front end. (line 323)
-* bfd_set_error_handler: BFD front end. (line 365)
-* bfd_set_error_program_name: BFD front end. (line 374)
-* bfd_set_file_flags: BFD front end. (line 433)
+* bfd_set_default_target: bfd_target. (line 446)
+* bfd_set_error: BFD front end. (line 342)
+* bfd_set_error_handler: BFD front end. (line 384)
+* bfd_set_error_program_name: BFD front end. (line 393)
+* bfd_set_file_flags: BFD front end. (line 452)
* bfd_set_format: Formats. (line 68)
-* bfd_set_gp_size: BFD front end. (line 503)
-* bfd_set_private_flags: BFD front end. (line 580)
-* bfd_set_reloc: BFD front end. (line 423)
-* bfd_set_section_contents: section prototypes. (line 207)
+* bfd_set_gp_size: BFD front end. (line 522)
+* bfd_set_private_flags: BFD front end. (line 599)
+* bfd_set_reloc: BFD front end. (line 442)
+* bfd_set_section_contents: section prototypes. (line 216)
* bfd_set_section_flags: section prototypes. (line 140)
-* bfd_set_section_size: section prototypes. (line 193)
-* bfd_set_start_address: BFD front end. (line 482)
+* bfd_set_section_size: section prototypes. (line 202)
+* bfd_set_start_address: BFD front end. (line 501)
* bfd_set_symtab: symbol handling functions.
(line 60)
* bfd_symbol_info: symbol handling functions.
(line 130)
-* bfd_target_list: bfd_target. (line 496)
+* bfd_target_list: bfd_target. (line 498)
* bfd_write_bigendian_4byte_int: Internal. (line 13)
* bfd_zalloc: Opening and Closing.
- (line 229)
+ (line 232)
* bfd_zalloc2: Opening and Closing.
- (line 238)
+ (line 241)
* coff_symbol_type: coff. (line 244)
-* core_file_matches_executable_p: Core Files. (line 30)
+* core_file_matches_executable_p: Core Files. (line 39)
* find_separate_debug_file: Opening and Closing.
- (line 280)
-* generic_core_file_matches_executable_p: Core Files. (line 40)
+ (line 283)
+* generic_core_file_matches_executable_p: Core Files. (line 49)
* get_debug_link_info: Opening and Closing.
- (line 261)
+ (line 264)
* 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 595)
+* Other functions: BFD front end. (line 614)
* separate_debug_file_exists: Opening and Closing.
- (line 271)
-* struct bfd_iovec: BFD front end. (line 798)
+ (line 274)
+* struct bfd_iovec: BFD front end. (line 817)
* target vector (_bfd_final_link): Performing the Final Link.
(line 6)
* target vector (_bfd_link_add_symbols): Adding Symbols to the Hash Table.
(line 6)
* target vector (_bfd_link_hash_table_create): Creating a Linker Hash Table.
(line 6)
-* The HOWTO Macro: typedef arelent. (line 291)
+* The HOWTO Macro: typedef arelent. (line 288)
* what is it?: Overview. (line 6)

Tag Table:
-Node: Top1106
-Node: Overview1445
-Node: History2496
-Node: How It Works3442
-Node: What BFD Version 2 Can Do4985
-Node: BFD information loss6300
-Node: Canonical format8832
-Node: BFD front end13204
-Node: Memory Usage44512
-Node: Initialization45740
-Node: Sections46199
-Node: Section Input46682
-Node: Section Output48047
-Node: typedef asection50533
-Node: section prototypes75542
-Node: Symbols85222
-Node: Reading Symbols86817
-Node: Writing Symbols87924
-Node: Mini Symbols89633
-Node: typedef asymbol90607
-Node: symbol handling functions96666
-Node: Archives102008
-Node: Formats105734
-Node: Relocations108682
-Node: typedef arelent109409
-Node: howto manager125220
-Node: Core Files199208
-Node: Targets201025
-Node: bfd_target202995
-Node: Architectures225311
-Node: Opening and Closing248661
-Node: Internal259999
-Node: File Caching266332
-Node: Linker Functions268246
-Node: Creating a Linker Hash Table269919
-Node: Adding Symbols to the Hash Table271657
-Node: Differing file formats272557
-Node: Adding symbols from an object file274282
-Node: Adding symbols from an archive276433
-Node: Performing the Final Link278847
-Node: Information provided by the linker280089
-Node: Relocating the section contents281243
-Node: Writing the symbol table282994
-Node: Hash Tables287009
-Node: Creating and Freeing a Hash Table288207
-Node: Looking Up or Entering a String289457
-Node: Traversing a Hash Table290710
-Node: Deriving a New Hash Table Type291499
-Node: Define the Derived Structures292565
-Node: Write the Derived Creation Routine293646
-Node: Write Other Derived Routines296270
-Node: BFD back ends297585
-Node: What to Put Where297855
-Node: aout298035
-Node: coff304353
-Node: elf332786
-Node: mmo333187
-Node: File layout334115
-Node: Symbol-table339762
-Node: mmo section mapping343531
-Node: GNU Free Documentation License347183
-Node: BFD Index372266
+Node: Top1143
+Node: Overview1482
+Node: History2533
+Node: How It Works3479
+Node: What BFD Version 2 Can Do5022
+Node: BFD information loss6337
+Node: Canonical format8869
+Node: BFD front end13241
+Node: Memory Usage45320
+Node: Initialization46548
+Node: Sections47007
+Node: Section Input47490
+Node: Section Output48855
+Node: typedef asection51341
+Node: section prototypes76653
+Node: Symbols86548
+Node: Reading Symbols88143
+Node: Writing Symbols89250
+Node: Mini Symbols90959
+Node: typedef asymbol91933
+Node: symbol handling functions97992
+Node: Archives103334
+Node: Formats107060
+Node: Relocations110008
+Node: typedef arelent110735
+Node: howto manager126371
+Node: Core Files203203
+Node: Targets205241
+Node: bfd_target207211
+Node: Architectures229604
+Node: Opening and Closing253362
+Node: Internal264818
+Node: File Caching271151
+Node: Linker Functions273065
+Node: Creating a Linker Hash Table274738
+Node: Adding Symbols to the Hash Table276476
+Node: Differing file formats277376
+Node: Adding symbols from an object file279101
+Node: Adding symbols from an archive281252
+Node: Performing the Final Link284181
+Node: Information provided by the linker285423
+Node: Relocating the section contents286577
+Node: Writing the symbol table288328
+Node: Hash Tables292343
+Node: Creating and Freeing a Hash Table293541
+Node: Looking Up or Entering a String294791
+Node: Traversing a Hash Table296044
+Node: Deriving a New Hash Table Type296833
+Node: Define the Derived Structures297899
+Node: Write the Derived Creation Routine298980
+Node: Write Other Derived Routines301604
+Node: BFD back ends302919
+Node: What to Put Where303189
+Node: aout303369
+Node: coff309687
+Node: elf338120
+Node: mmo338521
+Node: File layout339449
+Node: Symbol-table345096
+Node: mmo section mapping348865
+Node: GNU Free Documentation License352517
+Node: BFD Index377600

End Tag Table