| Index: bfd/doc/bfd.info
|
| diff --git a/bfd/doc/bfd.info b/bfd/doc/bfd.info
|
| index f38bee1addcdc55f10b656e18a788f5fb369527d..9c2fcd6a0a7901641ec83ee27d84738f7c2a5470 100644
|
| --- a/bfd/doc/bfd.info
|
| +++ b/bfd/doc/bfd.info
|
| @@ -1,4 +1,4 @@
|
| -This is bfd.info, produced by makeinfo version 4.8 from bfd.texinfo.
|
| +This is bfd.info, produced by makeinfo version 4.13 from bfd.texinfo.
|
|
|
| INFO-DIR-SECTION Software development
|
| START-INFO-DIR-ENTRY
|
| @@ -7,8 +7,7 @@ END-INFO-DIR-ENTRY
|
|
|
| This file documents the BFD library.
|
|
|
| - Copyright (C) 1991, 2000, 2001, 2003, 2006, 2007, 2008 Free Software
|
| -Foundation, Inc.
|
| + Copyright (C) 1991 - 2013 Free Software Foundation, Inc.
|
|
|
| Permission is granted to copy, distribute and/or modify this document
|
| under the terms of the GNU Free Documentation License, Version 1.3 or
|
| @@ -302,6 +301,30 @@ File: bfd.info, Node: BFD front end, Next: BFD back ends, Prev: Overview, Up
|
| 2 BFD Front End
|
| ***************
|
|
|
| +* Menu:
|
| +
|
| +* typedef bfd::
|
| +* Error reporting::
|
| +* Miscellaneous::
|
| +* Memory Usage::
|
| +* Initialization::
|
| +* Sections::
|
| +* Symbols::
|
| +* Archives::
|
| +* Formats::
|
| +* Relocations::
|
| +* Core Files::
|
| +* Targets::
|
| +* Architectures::
|
| +* Opening and Closing::
|
| +* Internal::
|
| +* File Caching::
|
| +* Linker Functions::
|
| +* Hash Tables::
|
| +
|
| +
|
| +File: bfd.info, Node: typedef bfd, Next: Error reporting, Prev: BFD front end, Up: BFD front end
|
| +
|
| 2.1 `typedef bfd'
|
| =================
|
|
|
| @@ -588,6 +611,9 @@ major data about the file and pointers to the rest of the data.
|
| unsigned int selective_search : 1;
|
| };
|
|
|
| +
|
| +File: bfd.info, Node: Error reporting, Next: Miscellaneous, Prev: typedef bfd, Up: BFD front end
|
| +
|
| 2.2 Error reporting
|
| ===================
|
|
|
| @@ -620,6 +646,7 @@ type `bfd_error_type'.
|
| bfd_error_no_armap,
|
| bfd_error_no_more_archived_files,
|
| bfd_error_malformed_archive,
|
| + bfd_error_missing_dso,
|
| bfd_error_file_not_recognized,
|
| bfd_error_file_ambiguously_recognized,
|
| bfd_error_no_contents,
|
| @@ -742,6 +769,9 @@ Set the BFD assert handler function. Returns the previous function.
|
| *Description*
|
| Return the BFD assert handler function.
|
|
|
| +
|
| +File: bfd.info, Node: Miscellaneous, Next: Memory Usage, Prev: Error reporting, Up: BFD front end
|
| +
|
| 2.3 Miscellaneous
|
| =================
|
|
|
| @@ -957,6 +987,11 @@ The following functions exist but have not yet been documented.
|
| BFD_SEND (abfd, _bfd_find_nearest_line, \
|
| (abfd, sec, syms, off, file, func, line))
|
|
|
| + #define bfd_find_nearest_line_discriminator(abfd, sec, syms, off, file, func, \
|
| + line, disc) \
|
| + BFD_SEND (abfd, _bfd_find_nearest_line_discriminator, \
|
| + (abfd, sec, syms, off, file, func, line, disc))
|
| +
|
| #define bfd_find_line(abfd, syms, sym, file, line) \
|
| BFD_SEND (abfd, _bfd_find_line, \
|
| (abfd, syms, sym, file, line))
|
| @@ -1053,54 +1088,7 @@ machine type, this function can be used to switch between the preferred
|
| one (alternative == 0) and any others. Currently, only ELF supports
|
| this feature, with up to two alternate machine codes.
|
|
|
| - struct bfd_preserve
|
| - {
|
| - void *marker;
|
| - void *tdata;
|
| - flagword flags;
|
| - const struct bfd_arch_info *arch_info;
|
| - struct bfd_section *sections;
|
| - struct bfd_section *section_last;
|
| - unsigned int section_count;
|
| - struct bfd_hash_table section_htab;
|
| - };
|
| -
|
| -2.3.1.17 `bfd_preserve_save'
|
| -............................
|
| -
|
| -*Synopsis*
|
| - bfd_boolean bfd_preserve_save (bfd *, struct bfd_preserve *);
|
| - *Description*
|
| -When testing an object for compatibility with a particular target
|
| -back-end, the back-end object_p function needs to set up certain fields
|
| -in the bfd on successfully recognizing the object. This typically
|
| -happens in a piecemeal fashion, with failures possible at many points.
|
| -On failure, the bfd is supposed to be restored to its initial state,
|
| -which is virtually impossible. However, restoring a subset of the bfd
|
| -state works in practice. This function stores the subset and
|
| -reinitializes the bfd.
|
| -
|
| -2.3.1.18 `bfd_preserve_restore'
|
| -...............................
|
| -
|
| -*Synopsis*
|
| - void bfd_preserve_restore (bfd *, struct bfd_preserve *);
|
| - *Description*
|
| -This function restores bfd state saved by bfd_preserve_save. If MARKER
|
| -is non-NULL in struct bfd_preserve then that block and all subsequently
|
| -bfd_alloc'd memory is freed.
|
| -
|
| -2.3.1.19 `bfd_preserve_finish'
|
| -..............................
|
| -
|
| -*Synopsis*
|
| - void bfd_preserve_finish (bfd *, struct bfd_preserve *);
|
| - *Description*
|
| -This function should be called when the bfd state saved by
|
| -bfd_preserve_save is no longer needed. ie. when the back-end object_p
|
| -function returns with success.
|
| -
|
| -2.3.1.20 `bfd_emul_get_maxpagesize'
|
| +2.3.1.17 `bfd_emul_get_maxpagesize'
|
| ...................................
|
|
|
| *Synopsis*
|
| @@ -1111,7 +1099,7 @@ Returns the maximum page size, in bytes, as determined by emulation.
|
| *Returns*
|
| Returns the maximum page size in bytes for ELF, 0 otherwise.
|
|
|
| -2.3.1.21 `bfd_emul_set_maxpagesize'
|
| +2.3.1.18 `bfd_emul_set_maxpagesize'
|
| ...................................
|
|
|
| *Synopsis*
|
| @@ -1120,7 +1108,7 @@ Returns the maximum page size in bytes for ELF, 0 otherwise.
|
| For ELF, set the maximum page size for the emulation. It is a no-op
|
| for other formats.
|
|
|
| -2.3.1.22 `bfd_emul_get_commonpagesize'
|
| +2.3.1.19 `bfd_emul_get_commonpagesize'
|
| ......................................
|
|
|
| *Synopsis*
|
| @@ -1131,7 +1119,7 @@ Returns the common page size, in bytes, as determined by emulation.
|
| *Returns*
|
| Returns the common page size in bytes for ELF, 0 otherwise.
|
|
|
| -2.3.1.23 `bfd_emul_set_commonpagesize'
|
| +2.3.1.20 `bfd_emul_set_commonpagesize'
|
| ......................................
|
|
|
| *Synopsis*
|
| @@ -1140,7 +1128,7 @@ Returns the common page size in bytes for ELF, 0 otherwise.
|
| For ELF, set the common page size for the emulation. It is a no-op for
|
| other formats.
|
|
|
| -2.3.1.24 `bfd_demangle'
|
| +2.3.1.21 `bfd_demangle'
|
| .......................
|
|
|
| *Synopsis*
|
| @@ -1151,7 +1139,7 @@ such chars that would otherwise confuse the demangler. If passed a g++
|
| v3 ABI mangled name, returns a buffer allocated with malloc holding the
|
| demangled name. Returns NULL otherwise and on memory alloc failure.
|
|
|
| -2.3.1.25 `struct bfd_iovec'
|
| +2.3.1.22 `struct bfd_iovec'
|
| ...........................
|
|
|
| *Description*
|
| @@ -1191,7 +1179,7 @@ below).
|
| };
|
| extern const struct bfd_iovec _bfd_memory_iovec;
|
|
|
| -2.3.1.26 `bfd_get_mtime'
|
| +2.3.1.23 `bfd_get_mtime'
|
| ........................
|
|
|
| *Synopsis*
|
| @@ -1200,7 +1188,7 @@ below).
|
| Return the file modification time (as read from the file system, or
|
| from the archive header for archive members).
|
|
|
| -2.3.1.27 `bfd_get_size'
|
| +2.3.1.24 `bfd_get_size'
|
| .......................
|
|
|
| *Synopsis*
|
| @@ -1229,7 +1217,7 @@ table, or a "virtual memory exhausted" error when it tries to allocate
|
| to read. This function at least allows us to answer the question, "is
|
| the size reasonable?".
|
|
|
| -2.3.1.28 `bfd_mmap'
|
| +2.3.1.25 `bfd_mmap'
|
| ...................
|
|
|
| *Synopsis*
|
| @@ -1241,26 +1229,8 @@ Return mmap()ed region of the file, if possible and implemented. LEN
|
| and OFFSET do not need to be page aligned. The page aligned address
|
| and length are written to MAP_ADDR and MAP_LEN.
|
|
|
| -* Menu:
|
| -
|
| -* Memory Usage::
|
| -* Initialization::
|
| -* Sections::
|
| -* Symbols::
|
| -* Archives::
|
| -* Formats::
|
| -* Relocations::
|
| -* Core Files::
|
| -* Targets::
|
| -* Architectures::
|
| -* Opening and Closing::
|
| -* Internal::
|
| -* File Caching::
|
| -* Linker Functions::
|
| -* Hash Tables::
|
| -
|
|
|
| -File: bfd.info, Node: Memory Usage, Next: Initialization, Prev: BFD front end, Up: BFD front end
|
| +File: bfd.info, Node: Memory Usage, Next: Initialization, Prev: Miscellaneous, Up: BFD front end
|
|
|
| 2.4 Memory Usage
|
| ================
|
| @@ -1818,7 +1788,7 @@ Here is the section structure:
|
| /* These sections are global, and are managed by BFD. The application
|
| and target back end are not permitted to change the values in
|
| these sections. */
|
| - extern asection std_section[4];
|
| + extern asection _bfd_std_section[4];
|
|
|
| #define BFD_ABS_SECTION_NAME "*ABS*"
|
| #define BFD_UND_SECTION_NAME "*UND*"
|
| @@ -1826,13 +1796,13 @@ Here is the section structure:
|
| #define BFD_IND_SECTION_NAME "*IND*"
|
|
|
| /* Pointer to the common section. */
|
| - #define bfd_com_section_ptr (&std_section[0])
|
| + #define bfd_com_section_ptr (&_bfd_std_section[0])
|
| /* Pointer to the undefined section. */
|
| - #define bfd_und_section_ptr (&std_section[1])
|
| + #define bfd_und_section_ptr (&_bfd_std_section[1])
|
| /* Pointer to the absolute section. */
|
| - #define bfd_abs_section_ptr (&std_section[2])
|
| + #define bfd_abs_section_ptr (&_bfd_std_section[2])
|
| /* Pointer to the indirect section. */
|
| - #define bfd_ind_section_ptr (&std_section[3])
|
| + #define bfd_ind_section_ptr (&_bfd_std_section[3])
|
|
|
| #define bfd_is_und_section(sec) ((sec) == bfd_und_section_ptr)
|
| #define bfd_is_abs_section(sec) ((sec) == bfd_abs_section_ptr)
|
| @@ -2167,7 +2137,7 @@ ABFD, passing OBJ as an argument. The function will be called as if by
|
| This is the preferred method for iterating over sections; an
|
| alternative would be to use a loop:
|
|
|
| - section *p;
|
| + asection *p;
|
| for (p = abfd->sections; p != NULL; p = p->next)
|
| func (abfd, p, ...)
|
|
|
| @@ -2759,10 +2729,16 @@ the archive is closed.
|
| an archive opened for input. You don't have to read the entire archive
|
| if you don't want to! Read it until you find what you want.
|
|
|
| - Archive contents of output BFDs are chained through the `next'
|
| -pointer in a BFD. The first one is findable through the `archive_head'
|
| -slot of the archive. Set it with `bfd_set_archive_head' (q.v.). A
|
| -given BFD may be in only one open output archive at a time.
|
| + A BFD returned by `bfd_openr_next_archived_file' can be closed
|
| +manually with `bfd_close'. If you do not close it, then a second
|
| +iteration through the members of an archive may return the same BFD.
|
| +If you close the archive BFD, then all the member BFDs will
|
| +automatically be closed as well.
|
| +
|
| + Archive contents of output BFDs are chained through the
|
| +`archive_next' pointer in a BFD. The first one is findable through the
|
| +`archive_head' slot of the archive. Set it with `bfd_set_archive_head'
|
| +(q.v.). A given BFD may be in only one open output archive at a time.
|
|
|
| As expected, the BFD archive code is more general than the archive
|
| code of any given environment. BFD archives may contain files of
|
| @@ -3418,6 +3394,10 @@ attributes.
|
| -- : BFD_RELOC_8_PLTOFF
|
| For ELF.
|
|
|
| + -- : BFD_RELOC_SIZE32
|
| + -- : BFD_RELOC_SIZE64
|
| + Size relocations.
|
| +
|
| -- : BFD_RELOC_68K_GLOB_DAT
|
| -- : BFD_RELOC_68K_JMP_SLOT
|
| -- : BFD_RELOC_68K_RELATIVE
|
| @@ -3809,6 +3789,7 @@ attributes.
|
| -- : BFD_RELOC_MICROMIPS_TLS_TPREL_HI16
|
| -- : BFD_RELOC_MIPS_TLS_TPREL_LO16
|
| -- : BFD_RELOC_MICROMIPS_TLS_TPREL_LO16
|
| + -- : BFD_RELOC_MIPS_EH
|
| MIPS ELF relocations.
|
|
|
| -- : BFD_RELOC_MIPS_COPY
|
| @@ -3967,6 +3948,8 @@ attributes.
|
| -- : BFD_RELOC_X86_64_TLSDESC_CALL
|
| -- : BFD_RELOC_X86_64_TLSDESC
|
| -- : BFD_RELOC_X86_64_IRELATIVE
|
| + -- : BFD_RELOC_X86_64_PC32_BND
|
| + -- : BFD_RELOC_X86_64_PLT32_BND
|
| x86-64/elf relocations
|
|
|
| -- : BFD_RELOC_NS32K_IMM_8
|
| @@ -4065,6 +4048,8 @@ attributes.
|
| -- : BFD_RELOC_PPC64_TOC16_LO_DS
|
| -- : BFD_RELOC_PPC64_PLTGOT16_DS
|
| -- : BFD_RELOC_PPC64_PLTGOT16_LO_DS
|
| + -- : BFD_RELOC_PPC64_ADDR16_HIGH
|
| + -- : BFD_RELOC_PPC64_ADDR16_HIGHA
|
| Power(rs6000) and PowerPC relocations.
|
|
|
| -- : BFD_RELOC_PPC_TLS
|
| @@ -4109,6 +4094,10 @@ attributes.
|
| -- : BFD_RELOC_PPC64_DTPREL16_HIGHERA
|
| -- : BFD_RELOC_PPC64_DTPREL16_HIGHEST
|
| -- : BFD_RELOC_PPC64_DTPREL16_HIGHESTA
|
| + -- : BFD_RELOC_PPC64_TPREL16_HIGH
|
| + -- : BFD_RELOC_PPC64_TPREL16_HIGHA
|
| + -- : BFD_RELOC_PPC64_DTPREL16_HIGH
|
| + -- : BFD_RELOC_PPC64_DTPREL16_HIGHA
|
| PowerPC and PowerPC64 thread-local storage relocations.
|
|
|
| -- : BFD_RELOC_I370_D12
|
| @@ -4881,6 +4870,46 @@ attributes.
|
| -- : BFD_RELOC_MEP_GNU_VTENTRY
|
| Toshiba Media Processor Relocations.
|
|
|
| + -- : BFD_RELOC_METAG_HIADDR16
|
| + -- : BFD_RELOC_METAG_LOADDR16
|
| + -- : BFD_RELOC_METAG_RELBRANCH
|
| + -- : BFD_RELOC_METAG_GETSETOFF
|
| + -- : BFD_RELOC_METAG_HIOG
|
| + -- : BFD_RELOC_METAG_LOOG
|
| + -- : BFD_RELOC_METAG_REL8
|
| + -- : BFD_RELOC_METAG_REL16
|
| + -- : BFD_RELOC_METAG_HI16_GOTOFF
|
| + -- : BFD_RELOC_METAG_LO16_GOTOFF
|
| + -- : BFD_RELOC_METAG_GETSET_GOTOFF
|
| + -- : BFD_RELOC_METAG_GETSET_GOT
|
| + -- : BFD_RELOC_METAG_HI16_GOTPC
|
| + -- : BFD_RELOC_METAG_LO16_GOTPC
|
| + -- : BFD_RELOC_METAG_HI16_PLT
|
| + -- : BFD_RELOC_METAG_LO16_PLT
|
| + -- : BFD_RELOC_METAG_RELBRANCH_PLT
|
| + -- : BFD_RELOC_METAG_GOTOFF
|
| + -- : BFD_RELOC_METAG_PLT
|
| + -- : BFD_RELOC_METAG_COPY
|
| + -- : BFD_RELOC_METAG_JMP_SLOT
|
| + -- : BFD_RELOC_METAG_RELATIVE
|
| + -- : BFD_RELOC_METAG_GLOB_DAT
|
| + -- : BFD_RELOC_METAG_TLS_GD
|
| + -- : BFD_RELOC_METAG_TLS_LDM
|
| + -- : BFD_RELOC_METAG_TLS_LDO_HI16
|
| + -- : BFD_RELOC_METAG_TLS_LDO_LO16
|
| + -- : BFD_RELOC_METAG_TLS_LDO
|
| + -- : BFD_RELOC_METAG_TLS_IE
|
| + -- : BFD_RELOC_METAG_TLS_IENONPIC
|
| + -- : BFD_RELOC_METAG_TLS_IENONPIC_HI16
|
| + -- : BFD_RELOC_METAG_TLS_IENONPIC_LO16
|
| + -- : BFD_RELOC_METAG_TLS_TPOFF
|
| + -- : BFD_RELOC_METAG_TLS_DTPMOD
|
| + -- : BFD_RELOC_METAG_TLS_DTPOFF
|
| + -- : BFD_RELOC_METAG_TLS_LE
|
| + -- : BFD_RELOC_METAG_TLS_LE_HI16
|
| + -- : BFD_RELOC_METAG_TLS_LE_LO16
|
| + Imagination Technologies Meta relocations.
|
| +
|
| -- : BFD_RELOC_MMIX_GETA
|
| -- : BFD_RELOC_MMIX_GETA_1
|
| -- : BFD_RELOC_MMIX_GETA_2
|
| @@ -5078,6 +5107,7 @@ attributes.
|
| -- : BFD_RELOC_RL78_HI16
|
| -- : BFD_RELOC_RL78_HI8
|
| -- : BFD_RELOC_RL78_LO16
|
| + -- : BFD_RELOC_RL78_CODE
|
| Renesas RL78 Relocations.
|
|
|
| -- : BFD_RELOC_RX_NEG8
|
| @@ -5136,12 +5166,24 @@ attributes.
|
| -- : BFD_RELOC_390_GOT16
|
| 16 bit GOT offset.
|
|
|
| + -- : BFD_RELOC_390_PC12DBL
|
| + PC relative 12 bit shifted by 1.
|
| +
|
| + -- : BFD_RELOC_390_PLT12DBL
|
| + 12 bit PC rel. PLT shifted by 1.
|
| +
|
| -- : BFD_RELOC_390_PC16DBL
|
| PC relative 16 bit shifted by 1.
|
|
|
| -- : BFD_RELOC_390_PLT16DBL
|
| 16 bit PC rel. PLT shifted by 1.
|
|
|
| + -- : BFD_RELOC_390_PC24DBL
|
| + PC relative 24 bit shifted by 1.
|
| +
|
| + -- : BFD_RELOC_390_PLT24DBL
|
| + 24 bit PC rel. PLT shifted by 1.
|
| +
|
| -- : BFD_RELOC_390_PC32DBL
|
| PC relative 32 bit shifted by 1.
|
|
|
| @@ -5685,6 +5727,7 @@ attributes.
|
| -- : BFD_RELOC_H8_DIR24A8
|
| -- : BFD_RELOC_H8_DIR24R8
|
| -- : BFD_RELOC_H8_DIR32A16
|
| + -- : BFD_RELOC_H8_DISP32A16
|
| H8 elf Relocations.
|
|
|
| -- : BFD_RELOC_XSTORMY16_REL_12
|
| @@ -5732,8 +5775,59 @@ attributes.
|
| -- : BFD_RELOC_MSP430_16_BYTE
|
| -- : BFD_RELOC_MSP430_2X_PCREL
|
| -- : BFD_RELOC_MSP430_RL_PCREL
|
| + -- : BFD_RELOC_MSP430_ABS8
|
| + -- : BFD_RELOC_MSP430X_PCR20_EXT_SRC
|
| + -- : BFD_RELOC_MSP430X_PCR20_EXT_DST
|
| + -- : BFD_RELOC_MSP430X_PCR20_EXT_ODST
|
| + -- : BFD_RELOC_MSP430X_ABS20_EXT_SRC
|
| + -- : BFD_RELOC_MSP430X_ABS20_EXT_DST
|
| + -- : BFD_RELOC_MSP430X_ABS20_EXT_ODST
|
| + -- : BFD_RELOC_MSP430X_ABS20_ADR_SRC
|
| + -- : BFD_RELOC_MSP430X_ABS20_ADR_DST
|
| + -- : BFD_RELOC_MSP430X_PCR16
|
| + -- : BFD_RELOC_MSP430X_PCR20_CALL
|
| + -- : BFD_RELOC_MSP430X_ABS16
|
| + -- : BFD_RELOC_MSP430_ABS_HI16
|
| + -- : BFD_RELOC_MSP430_PREL31
|
| + -- : BFD_RELOC_MSP430_SYM_DIFF
|
| msp430 specific relocation codes
|
|
|
| + -- : BFD_RELOC_NIOS2_S16
|
| + -- : BFD_RELOC_NIOS2_U16
|
| + -- : BFD_RELOC_NIOS2_CALL26
|
| + -- : BFD_RELOC_NIOS2_IMM5
|
| + -- : BFD_RELOC_NIOS2_CACHE_OPX
|
| + -- : BFD_RELOC_NIOS2_IMM6
|
| + -- : BFD_RELOC_NIOS2_IMM8
|
| + -- : BFD_RELOC_NIOS2_HI16
|
| + -- : BFD_RELOC_NIOS2_LO16
|
| + -- : BFD_RELOC_NIOS2_HIADJ16
|
| + -- : BFD_RELOC_NIOS2_GPREL
|
| + -- : BFD_RELOC_NIOS2_UJMP
|
| + -- : BFD_RELOC_NIOS2_CJMP
|
| + -- : BFD_RELOC_NIOS2_CALLR
|
| + -- : BFD_RELOC_NIOS2_ALIGN
|
| + -- : BFD_RELOC_NIOS2_GOT16
|
| + -- : BFD_RELOC_NIOS2_CALL16
|
| + -- : BFD_RELOC_NIOS2_GOTOFF_LO
|
| + -- : BFD_RELOC_NIOS2_GOTOFF_HA
|
| + -- : BFD_RELOC_NIOS2_PCREL_LO
|
| + -- : BFD_RELOC_NIOS2_PCREL_HA
|
| + -- : BFD_RELOC_NIOS2_TLS_GD16
|
| + -- : BFD_RELOC_NIOS2_TLS_LDM16
|
| + -- : BFD_RELOC_NIOS2_TLS_LDO16
|
| + -- : BFD_RELOC_NIOS2_TLS_IE16
|
| + -- : BFD_RELOC_NIOS2_TLS_LE16
|
| + -- : BFD_RELOC_NIOS2_TLS_DTPMOD
|
| + -- : BFD_RELOC_NIOS2_TLS_DTPREL
|
| + -- : BFD_RELOC_NIOS2_TLS_TPREL
|
| + -- : BFD_RELOC_NIOS2_COPY
|
| + -- : BFD_RELOC_NIOS2_GLOB_DAT
|
| + -- : BFD_RELOC_NIOS2_JUMP_SLOT
|
| + -- : BFD_RELOC_NIOS2_RELATIVE
|
| + -- : BFD_RELOC_NIOS2_GOTOFF
|
| + Relocations used by the Altera Nios II core.
|
| +
|
| -- : BFD_RELOC_IQ2000_OFFSET_16
|
| -- : BFD_RELOC_IQ2000_OFFSET_21
|
| -- : BFD_RELOC_IQ2000_UHI16
|
| @@ -5939,6 +6033,333 @@ attributes.
|
| This is used to tell the dynamic linker to copy the value out of
|
| the dynamic object into the runtime process image.
|
|
|
| + -- : BFD_RELOC_MICROBLAZE_64_TLS
|
| + Unused Reloc
|
| +
|
| + -- : BFD_RELOC_MICROBLAZE_64_TLSGD
|
| + This is a 64 bit reloc that stores the 32 bit GOT relative value
|
| + of the GOT TLS GD info entry in two words (with an imm
|
| + instruction). The relocation is GOT offset.
|
| +
|
| + -- : BFD_RELOC_MICROBLAZE_64_TLSLD
|
| + This is a 64 bit reloc that stores the 32 bit GOT relative value
|
| + of the GOT TLS LD info entry in two words (with an imm
|
| + instruction). The relocation is GOT offset.
|
| +
|
| + -- : BFD_RELOC_MICROBLAZE_32_TLSDTPMOD
|
| + This is a 32 bit reloc that stores the Module ID to GOT(n).
|
| +
|
| + -- : BFD_RELOC_MICROBLAZE_32_TLSDTPREL
|
| + This is a 32 bit reloc that stores TLS offset to GOT(n+1).
|
| +
|
| + -- : BFD_RELOC_MICROBLAZE_64_TLSDTPREL
|
| + This is a 32 bit reloc for storing TLS offset to two words (uses
|
| + imm instruction)
|
| +
|
| + -- : BFD_RELOC_MICROBLAZE_64_TLSGOTTPREL
|
| + This is a 64 bit reloc that stores 32-bit thread pointer relative
|
| + offset to two words (uses imm instruction).
|
| +
|
| + -- : BFD_RELOC_MICROBLAZE_64_TLSTPREL
|
| + This is a 64 bit reloc that stores 32-bit thread pointer relative
|
| + offset to two words (uses imm instruction).
|
| +
|
| + -- : BFD_RELOC_AARCH64_RELOC_START
|
| + AArch64 pseudo relocation code to mark the start of the AArch64
|
| + relocation enumerators. N.B. the order of the enumerators is
|
| + important as several tables in the AArch64 bfd backend are indexed
|
| + by these enumerators; make sure they are all synced.
|
| +
|
| + -- : BFD_RELOC_AARCH64_NONE
|
| + AArch64 null relocation code.
|
| +
|
| + -- : BFD_RELOC_AARCH64_64
|
| + -- : BFD_RELOC_AARCH64_32
|
| + -- : BFD_RELOC_AARCH64_16
|
| + Basic absolute relocations of N bits. These are equivalent to
|
| + BFD_RELOC_N and they were added to assist the indexing of the howto
|
| + table.
|
| +
|
| + -- : BFD_RELOC_AARCH64_64_PCREL
|
| + -- : BFD_RELOC_AARCH64_32_PCREL
|
| + -- : BFD_RELOC_AARCH64_16_PCREL
|
| + PC-relative relocations. These are equivalent to BFD_RELOC_N_PCREL
|
| + and they were added to assist the indexing of the howto table.
|
| +
|
| + -- : BFD_RELOC_AARCH64_MOVW_G0
|
| + AArch64 MOV[NZK] instruction with most significant bits 0 to 15 of
|
| + an unsigned address/value.
|
| +
|
| + -- : BFD_RELOC_AARCH64_MOVW_G0_NC
|
| + AArch64 MOV[NZK] instruction with less significant bits 0 to 15 of
|
| + an address/value. No overflow checking.
|
| +
|
| + -- : BFD_RELOC_AARCH64_MOVW_G1
|
| + AArch64 MOV[NZK] instruction with most significant bits 16 to 31
|
| + of an unsigned address/value.
|
| +
|
| + -- : BFD_RELOC_AARCH64_MOVW_G1_NC
|
| + AArch64 MOV[NZK] instruction with less significant bits 16 to 31
|
| + of an address/value. No overflow checking.
|
| +
|
| + -- : BFD_RELOC_AARCH64_MOVW_G2
|
| + AArch64 MOV[NZK] instruction with most significant bits 32 to 47
|
| + of an unsigned address/value.
|
| +
|
| + -- : BFD_RELOC_AARCH64_MOVW_G2_NC
|
| + AArch64 MOV[NZK] instruction with less significant bits 32 to 47
|
| + of an address/value. No overflow checking.
|
| +
|
| + -- : BFD_RELOC_AARCH64_MOVW_G3
|
| + AArch64 MOV[NZK] instruction with most signficant bits 48 to 64 of
|
| + a signed or unsigned address/value.
|
| +
|
| + -- : BFD_RELOC_AARCH64_MOVW_G0_S
|
| + AArch64 MOV[NZ] instruction with most significant bits 0 to 15 of
|
| + a signed value. Changes instruction to MOVZ or MOVN depending on
|
| + the value's sign.
|
| +
|
| + -- : BFD_RELOC_AARCH64_MOVW_G1_S
|
| + AArch64 MOV[NZ] instruction with most significant bits 16 to 31 of
|
| + a signed value. Changes instruction to MOVZ or MOVN depending on
|
| + the value's sign.
|
| +
|
| + -- : BFD_RELOC_AARCH64_MOVW_G2_S
|
| + AArch64 MOV[NZ] instruction with most significant bits 32 to 47 of
|
| + a signed value. Changes instruction to MOVZ or MOVN depending on
|
| + the value's sign.
|
| +
|
| + -- : BFD_RELOC_AARCH64_LD_LO19_PCREL
|
| + AArch64 Load Literal instruction, holding a 19 bit pc-relative word
|
| + offset. The lowest two bits must be zero and are not stored in the
|
| + instruction, giving a 21 bit signed byte offset.
|
| +
|
| + -- : BFD_RELOC_AARCH64_ADR_LO21_PCREL
|
| + AArch64 ADR instruction, holding a simple 21 bit pc-relative byte
|
| + offset.
|
| +
|
| + -- : BFD_RELOC_AARCH64_ADR_HI21_PCREL
|
| + AArch64 ADRP instruction, with bits 12 to 32 of a pc-relative page
|
| + offset, giving a 4KB aligned page base address.
|
| +
|
| + -- : BFD_RELOC_AARCH64_ADR_HI21_NC_PCREL
|
| + AArch64 ADRP instruction, with bits 12 to 32 of a pc-relative page
|
| + offset, giving a 4KB aligned page base address, but with no
|
| + overflow checking.
|
| +
|
| + -- : BFD_RELOC_AARCH64_ADD_LO12
|
| + AArch64 ADD immediate instruction, holding bits 0 to 11 of the
|
| + address. Used in conjunction with
|
| + BFD_RELOC_AARCH64_ADR_HI21_PCREL.
|
| +
|
| + -- : BFD_RELOC_AARCH64_LDST8_LO12
|
| + AArch64 8-bit load/store instruction, holding bits 0 to 11 of the
|
| + address. Used in conjunction with
|
| + BFD_RELOC_AARCH64_ADR_HI21_PCREL.
|
| +
|
| + -- : BFD_RELOC_AARCH64_TSTBR14
|
| + AArch64 14 bit pc-relative test bit and branch. The lowest two
|
| + bits must be zero and are not stored in the instruction, giving a
|
| + 16 bit signed byte offset.
|
| +
|
| + -- : BFD_RELOC_AARCH64_BRANCH19
|
| + AArch64 19 bit pc-relative conditional branch and compare & branch.
|
| + The lowest two bits must be zero and are not stored in the
|
| + instruction, giving a 21 bit signed byte offset.
|
| +
|
| + -- : BFD_RELOC_AARCH64_JUMP26
|
| + AArch64 26 bit pc-relative unconditional branch. The lowest two
|
| + bits must be zero and are not stored in the instruction, giving a
|
| + 28 bit signed byte offset.
|
| +
|
| + -- : BFD_RELOC_AARCH64_CALL26
|
| + AArch64 26 bit pc-relative unconditional branch and link. The
|
| + lowest two bits must be zero and are not stored in the instruction,
|
| + giving a 28 bit signed byte offset.
|
| +
|
| + -- : BFD_RELOC_AARCH64_LDST16_LO12
|
| + AArch64 16-bit load/store instruction, holding bits 0 to 11 of the
|
| + address. Used in conjunction with
|
| + BFD_RELOC_AARCH64_ADR_HI21_PCREL.
|
| +
|
| + -- : BFD_RELOC_AARCH64_LDST32_LO12
|
| + AArch64 32-bit load/store instruction, holding bits 0 to 11 of the
|
| + address. Used in conjunction with
|
| + BFD_RELOC_AARCH64_ADR_HI21_PCREL.
|
| +
|
| + -- : BFD_RELOC_AARCH64_LDST64_LO12
|
| + AArch64 64-bit load/store instruction, holding bits 0 to 11 of the
|
| + address. Used in conjunction with
|
| + BFD_RELOC_AARCH64_ADR_HI21_PCREL.
|
| +
|
| + -- : BFD_RELOC_AARCH64_LDST128_LO12
|
| + AArch64 128-bit load/store instruction, holding bits 0 to 11 of the
|
| + address. Used in conjunction with
|
| + BFD_RELOC_AARCH64_ADR_HI21_PCREL.
|
| +
|
| + -- : BFD_RELOC_AARCH64_GOT_LD_PREL19
|
| + AArch64 Load Literal instruction, holding a 19 bit PC relative word
|
| + offset of the global offset table entry for a symbol. The lowest
|
| + two bits must be zero and are not stored in the instruction,
|
| + giving a 21 bit signed byte offset. This relocation type requires
|
| + signed overflow checking.
|
| +
|
| + -- : BFD_RELOC_AARCH64_ADR_GOT_PAGE
|
| + Get to the page base of the global offset table entry for a symbol
|
| + as part of an ADRP instruction using a 21 bit PC relative
|
| + value.Used in conjunction with BFD_RELOC_AARCH64_LD64_GOT_LO12_NC.
|
| +
|
| + -- : BFD_RELOC_AARCH64_LD64_GOT_LO12_NC
|
| + Unsigned 12 bit byte offset for 64 bit load/store from the page of
|
| + the GOT entry for this symbol. Used in conjunction with
|
| + BFD_RELOC_AARCH64_ADR_GOTPAGE. Valid in LP64 ABI only.
|
| +
|
| + -- : BFD_RELOC_AARCH64_LD32_GOT_LO12_NC
|
| + Unsigned 12 bit byte offset for 32 bit load/store from the page of
|
| + the GOT entry for this symbol. Used in conjunction with
|
| + BFD_RELOC_AARCH64_ADR_GOTPAGE. Valid in ILP32 ABI only.
|
| +
|
| + -- : BFD_RELOC_AARCH64_TLSGD_ADR_PAGE21
|
| + Get to the page base of the global offset table entry for a symbols
|
| + tls_index structure as part of an adrp instruction using a 21 bit
|
| + PC relative value. Used in conjunction with
|
| + BFD_RELOC_AARCH64_TLSGD_ADD_LO12_NC.
|
| +
|
| + -- : BFD_RELOC_AARCH64_TLSGD_ADD_LO12_NC
|
| + Unsigned 12 bit byte offset to global offset table entry for a
|
| + symbols tls_index structure. Used in conjunction with
|
| + BFD_RELOC_AARCH64_TLSGD_ADR_PAGE21.
|
| +
|
| + -- : BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G1
|
| + AArch64 TLS INITIAL EXEC relocation.
|
| +
|
| + -- : BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC
|
| + AArch64 TLS INITIAL EXEC relocation.
|
| +
|
| + -- : BFD_RELOC_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21
|
| + AArch64 TLS INITIAL EXEC relocation.
|
| +
|
| + -- : BFD_RELOC_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC
|
| + AArch64 TLS INITIAL EXEC relocation.
|
| +
|
| + -- : BFD_RELOC_AARCH64_TLSIE_LD32_GOTTPREL_LO12_NC
|
| + AArch64 TLS INITIAL EXEC relocation.
|
| +
|
| + -- : BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_PREL19
|
| + AArch64 TLS INITIAL EXEC relocation.
|
| +
|
| + -- : BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G2
|
| + AArch64 TLS LOCAL EXEC relocation.
|
| +
|
| + -- : BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1
|
| + AArch64 TLS LOCAL EXEC relocation.
|
| +
|
| + -- : BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1_NC
|
| + AArch64 TLS LOCAL EXEC relocation.
|
| +
|
| + -- : BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G0
|
| + AArch64 TLS LOCAL EXEC relocation.
|
| +
|
| + -- : BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G0_NC
|
| + AArch64 TLS LOCAL EXEC relocation.
|
| +
|
| + -- : BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_HI12
|
| + AArch64 TLS LOCAL EXEC relocation.
|
| +
|
| + -- : BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_LO12
|
| + AArch64 TLS LOCAL EXEC relocation.
|
| +
|
| + -- : BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_LO12_NC
|
| + AArch64 TLS LOCAL EXEC relocation.
|
| +
|
| + -- : BFD_RELOC_AARCH64_TLSDESC_LD_PREL19
|
| + AArch64 TLS DESC relocation.
|
| +
|
| + -- : BFD_RELOC_AARCH64_TLSDESC_ADR_PREL21
|
| + AArch64 TLS DESC relocation.
|
| +
|
| + -- : BFD_RELOC_AARCH64_TLSDESC_ADR_PAGE21
|
| + AArch64 TLS DESC relocation.
|
| +
|
| + -- : BFD_RELOC_AARCH64_TLSDESC_LD64_LO12_NC
|
| + AArch64 TLS DESC relocation.
|
| +
|
| + -- : BFD_RELOC_AARCH64_TLSDESC_LD32_LO12_NC
|
| + AArch64 TLS DESC relocation.
|
| +
|
| + -- : BFD_RELOC_AARCH64_TLSDESC_ADD_LO12_NC
|
| + AArch64 TLS DESC relocation.
|
| +
|
| + -- : BFD_RELOC_AARCH64_TLSDESC_OFF_G1
|
| + AArch64 TLS DESC relocation.
|
| +
|
| + -- : BFD_RELOC_AARCH64_TLSDESC_OFF_G0_NC
|
| + AArch64 TLS DESC relocation.
|
| +
|
| + -- : BFD_RELOC_AARCH64_TLSDESC_LDR
|
| + AArch64 TLS DESC relocation.
|
| +
|
| + -- : BFD_RELOC_AARCH64_TLSDESC_ADD
|
| + AArch64 TLS DESC relocation.
|
| +
|
| + -- : BFD_RELOC_AARCH64_TLSDESC_CALL
|
| + AArch64 TLS DESC relocation.
|
| +
|
| + -- : BFD_RELOC_AARCH64_COPY
|
| + AArch64 TLS relocation.
|
| +
|
| + -- : BFD_RELOC_AARCH64_GLOB_DAT
|
| + AArch64 TLS relocation.
|
| +
|
| + -- : BFD_RELOC_AARCH64_JUMP_SLOT
|
| + AArch64 TLS relocation.
|
| +
|
| + -- : BFD_RELOC_AARCH64_RELATIVE
|
| + AArch64 TLS relocation.
|
| +
|
| + -- : BFD_RELOC_AARCH64_TLS_DTPMOD
|
| + AArch64 TLS relocation.
|
| +
|
| + -- : BFD_RELOC_AARCH64_TLS_DTPREL
|
| + AArch64 TLS relocation.
|
| +
|
| + -- : BFD_RELOC_AARCH64_TLS_TPREL
|
| + AArch64 TLS relocation.
|
| +
|
| + -- : BFD_RELOC_AARCH64_TLSDESC
|
| + AArch64 TLS relocation.
|
| +
|
| + -- : BFD_RELOC_AARCH64_IRELATIVE
|
| + AArch64 support for STT_GNU_IFUNC.
|
| +
|
| + -- : BFD_RELOC_AARCH64_RELOC_END
|
| + AArch64 pseudo relocation code to mark the end of the AArch64
|
| + relocation enumerators that have direct mapping to ELF reloc codes.
|
| + There are a few more enumerators after this one; those are mainly
|
| + used by the AArch64 assembler for the internal fixup or to select
|
| + one of the above enumerators.
|
| +
|
| + -- : BFD_RELOC_AARCH64_GAS_INTERNAL_FIXUP
|
| + AArch64 pseudo relocation code to be used internally by the AArch64
|
| + assembler and not (currently) written to any object files.
|
| +
|
| + -- : BFD_RELOC_AARCH64_LDST_LO12
|
| + AArch64 unspecified load/store instruction, holding bits 0 to 11
|
| + of the address. Used in conjunction with
|
| + BFD_RELOC_AARCH64_ADR_HI21_PCREL.
|
| +
|
| + -- : BFD_RELOC_AARCH64_LD_GOT_LO12_NC
|
| + AArch64 pseudo relocation code to be used internally by the AArch64
|
| + assembler and not (currently) written to any object files.
|
| +
|
| + -- : BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_LO12_NC
|
| + AArch64 pseudo relocation code to be used internally by the AArch64
|
| + assembler and not (currently) written to any object files.
|
| +
|
| + -- : BFD_RELOC_AARCH64_TLSDESC_LD_LO12_NC
|
| + AArch64 pseudo relocation code to be used internally by the AArch64
|
| + assembler and not (currently) written to any object files.
|
| +
|
| -- : BFD_RELOC_TILEPRO_COPY
|
| -- : BFD_RELOC_TILEPRO_GLOB_DAT
|
| -- : BFD_RELOC_TILEPRO_JMP_SLOT
|
| @@ -6077,10 +6498,18 @@ attributes.
|
| -- : BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST_PCREL
|
| -- : BFD_RELOC_TILEGX_IMM16_X0_HW0_GOT
|
| -- : BFD_RELOC_TILEGX_IMM16_X1_HW0_GOT
|
| + -- : BFD_RELOC_TILEGX_IMM16_X0_HW0_PLT_PCREL
|
| + -- : BFD_RELOC_TILEGX_IMM16_X1_HW0_PLT_PCREL
|
| + -- : BFD_RELOC_TILEGX_IMM16_X0_HW1_PLT_PCREL
|
| + -- : BFD_RELOC_TILEGX_IMM16_X1_HW1_PLT_PCREL
|
| + -- : BFD_RELOC_TILEGX_IMM16_X0_HW2_PLT_PCREL
|
| + -- : BFD_RELOC_TILEGX_IMM16_X1_HW2_PLT_PCREL
|
| -- : BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_GOT
|
| -- : BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_GOT
|
| -- : BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_GOT
|
| -- : BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_GOT
|
| + -- : BFD_RELOC_TILEGX_IMM16_X0_HW3_PLT_PCREL
|
| + -- : BFD_RELOC_TILEGX_IMM16_X1_HW3_PLT_PCREL
|
| -- : BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_GD
|
| -- : BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_GD
|
| -- : BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_LE
|
| @@ -6095,6 +6524,12 @@ attributes.
|
| -- : BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_GD
|
| -- : BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_IE
|
| -- : BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_IE
|
| + -- : BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_PLT_PCREL
|
| + -- : BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_PLT_PCREL
|
| + -- : BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_PLT_PCREL
|
| + -- : BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_PLT_PCREL
|
| + -- : BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST_PLT_PCREL
|
| + -- : BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST_PLT_PCREL
|
| -- : BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_IE
|
| -- : BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_IE
|
| -- : BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_IE
|
| @@ -6619,6 +7054,7 @@ BFD_JUMP_TABLE macros.
|
| NAME##_bfd_is_target_special_symbol, \
|
| NAME##_get_lineno, \
|
| NAME##_find_nearest_line, \
|
| + _bfd_generic_find_nearest_line_discriminator, \
|
| _bfd_generic_find_line, \
|
| NAME##_find_inliner_info, \
|
| NAME##_bfd_make_debug_symbol, \
|
| @@ -6642,6 +7078,9 @@ BFD_JUMP_TABLE macros.
|
| bfd_boolean (*_bfd_find_nearest_line)
|
| (bfd *, struct bfd_section *, struct bfd_symbol **, bfd_vma,
|
| const char **, const char **, unsigned int *);
|
| + bfd_boolean (*_bfd_find_nearest_line_discriminator)
|
| + (bfd *, struct bfd_section *, struct bfd_symbol **, bfd_vma,
|
| + const char **, const char **, unsigned int *, unsigned int *);
|
| bfd_boolean (*_bfd_find_line)
|
| (bfd *, struct bfd_symbol **, struct bfd_symbol *,
|
| const char **, unsigned int *);
|
| @@ -7009,6 +7448,7 @@ i960 KB, and 68020 and 68030 for Motorola 68020 and 68030.
|
| #define bfd_mach_mips5000 5000
|
| #define bfd_mach_mips5400 5400
|
| #define bfd_mach_mips5500 5500
|
| + #define bfd_mach_mips5900 5900
|
| #define bfd_mach_mips6000 6000
|
| #define bfd_mach_mips7000 7000
|
| #define bfd_mach_mips8000 8000
|
| @@ -7047,6 +7487,10 @@ i960 KB, and 68020 and 68030 for Motorola 68020 and 68030.
|
| bfd_arch_k1om, /* Intel K1OM */
|
| #define bfd_mach_k1om (1 << 6)
|
| #define bfd_mach_k1om_intel_syntax (bfd_mach_k1om | bfd_mach_i386_intel_syntax)
|
| + #define bfd_mach_i386_nacl (1 << 7)
|
| + #define bfd_mach_i386_i386_nacl (bfd_mach_i386_i386 | bfd_mach_i386_nacl)
|
| + #define bfd_mach_x86_64_nacl (bfd_mach_x86_64 | bfd_mach_i386_nacl)
|
| + #define bfd_mach_x64_32_nacl (bfd_mach_x64_32 | bfd_mach_i386_nacl)
|
| bfd_arch_we32k, /* AT&T WE32xxx */
|
| bfd_arch_tahoe, /* CCI/Harris Tahoe */
|
| bfd_arch_i860, /* Intel 860 */
|
| @@ -7171,11 +7615,13 @@ i960 KB, and 68020 and 68030 for Motorola 68020 and 68030.
|
| bfd_arch_tic6x, /* Texas Instruments TMS320C6X */
|
| bfd_arch_tic80, /* TI TMS320c80 (MVP) */
|
| bfd_arch_v850, /* NEC V850 */
|
| + bfd_arch_v850_rh850,/* NEC V850 (using RH850 ABI) */
|
| #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
|
| + #define bfd_mach_v850e3v5 0x45335635 /* ('E'|'3'|'V'|'5') */
|
| bfd_arch_arc, /* ARC Cores */
|
| #define bfd_mach_arc_5 5
|
| #define bfd_mach_arc_6 6
|
| @@ -7211,6 +7657,8 @@ i960 KB, and 68020 and 68030 for Motorola 68020 and 68030.
|
| #define bfd_mach_mep 1
|
| #define bfd_mach_mep_h1 0x6831
|
| #define bfd_mach_mep_c5 0x6335
|
| + bfd_arch_metag,
|
| + #define bfd_mach_metag 1
|
| bfd_arch_ia64, /* HP/Intel ia64 */
|
| #define bfd_mach_ia64_elf64 64
|
| #define bfd_mach_ia64_elf32 32
|
| @@ -7280,7 +7728,12 @@ i960 KB, and 68020 and 68030 for Motorola 68020 and 68030.
|
| #define bfd_mach_msp14 14
|
| #define bfd_mach_msp15 15
|
| #define bfd_mach_msp16 16
|
| + #define bfd_mach_msp20 20
|
| #define bfd_mach_msp21 21
|
| + #define bfd_mach_msp22 22
|
| + #define bfd_mach_msp23 23
|
| + #define bfd_mach_msp24 24
|
| + #define bfd_mach_msp26 26
|
| #define bfd_mach_msp31 31
|
| #define bfd_mach_msp32 32
|
| #define bfd_mach_msp33 33
|
| @@ -7288,6 +7741,10 @@ i960 KB, and 68020 and 68030 for Motorola 68020 and 68030.
|
| #define bfd_mach_msp42 42
|
| #define bfd_mach_msp43 43
|
| #define bfd_mach_msp44 44
|
| + #define bfd_mach_msp430x 45
|
| + #define bfd_mach_msp46 46
|
| + #define bfd_mach_msp47 47
|
| + #define bfd_mach_msp54 54
|
| bfd_arch_xc16x, /* Infineon's XC16X Series. */
|
| #define bfd_mach_xc16x 1
|
| #define bfd_mach_xc16xl 2
|
| @@ -7309,6 +7766,11 @@ i960 KB, and 68020 and 68030 for Motorola 68020 and 68030.
|
| #define bfd_mach_tilepro 1
|
| #define bfd_mach_tilegx 1
|
| #define bfd_mach_tilegx32 2
|
| + bfd_arch_aarch64, /* AArch64 */
|
| + #define bfd_mach_aarch64 0
|
| + #define bfd_mach_aarch64_ilp32 32
|
| + bfd_arch_nios2,
|
| + #define bfd_mach_nios2 0
|
| bfd_arch_last
|
| };
|
|
|
| @@ -7801,17 +8263,32 @@ for LEN bytes of BUF.
|
| *Returns*
|
| Return the updated CRC32 value.
|
|
|
| -2.14.1.17 `get_debug_link_info'
|
| -...............................
|
| +2.14.1.17 `bfd_get_debug_link_info'
|
| +...................................
|
|
|
| *Synopsis*
|
| - char *get_debug_link_info (bfd *abfd, unsigned long *crc32_out);
|
| + char *bfd_get_debug_link_info (bfd *abfd, unsigned long *crc32_out);
|
| *Description*
|
| fetch the filename and CRC32 value for any separate debuginfo
|
| associated with ABFD. Return NULL if no such info found, otherwise
|
| -return filename and update CRC32_OUT.
|
| +return filename and update CRC32_OUT. The returned filename is
|
| +allocated with `malloc'; freeing it is the responsibility of the caller.
|
|
|
| -2.14.1.18 `separate_debug_file_exists'
|
| +2.14.1.18 `bfd_get_alt_debug_link_info'
|
| +.......................................
|
| +
|
| +*Synopsis*
|
| + char *bfd_get_alt_debug_link_info (bfd * abfd,
|
| + bfd_size_type *buildid_len,
|
| + bfd_byte **buildid_out);
|
| + *Description*
|
| +Fetch the filename and BuildID value for any alternate debuginfo
|
| +associated with ABFD. Return NULL if no such info found, otherwise
|
| +return filename and update BUILDID_LEN and BUILDID_OUT. The returned
|
| +filename and build_id are allocated with `malloc'; freeing them is the
|
| +responsibility of the caller.
|
| +
|
| +2.14.1.19 `separate_debug_file_exists'
|
| ......................................
|
|
|
| *Synopsis*
|
| @@ -7820,19 +8297,30 @@ return filename and update CRC32_OUT.
|
| *Description*
|
| Checks to see if NAME is a file and if its contents match CRC32.
|
|
|
| -2.14.1.19 `find_separate_debug_file'
|
| +2.14.1.20 `separate_alt_debug_file_exists'
|
| +..........................................
|
| +
|
| +*Synopsis*
|
| + bfd_boolean separate_alt_debug_file_exists
|
| + (char *name, unsigned long crc32);
|
| + *Description*
|
| +Checks to see if NAME is a file and if its BuildID matches BUILDID.
|
| +
|
| +2.14.1.21 `find_separate_debug_file'
|
| ....................................
|
|
|
| *Synopsis*
|
| char *find_separate_debug_file (bfd *abfd);
|
| *Description*
|
| -Searches ABFD for a reference to separate debugging information, scans
|
| -various locations in the filesystem, including the file tree rooted at
|
| -DEBUG_FILE_DIRECTORY, and returns a filename of such debugging
|
| -information if the file is found and has matching CRC32. Returns NULL
|
| -if no reference to debugging file exists, or file cannot be found.
|
| +Searches ABFD for a section called SECTION_NAME which is expected to
|
| +contain a reference to a file containing separate debugging
|
| +information. The function scans various locations in the filesystem,
|
| +including the file tree rooted at DEBUG_FILE_DIRECTORY, and returns the
|
| +first matching filename that it finds. If CHECK_CRC is TRUE then the
|
| +contents of the file must also match the CRC value contained in
|
| +SECTION_NAME. Returns NULL if no valid file could be found.
|
|
|
| -2.14.1.20 `bfd_follow_gnu_debuglink'
|
| +2.14.1.22 `bfd_follow_gnu_debuglink'
|
| ....................................
|
|
|
| *Synopsis*
|
| @@ -7853,7 +8341,27 @@ at build time. [XXX this feature is not currently implemented].
|
| pointer to a heap-allocated string containing the filename. The caller
|
| is responsible for freeing this string.
|
|
|
| -2.14.1.21 `bfd_create_gnu_debuglink_section'
|
| +2.14.1.23 `bfd_follow_gnu_debugaltlink'
|
| +.......................................
|
| +
|
| +*Synopsis*
|
| + char *bfd_follow_gnu_debugaltlink (bfd *abfd, const char *dir);
|
| + *Description*
|
| +Takes a BFD and searches it for a .gnu_debugaltlink section. If this
|
| +section is found, it examines the section for the name of a file
|
| +containing auxiliary debugging information. It then searches the
|
| +filesystem for this file in a set of standard locations, including the
|
| +directory tree rooted at DIR, and if found returns the full filename.
|
| +
|
| + If DIR is NULL, it will search a default path configured into libbfd
|
| +at build time. [FIXME: This feature is not currently implemented].
|
| +
|
| + *Returns*
|
| +`NULL' on any errors or failure to locate the debug file, otherwise a
|
| +pointer to a heap-allocated string containing the filename. The caller
|
| +is responsible for freeing this string.
|
| +
|
| +2.14.1.24 `bfd_create_gnu_debuglink_section'
|
| ............................................
|
|
|
| *Synopsis*
|
| @@ -7867,7 +8375,7 @@ sized to be big enough to contain a link to the specified FILENAME.
|
| A pointer to the new section is returned if all is ok. Otherwise
|
| `NULL' is returned and bfd_error is set.
|
|
|
| -2.14.1.22 `bfd_fill_in_gnu_debuglink_section'
|
| +2.14.1.25 `bfd_fill_in_gnu_debuglink_section'
|
| .............................................
|
|
|
| *Synopsis*
|
| @@ -8065,7 +8573,7 @@ The file caching mechanism is embedded within BFD and allows the
|
| application to open as many BFDs as it wants without regard to the
|
| underlying operating system's file descriptor limit (often as low as 20
|
| open files). The module in `cache.c' maintains a least recently used
|
| -list of `BFD_CACHE_MAX_OPEN' files, and exports the name
|
| +list of `bfd_cache_max_open' files, and exports the name
|
| `bfd_cache_lookup', which runs around and makes sure that the required
|
| BFD is open. If not, then it chooses a file to close, closes it and
|
| opens the one wanted, returning its file handle.
|
| @@ -8201,9 +8709,9 @@ The linker proper will call the `_bfd_link_add_symbols' entry point for
|
| each object file or archive which is to be linked (typically these are
|
| the files named on the command line, but some may also come from the
|
| linker script). The entry point is responsible for examining the file.
|
| -For an object file, BFD must add any relevant symbol information to
|
| -the hash table. For an archive, BFD must determine which elements of
|
| -the archive should be used and adding them to the link.
|
| +For an object file, BFD must add any relevant symbol information to the
|
| +hash table. For an archive, BFD must determine which elements of the
|
| +archive should be used and adding them to the link.
|
|
|
| The a.out version of this entry point is
|
| `NAME(aout,link_add_symbols)'.
|
| @@ -8509,8 +9017,8 @@ and FALSE on failure.
|
| #define bfd_define_common_symbol(output_bfd, info, h) \
|
| BFD_SEND (output_bfd, _bfd_define_common_symbol, (output_bfd, info, h))
|
|
|
| -2.17.3.7 `bfd_find_version_for_sym '
|
| -....................................
|
| +2.17.3.7 `bfd_find_version_for_sym'
|
| +...................................
|
|
|
| *Synopsis*
|
| struct bfd_elf_version_tree * bfd_find_version_for_sym
|
| @@ -9107,13 +9615,14 @@ truncated; if true, the long section names extension is employed. The
|
| hook points to a function that allows the value of the flag to be
|
| altered at runtime, on formats that support long section names at all;
|
| on other formats it points to a stub that returns an error indication.
|
| -With input BFDs, the flag is set according to whether any long section
|
| -names are detected while reading the section headers. For a completely
|
| -new BFD, the flag is set to the default for the target format. This
|
| -information can be used by a client of the BFD library when deciding
|
| -what output format to generate, and means that a BFD that is opened for
|
| -read and subsequently converted to a writeable BFD and modified
|
| -in-place will retain whatever format it had on input.
|
| +
|
| + With input BFDs, the flag is set according to whether any long
|
| +section names are detected while reading the section headers. For a
|
| +completely new BFD, the flag is set to the default for the target
|
| +format. This information can be used by a client of the BFD library
|
| +when deciding what output format to generate, and means that a BFD that
|
| +is opened for read and subsequently converted to a writeable BFD and
|
| +modified in-place will retain whatever format it had on input.
|
|
|
| If `COFF_LONG_SECTION_NAMES' is simply defined (blank), or is
|
| defined to the value "1", then long section names are enabled by
|
| @@ -10531,39 +11040,39 @@ BFD Index
|
| (line 218)
|
| * bfd_alloc2: Opening and Closing.
|
| (line 227)
|
| -* bfd_alt_mach_code: BFD front end. (line 746)
|
| -* bfd_arch_bits_per_address: Architectures. (line 561)
|
| -* bfd_arch_bits_per_byte: Architectures. (line 553)
|
| -* bfd_arch_default_fill: Architectures. (line 642)
|
| -* bfd_arch_get_compatible: Architectures. (line 496)
|
| -* bfd_arch_list: Architectures. (line 487)
|
| -* bfd_arch_mach_octets_per_byte: Architectures. (line 630)
|
| -* BFD_ARELOC_BFIN_ADD: howto manager. (line 1107)
|
| -* BFD_ARELOC_BFIN_ADDR: howto manager. (line 1158)
|
| -* BFD_ARELOC_BFIN_AND: howto manager. (line 1128)
|
| -* BFD_ARELOC_BFIN_COMP: howto manager. (line 1149)
|
| -* BFD_ARELOC_BFIN_CONST: howto manager. (line 1104)
|
| -* BFD_ARELOC_BFIN_DIV: howto manager. (line 1116)
|
| -* BFD_ARELOC_BFIN_HWPAGE: howto manager. (line 1155)
|
| -* BFD_ARELOC_BFIN_LAND: howto manager. (line 1137)
|
| -* BFD_ARELOC_BFIN_LEN: howto manager. (line 1143)
|
| -* BFD_ARELOC_BFIN_LOR: howto manager. (line 1140)
|
| -* BFD_ARELOC_BFIN_LSHIFT: howto manager. (line 1122)
|
| -* BFD_ARELOC_BFIN_MOD: howto manager. (line 1119)
|
| -* BFD_ARELOC_BFIN_MULT: howto manager. (line 1113)
|
| -* BFD_ARELOC_BFIN_NEG: howto manager. (line 1146)
|
| -* BFD_ARELOC_BFIN_OR: howto manager. (line 1131)
|
| -* BFD_ARELOC_BFIN_PAGE: howto manager. (line 1152)
|
| -* BFD_ARELOC_BFIN_PUSH: howto manager. (line 1101)
|
| -* BFD_ARELOC_BFIN_RSHIFT: howto manager. (line 1125)
|
| -* BFD_ARELOC_BFIN_SUB: howto manager. (line 1110)
|
| -* BFD_ARELOC_BFIN_XOR: howto manager. (line 1134)
|
| +* bfd_alt_mach_code: Miscellaneous. (line 308)
|
| +* bfd_arch_bits_per_address: Architectures. (line 584)
|
| +* bfd_arch_bits_per_byte: Architectures. (line 576)
|
| +* bfd_arch_default_fill: Architectures. (line 665)
|
| +* bfd_arch_get_compatible: Architectures. (line 519)
|
| +* bfd_arch_list: Architectures. (line 510)
|
| +* bfd_arch_mach_octets_per_byte: Architectures. (line 653)
|
| +* BFD_ARELOC_BFIN_ADD: howto manager. (line 1120)
|
| +* BFD_ARELOC_BFIN_ADDR: howto manager. (line 1171)
|
| +* BFD_ARELOC_BFIN_AND: howto manager. (line 1141)
|
| +* BFD_ARELOC_BFIN_COMP: howto manager. (line 1162)
|
| +* BFD_ARELOC_BFIN_CONST: howto manager. (line 1117)
|
| +* BFD_ARELOC_BFIN_DIV: howto manager. (line 1129)
|
| +* BFD_ARELOC_BFIN_HWPAGE: howto manager. (line 1168)
|
| +* BFD_ARELOC_BFIN_LAND: howto manager. (line 1150)
|
| +* BFD_ARELOC_BFIN_LEN: howto manager. (line 1156)
|
| +* BFD_ARELOC_BFIN_LOR: howto manager. (line 1153)
|
| +* BFD_ARELOC_BFIN_LSHIFT: howto manager. (line 1135)
|
| +* BFD_ARELOC_BFIN_MOD: howto manager. (line 1132)
|
| +* BFD_ARELOC_BFIN_MULT: howto manager. (line 1126)
|
| +* BFD_ARELOC_BFIN_NEG: howto manager. (line 1159)
|
| +* BFD_ARELOC_BFIN_OR: howto manager. (line 1144)
|
| +* BFD_ARELOC_BFIN_PAGE: howto manager. (line 1165)
|
| +* BFD_ARELOC_BFIN_PUSH: howto manager. (line 1114)
|
| +* BFD_ARELOC_BFIN_RSHIFT: howto manager. (line 1138)
|
| +* BFD_ARELOC_BFIN_SUB: howto manager. (line 1123)
|
| +* BFD_ARELOC_BFIN_XOR: howto manager. (line 1147)
|
| * 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 254)
|
| -* bfd_canonicalize_reloc: BFD front end. (line 462)
|
| +* bfd_canonicalize_reloc: Miscellaneous. (line 19)
|
| * bfd_canonicalize_symtab: symbol handling functions.
|
| (line 50)
|
| * bfd_check_format: Formats. (line 21)
|
| @@ -10573,9 +11082,9 @@ BFD Index
|
| (line 143)
|
| * bfd_close_all_done: Opening and Closing.
|
| (line 161)
|
| -* bfd_coff_backend_data: coff. (line 304)
|
| -* bfd_copy_private_bfd_data: BFD front end. (line 601)
|
| -* bfd_copy_private_header_data: BFD front end. (line 583)
|
| +* bfd_coff_backend_data: coff. (line 305)
|
| +* bfd_copy_private_bfd_data: Miscellaneous. (line 158)
|
| +* bfd_copy_private_header_data: Miscellaneous. (line 140)
|
| * bfd_copy_private_section_data: section prototypes. (line 278)
|
| * bfd_copy_private_symbol_data: symbol handling functions.
|
| (line 140)
|
| @@ -10585,65 +11094,71 @@ BFD Index
|
| * bfd_create: Opening and Closing.
|
| (line 180)
|
| * bfd_create_gnu_debuglink_section: Opening and Closing.
|
| - (line 320)
|
| + (line 366)
|
| * bfd_decode_symclass: symbol handling functions.
|
| (line 111)
|
| -* bfd_default_arch_struct: Architectures. (line 508)
|
| -* bfd_default_compatible: Architectures. (line 570)
|
| -* bfd_default_reloc_type_lookup: howto manager. (line 2809)
|
| -* bfd_default_scan: Architectures. (line 579)
|
| -* bfd_default_set_arch_mach: Architectures. (line 526)
|
| -* bfd_demangle: BFD front end. (line 844)
|
| -* bfd_emul_get_commonpagesize: BFD front end. (line 824)
|
| -* bfd_emul_get_maxpagesize: BFD front end. (line 804)
|
| -* bfd_emul_set_commonpagesize: BFD front end. (line 835)
|
| -* bfd_emul_set_maxpagesize: BFD front end. (line 815)
|
| -* bfd_errmsg: BFD front end. (line 355)
|
| +* bfd_default_arch_struct: Architectures. (line 531)
|
| +* bfd_default_compatible: Architectures. (line 593)
|
| +* bfd_default_reloc_type_lookup: howto manager. (line 3268)
|
| +* bfd_default_scan: Architectures. (line 602)
|
| +* bfd_default_set_arch_mach: Architectures. (line 549)
|
| +* bfd_demangle: Miscellaneous. (line 359)
|
| +* bfd_emul_get_commonpagesize: Miscellaneous. (line 339)
|
| +* bfd_emul_get_maxpagesize: Miscellaneous. (line 319)
|
| +* bfd_emul_set_commonpagesize: Miscellaneous. (line 350)
|
| +* bfd_emul_set_maxpagesize: Miscellaneous. (line 330)
|
| +* bfd_errmsg: Error reporting. (line 67)
|
| * bfd_fdopenr: Opening and Closing.
|
| (line 51)
|
| * bfd_fill_in_gnu_debuglink_section: Opening and Closing.
|
| - (line 334)
|
| -* bfd_find_target: bfd_target. (line 469)
|
| + (line 380)
|
| +* bfd_find_target: bfd_target. (line 473)
|
| * bfd_find_version_for_sym: Writing the symbol table.
|
| (line 81)
|
| +* bfd_follow_gnu_debugaltlink: Opening and Closing.
|
| + (line 346)
|
| * bfd_follow_gnu_debuglink: Opening and Closing.
|
| - (line 299)
|
| + (line 325)
|
| * bfd_fopen: Opening and Closing.
|
| (line 12)
|
| * bfd_format_string: Formats. (line 79)
|
| * bfd_generic_define_common_symbol: Writing the symbol table.
|
| (line 68)
|
| * bfd_generic_discard_group: section prototypes. (line 304)
|
| -* bfd_generic_gc_sections: howto manager. (line 2840)
|
| -* bfd_generic_get_relocated_section_contents: howto manager. (line 2870)
|
| +* bfd_generic_gc_sections: howto manager. (line 3299)
|
| +* bfd_generic_get_relocated_section_contents: howto manager. (line 3329)
|
| * bfd_generic_is_group_section: section prototypes. (line 296)
|
| -* bfd_generic_lookup_section_flags: howto manager. (line 2850)
|
| -* bfd_generic_merge_sections: howto manager. (line 2860)
|
| -* bfd_generic_relax_section: howto manager. (line 2827)
|
| -* bfd_get_arch: Architectures. (line 537)
|
| -* bfd_get_arch_info: Architectures. (line 589)
|
| -* bfd_get_arch_size: BFD front end. (line 506)
|
| -* bfd_get_assert_handler: BFD front end. (line 438)
|
| -* bfd_get_error: BFD front end. (line 336)
|
| -* bfd_get_error_handler: BFD front end. (line 406)
|
| -* bfd_get_gp_size: BFD front end. (line 547)
|
| +* bfd_generic_lookup_section_flags: howto manager. (line 3309)
|
| +* bfd_generic_merge_sections: howto manager. (line 3319)
|
| +* bfd_generic_relax_section: howto manager. (line 3286)
|
| +* bfd_get_alt_debug_link_info: Opening and Closing.
|
| + (line 279)
|
| +* bfd_get_arch: Architectures. (line 560)
|
| +* bfd_get_arch_info: Architectures. (line 612)
|
| +* bfd_get_arch_size: Miscellaneous. (line 63)
|
| +* bfd_get_assert_handler: Error reporting. (line 150)
|
| +* bfd_get_debug_link_info: Opening and Closing.
|
| + (line 268)
|
| +* bfd_get_error: Error reporting. (line 48)
|
| +* bfd_get_error_handler: Error reporting. (line 118)
|
| +* bfd_get_gp_size: Miscellaneous. (line 104)
|
| * bfd_get_linker_section: section prototypes. (line 36)
|
| -* bfd_get_mach: Architectures. (line 545)
|
| -* bfd_get_mtime: BFD front end. (line 895)
|
| -* bfd_get_next_mapent: Archives. (line 52)
|
| +* bfd_get_mach: Architectures. (line 568)
|
| +* bfd_get_mtime: Miscellaneous. (line 410)
|
| +* bfd_get_next_mapent: Archives. (line 58)
|
| * bfd_get_next_section_by_name: section prototypes. (line 26)
|
| -* bfd_get_reloc_code_name: howto manager. (line 2818)
|
| +* bfd_get_reloc_code_name: howto manager. (line 3277)
|
| * bfd_get_reloc_size: typedef arelent. (line 327)
|
| -* bfd_get_reloc_upper_bound: BFD front end. (line 452)
|
| +* bfd_get_reloc_upper_bound: Miscellaneous. (line 9)
|
| * bfd_get_section_by_name: section prototypes. (line 17)
|
| * bfd_get_section_by_name_if: section prototypes. (line 45)
|
| * bfd_get_section_contents: section prototypes. (line 251)
|
| -* bfd_get_sign_extend_vma: BFD front end. (line 519)
|
| +* bfd_get_sign_extend_vma: Miscellaneous. (line 76)
|
| * bfd_get_size <1>: Internal. (line 25)
|
| -* bfd_get_size: BFD front end. (line 904)
|
| +* bfd_get_size: Miscellaneous. (line 419)
|
| * bfd_get_symtab_upper_bound: symbol handling functions.
|
| (line 6)
|
| -* bfd_get_target_info: bfd_target. (line 485)
|
| +* bfd_get_target_info: bfd_target. (line 489)
|
| * bfd_get_unique_section_name: section prototypes. (line 64)
|
| * bfd_h_put_size: Internal. (line 97)
|
| * bfd_hash_allocate: Creating and Freeing a Hash Table.
|
| @@ -10677,7 +11192,7 @@ BFD Index
|
| * bfd_link_split_section: Writing the symbol table.
|
| (line 44)
|
| * bfd_log2: Internal. (line 164)
|
| -* bfd_lookup_arch: Architectures. (line 597)
|
| +* bfd_lookup_arch: Architectures. (line 620)
|
| * bfd_make_debug_symbol: symbol handling functions.
|
| (line 102)
|
| * bfd_make_empty_symbol: symbol handling functions.
|
| @@ -10693,1750 +11208,1962 @@ BFD Index
|
| (line 190)
|
| * bfd_malloc_and_get_section: section prototypes. (line 268)
|
| * bfd_map_over_sections: section prototypes. (line 178)
|
| -* bfd_merge_private_bfd_data: BFD front end. (line 617)
|
| -* bfd_mmap: BFD front end. (line 933)
|
| -* bfd_octets_per_byte: Architectures. (line 620)
|
| +* bfd_merge_private_bfd_data: Miscellaneous. (line 174)
|
| +* bfd_mmap: Miscellaneous. (line 448)
|
| +* bfd_octets_per_byte: Architectures. (line 643)
|
| * bfd_open_file: File Caching. (line 52)
|
| * bfd_openr: Opening and Closing.
|
| (line 35)
|
| * bfd_openr_iovec: Opening and Closing.
|
| (line 83)
|
| -* bfd_openr_next_archived_file: Archives. (line 78)
|
| +* bfd_openr_next_archived_file: Archives. (line 84)
|
| * bfd_openstreamr: Opening and Closing.
|
| (line 74)
|
| * bfd_openw: Opening and Closing.
|
| (line 131)
|
| * bfd_perform_relocation: typedef arelent. (line 364)
|
| -* bfd_perror: BFD front end. (line 364)
|
| -* bfd_preserve_finish: BFD front end. (line 794)
|
| -* bfd_preserve_restore: BFD front end. (line 784)
|
| -* bfd_preserve_save: BFD front end. (line 768)
|
| +* bfd_perror: Error reporting. (line 76)
|
| * bfd_print_symbol_vandf: symbol handling functions.
|
| (line 70)
|
| -* bfd_printable_arch_mach: Architectures. (line 608)
|
| -* bfd_printable_name: Architectures. (line 468)
|
| +* bfd_printable_arch_mach: Architectures. (line 631)
|
| +* bfd_printable_name: Architectures. (line 491)
|
| * bfd_put_size: Internal. (line 22)
|
| * BFD_RELOC_12_PCREL: howto manager. (line 39)
|
| * BFD_RELOC_14: howto manager. (line 31)
|
| * BFD_RELOC_16: howto manager. (line 30)
|
| -* BFD_RELOC_16_BASEREL: howto manager. (line 95)
|
| +* BFD_RELOC_16_BASEREL: howto manager. (line 99)
|
| * BFD_RELOC_16_GOT_PCREL: howto manager. (line 52)
|
| * BFD_RELOC_16_GOTOFF: howto manager. (line 55)
|
| * BFD_RELOC_16_PCREL: howto manager. (line 38)
|
| -* BFD_RELOC_16_PCREL_S2: howto manager. (line 107)
|
| +* BFD_RELOC_16_PCREL_S2: howto manager. (line 111)
|
| * BFD_RELOC_16_PLT_PCREL: howto manager. (line 63)
|
| * BFD_RELOC_16_PLTOFF: howto manager. (line 67)
|
| -* BFD_RELOC_16C_ABS20: howto manager. (line 2170)
|
| -* BFD_RELOC_16C_ABS20_C: howto manager. (line 2171)
|
| -* BFD_RELOC_16C_ABS24: howto manager. (line 2172)
|
| -* BFD_RELOC_16C_ABS24_C: howto manager. (line 2173)
|
| -* BFD_RELOC_16C_DISP04: howto manager. (line 2150)
|
| -* BFD_RELOC_16C_DISP04_C: howto manager. (line 2151)
|
| -* BFD_RELOC_16C_DISP08: howto manager. (line 2152)
|
| -* BFD_RELOC_16C_DISP08_C: howto manager. (line 2153)
|
| -* BFD_RELOC_16C_DISP16: howto manager. (line 2154)
|
| -* BFD_RELOC_16C_DISP16_C: howto manager. (line 2155)
|
| -* BFD_RELOC_16C_DISP24: howto manager. (line 2156)
|
| -* BFD_RELOC_16C_DISP24_C: howto manager. (line 2157)
|
| -* BFD_RELOC_16C_DISP24a: howto manager. (line 2158)
|
| -* BFD_RELOC_16C_DISP24a_C: howto manager. (line 2159)
|
| -* BFD_RELOC_16C_IMM04: howto manager. (line 2174)
|
| -* BFD_RELOC_16C_IMM04_C: howto manager. (line 2175)
|
| -* BFD_RELOC_16C_IMM16: howto manager. (line 2176)
|
| -* BFD_RELOC_16C_IMM16_C: howto manager. (line 2177)
|
| -* BFD_RELOC_16C_IMM20: howto manager. (line 2178)
|
| -* BFD_RELOC_16C_IMM20_C: howto manager. (line 2179)
|
| -* BFD_RELOC_16C_IMM24: howto manager. (line 2180)
|
| -* BFD_RELOC_16C_IMM24_C: howto manager. (line 2181)
|
| -* BFD_RELOC_16C_IMM32: howto manager. (line 2182)
|
| -* BFD_RELOC_16C_IMM32_C: howto manager. (line 2183)
|
| -* BFD_RELOC_16C_NUM08: howto manager. (line 2144)
|
| -* BFD_RELOC_16C_NUM08_C: howto manager. (line 2145)
|
| -* BFD_RELOC_16C_NUM16: howto manager. (line 2146)
|
| -* BFD_RELOC_16C_NUM16_C: howto manager. (line 2147)
|
| -* BFD_RELOC_16C_NUM32: howto manager. (line 2148)
|
| -* BFD_RELOC_16C_NUM32_C: howto manager. (line 2149)
|
| -* BFD_RELOC_16C_REG04: howto manager. (line 2160)
|
| -* BFD_RELOC_16C_REG04_C: howto manager. (line 2161)
|
| -* BFD_RELOC_16C_REG04a: howto manager. (line 2162)
|
| -* BFD_RELOC_16C_REG04a_C: howto manager. (line 2163)
|
| -* BFD_RELOC_16C_REG14: howto manager. (line 2164)
|
| -* BFD_RELOC_16C_REG14_C: howto manager. (line 2165)
|
| -* BFD_RELOC_16C_REG16: howto manager. (line 2166)
|
| -* BFD_RELOC_16C_REG16_C: howto manager. (line 2167)
|
| -* BFD_RELOC_16C_REG20: howto manager. (line 2168)
|
| -* BFD_RELOC_16C_REG20_C: howto manager. (line 2169)
|
| -* BFD_RELOC_23_PCREL_S2: howto manager. (line 108)
|
| +* BFD_RELOC_16C_ABS20: howto manager. (line 2236)
|
| +* BFD_RELOC_16C_ABS20_C: howto manager. (line 2237)
|
| +* BFD_RELOC_16C_ABS24: howto manager. (line 2238)
|
| +* BFD_RELOC_16C_ABS24_C: howto manager. (line 2239)
|
| +* BFD_RELOC_16C_DISP04: howto manager. (line 2216)
|
| +* BFD_RELOC_16C_DISP04_C: howto manager. (line 2217)
|
| +* BFD_RELOC_16C_DISP08: howto manager. (line 2218)
|
| +* BFD_RELOC_16C_DISP08_C: howto manager. (line 2219)
|
| +* BFD_RELOC_16C_DISP16: howto manager. (line 2220)
|
| +* BFD_RELOC_16C_DISP16_C: howto manager. (line 2221)
|
| +* BFD_RELOC_16C_DISP24: howto manager. (line 2222)
|
| +* BFD_RELOC_16C_DISP24_C: howto manager. (line 2223)
|
| +* BFD_RELOC_16C_DISP24a: howto manager. (line 2224)
|
| +* BFD_RELOC_16C_DISP24a_C: howto manager. (line 2225)
|
| +* BFD_RELOC_16C_IMM04: howto manager. (line 2240)
|
| +* BFD_RELOC_16C_IMM04_C: howto manager. (line 2241)
|
| +* BFD_RELOC_16C_IMM16: howto manager. (line 2242)
|
| +* BFD_RELOC_16C_IMM16_C: howto manager. (line 2243)
|
| +* BFD_RELOC_16C_IMM20: howto manager. (line 2244)
|
| +* BFD_RELOC_16C_IMM20_C: howto manager. (line 2245)
|
| +* BFD_RELOC_16C_IMM24: howto manager. (line 2246)
|
| +* BFD_RELOC_16C_IMM24_C: howto manager. (line 2247)
|
| +* BFD_RELOC_16C_IMM32: howto manager. (line 2248)
|
| +* BFD_RELOC_16C_IMM32_C: howto manager. (line 2249)
|
| +* BFD_RELOC_16C_NUM08: howto manager. (line 2210)
|
| +* BFD_RELOC_16C_NUM08_C: howto manager. (line 2211)
|
| +* BFD_RELOC_16C_NUM16: howto manager. (line 2212)
|
| +* BFD_RELOC_16C_NUM16_C: howto manager. (line 2213)
|
| +* BFD_RELOC_16C_NUM32: howto manager. (line 2214)
|
| +* BFD_RELOC_16C_NUM32_C: howto manager. (line 2215)
|
| +* BFD_RELOC_16C_REG04: howto manager. (line 2226)
|
| +* BFD_RELOC_16C_REG04_C: howto manager. (line 2227)
|
| +* BFD_RELOC_16C_REG04a: howto manager. (line 2228)
|
| +* BFD_RELOC_16C_REG04a_C: howto manager. (line 2229)
|
| +* BFD_RELOC_16C_REG14: howto manager. (line 2230)
|
| +* BFD_RELOC_16C_REG14_C: howto manager. (line 2231)
|
| +* BFD_RELOC_16C_REG16: howto manager. (line 2232)
|
| +* BFD_RELOC_16C_REG16_C: howto manager. (line 2233)
|
| +* BFD_RELOC_16C_REG20: howto manager. (line 2234)
|
| +* BFD_RELOC_16C_REG20_C: howto manager. (line 2235)
|
| +* BFD_RELOC_23_PCREL_S2: howto manager. (line 112)
|
| * BFD_RELOC_24: howto manager. (line 29)
|
| * BFD_RELOC_24_PCREL: howto manager. (line 37)
|
| * BFD_RELOC_24_PLT_PCREL: howto manager. (line 62)
|
| * BFD_RELOC_26: howto manager. (line 28)
|
| * BFD_RELOC_32: howto manager. (line 27)
|
| -* BFD_RELOC_32_BASEREL: howto manager. (line 94)
|
| +* BFD_RELOC_32_BASEREL: howto manager. (line 98)
|
| * BFD_RELOC_32_GOT_PCREL: howto manager. (line 51)
|
| * BFD_RELOC_32_GOTOFF: howto manager. (line 54)
|
| * BFD_RELOC_32_PCREL: howto manager. (line 36)
|
| -* BFD_RELOC_32_PCREL_S2: howto manager. (line 106)
|
| +* BFD_RELOC_32_PCREL_S2: howto manager. (line 110)
|
| * BFD_RELOC_32_PLT_PCREL: howto manager. (line 61)
|
| * BFD_RELOC_32_PLTOFF: howto manager. (line 66)
|
| * BFD_RELOC_32_SECREL: howto manager. (line 48)
|
| -* BFD_RELOC_386_COPY: howto manager. (line 572)
|
| -* BFD_RELOC_386_GLOB_DAT: howto manager. (line 573)
|
| -* BFD_RELOC_386_GOT32: howto manager. (line 570)
|
| -* BFD_RELOC_386_GOTOFF: howto manager. (line 576)
|
| -* BFD_RELOC_386_GOTPC: howto manager. (line 577)
|
| -* BFD_RELOC_386_IRELATIVE: howto manager. (line 593)
|
| -* BFD_RELOC_386_JUMP_SLOT: howto manager. (line 574)
|
| -* BFD_RELOC_386_PLT32: howto manager. (line 571)
|
| -* BFD_RELOC_386_RELATIVE: howto manager. (line 575)
|
| -* BFD_RELOC_386_TLS_DESC: howto manager. (line 592)
|
| -* BFD_RELOC_386_TLS_DESC_CALL: howto manager. (line 591)
|
| -* BFD_RELOC_386_TLS_DTPMOD32: howto manager. (line 587)
|
| -* BFD_RELOC_386_TLS_DTPOFF32: howto manager. (line 588)
|
| -* BFD_RELOC_386_TLS_GD: howto manager. (line 582)
|
| -* BFD_RELOC_386_TLS_GOTDESC: howto manager. (line 590)
|
| -* BFD_RELOC_386_TLS_GOTIE: howto manager. (line 580)
|
| -* BFD_RELOC_386_TLS_IE: howto manager. (line 579)
|
| -* BFD_RELOC_386_TLS_IE_32: howto manager. (line 585)
|
| -* BFD_RELOC_386_TLS_LDM: howto manager. (line 583)
|
| -* BFD_RELOC_386_TLS_LDO_32: howto manager. (line 584)
|
| -* BFD_RELOC_386_TLS_LE: howto manager. (line 581)
|
| -* BFD_RELOC_386_TLS_LE_32: howto manager. (line 586)
|
| -* BFD_RELOC_386_TLS_TPOFF: howto manager. (line 578)
|
| -* BFD_RELOC_386_TLS_TPOFF32: howto manager. (line 589)
|
| -* BFD_RELOC_390_12: howto manager. (line 1765)
|
| -* BFD_RELOC_390_20: howto manager. (line 1865)
|
| -* BFD_RELOC_390_COPY: howto manager. (line 1774)
|
| -* BFD_RELOC_390_GLOB_DAT: howto manager. (line 1777)
|
| -* BFD_RELOC_390_GOT12: howto manager. (line 1768)
|
| -* BFD_RELOC_390_GOT16: howto manager. (line 1789)
|
| -* BFD_RELOC_390_GOT20: howto manager. (line 1866)
|
| -* BFD_RELOC_390_GOT64: howto manager. (line 1807)
|
| -* BFD_RELOC_390_GOTENT: howto manager. (line 1813)
|
| -* BFD_RELOC_390_GOTOFF64: howto manager. (line 1816)
|
| -* BFD_RELOC_390_GOTPC: howto manager. (line 1786)
|
| -* BFD_RELOC_390_GOTPCDBL: howto manager. (line 1804)
|
| -* BFD_RELOC_390_GOTPLT12: howto manager. (line 1819)
|
| -* BFD_RELOC_390_GOTPLT16: howto manager. (line 1822)
|
| -* BFD_RELOC_390_GOTPLT20: howto manager. (line 1867)
|
| -* BFD_RELOC_390_GOTPLT32: howto manager. (line 1825)
|
| -* BFD_RELOC_390_GOTPLT64: howto manager. (line 1828)
|
| -* BFD_RELOC_390_GOTPLTENT: howto manager. (line 1831)
|
| -* BFD_RELOC_390_IRELATIVE: howto manager. (line 1871)
|
| -* BFD_RELOC_390_JMP_SLOT: howto manager. (line 1780)
|
| -* BFD_RELOC_390_PC16DBL: howto manager. (line 1792)
|
| -* BFD_RELOC_390_PC32DBL: howto manager. (line 1798)
|
| -* BFD_RELOC_390_PLT16DBL: howto manager. (line 1795)
|
| -* BFD_RELOC_390_PLT32: howto manager. (line 1771)
|
| -* BFD_RELOC_390_PLT32DBL: howto manager. (line 1801)
|
| -* BFD_RELOC_390_PLT64: howto manager. (line 1810)
|
| -* BFD_RELOC_390_PLTOFF16: howto manager. (line 1834)
|
| -* BFD_RELOC_390_PLTOFF32: howto manager. (line 1837)
|
| -* BFD_RELOC_390_PLTOFF64: howto manager. (line 1840)
|
| -* BFD_RELOC_390_RELATIVE: howto manager. (line 1783)
|
| -* BFD_RELOC_390_TLS_DTPMOD: howto manager. (line 1860)
|
| -* BFD_RELOC_390_TLS_DTPOFF: howto manager. (line 1861)
|
| -* BFD_RELOC_390_TLS_GD32: howto manager. (line 1846)
|
| -* BFD_RELOC_390_TLS_GD64: howto manager. (line 1847)
|
| -* BFD_RELOC_390_TLS_GDCALL: howto manager. (line 1844)
|
| -* BFD_RELOC_390_TLS_GOTIE12: howto manager. (line 1848)
|
| -* BFD_RELOC_390_TLS_GOTIE20: howto manager. (line 1868)
|
| -* BFD_RELOC_390_TLS_GOTIE32: howto manager. (line 1849)
|
| -* BFD_RELOC_390_TLS_GOTIE64: howto manager. (line 1850)
|
| -* BFD_RELOC_390_TLS_IE32: howto manager. (line 1853)
|
| -* BFD_RELOC_390_TLS_IE64: howto manager. (line 1854)
|
| -* BFD_RELOC_390_TLS_IEENT: howto manager. (line 1855)
|
| -* BFD_RELOC_390_TLS_LDCALL: howto manager. (line 1845)
|
| -* BFD_RELOC_390_TLS_LDM32: howto manager. (line 1851)
|
| -* BFD_RELOC_390_TLS_LDM64: howto manager. (line 1852)
|
| -* BFD_RELOC_390_TLS_LDO32: howto manager. (line 1858)
|
| -* BFD_RELOC_390_TLS_LDO64: howto manager. (line 1859)
|
| -* BFD_RELOC_390_TLS_LE32: howto manager. (line 1856)
|
| -* BFD_RELOC_390_TLS_LE64: howto manager. (line 1857)
|
| -* BFD_RELOC_390_TLS_LOAD: howto manager. (line 1843)
|
| -* BFD_RELOC_390_TLS_TPOFF: howto manager. (line 1862)
|
| +* BFD_RELOC_386_COPY: howto manager. (line 577)
|
| +* BFD_RELOC_386_GLOB_DAT: howto manager. (line 578)
|
| +* BFD_RELOC_386_GOT32: howto manager. (line 575)
|
| +* BFD_RELOC_386_GOTOFF: howto manager. (line 581)
|
| +* BFD_RELOC_386_GOTPC: howto manager. (line 582)
|
| +* BFD_RELOC_386_IRELATIVE: howto manager. (line 598)
|
| +* BFD_RELOC_386_JUMP_SLOT: howto manager. (line 579)
|
| +* BFD_RELOC_386_PLT32: howto manager. (line 576)
|
| +* BFD_RELOC_386_RELATIVE: howto manager. (line 580)
|
| +* BFD_RELOC_386_TLS_DESC: howto manager. (line 597)
|
| +* BFD_RELOC_386_TLS_DESC_CALL: howto manager. (line 596)
|
| +* BFD_RELOC_386_TLS_DTPMOD32: howto manager. (line 592)
|
| +* BFD_RELOC_386_TLS_DTPOFF32: howto manager. (line 593)
|
| +* BFD_RELOC_386_TLS_GD: howto manager. (line 587)
|
| +* BFD_RELOC_386_TLS_GOTDESC: howto manager. (line 595)
|
| +* BFD_RELOC_386_TLS_GOTIE: howto manager. (line 585)
|
| +* BFD_RELOC_386_TLS_IE: howto manager. (line 584)
|
| +* BFD_RELOC_386_TLS_IE_32: howto manager. (line 590)
|
| +* BFD_RELOC_386_TLS_LDM: howto manager. (line 588)
|
| +* BFD_RELOC_386_TLS_LDO_32: howto manager. (line 589)
|
| +* BFD_RELOC_386_TLS_LE: howto manager. (line 586)
|
| +* BFD_RELOC_386_TLS_LE_32: howto manager. (line 591)
|
| +* BFD_RELOC_386_TLS_TPOFF: howto manager. (line 583)
|
| +* BFD_RELOC_386_TLS_TPOFF32: howto manager. (line 594)
|
| +* BFD_RELOC_390_12: howto manager. (line 1819)
|
| +* BFD_RELOC_390_20: howto manager. (line 1931)
|
| +* BFD_RELOC_390_COPY: howto manager. (line 1828)
|
| +* BFD_RELOC_390_GLOB_DAT: howto manager. (line 1831)
|
| +* BFD_RELOC_390_GOT12: howto manager. (line 1822)
|
| +* BFD_RELOC_390_GOT16: howto manager. (line 1843)
|
| +* BFD_RELOC_390_GOT20: howto manager. (line 1932)
|
| +* BFD_RELOC_390_GOT64: howto manager. (line 1873)
|
| +* BFD_RELOC_390_GOTENT: howto manager. (line 1879)
|
| +* BFD_RELOC_390_GOTOFF64: howto manager. (line 1882)
|
| +* BFD_RELOC_390_GOTPC: howto manager. (line 1840)
|
| +* BFD_RELOC_390_GOTPCDBL: howto manager. (line 1870)
|
| +* BFD_RELOC_390_GOTPLT12: howto manager. (line 1885)
|
| +* BFD_RELOC_390_GOTPLT16: howto manager. (line 1888)
|
| +* BFD_RELOC_390_GOTPLT20: howto manager. (line 1933)
|
| +* BFD_RELOC_390_GOTPLT32: howto manager. (line 1891)
|
| +* BFD_RELOC_390_GOTPLT64: howto manager. (line 1894)
|
| +* BFD_RELOC_390_GOTPLTENT: howto manager. (line 1897)
|
| +* BFD_RELOC_390_IRELATIVE: howto manager. (line 1937)
|
| +* BFD_RELOC_390_JMP_SLOT: howto manager. (line 1834)
|
| +* BFD_RELOC_390_PC12DBL: howto manager. (line 1846)
|
| +* BFD_RELOC_390_PC16DBL: howto manager. (line 1852)
|
| +* BFD_RELOC_390_PC24DBL: howto manager. (line 1858)
|
| +* BFD_RELOC_390_PC32DBL: howto manager. (line 1864)
|
| +* BFD_RELOC_390_PLT12DBL: howto manager. (line 1849)
|
| +* BFD_RELOC_390_PLT16DBL: howto manager. (line 1855)
|
| +* BFD_RELOC_390_PLT24DBL: howto manager. (line 1861)
|
| +* BFD_RELOC_390_PLT32: howto manager. (line 1825)
|
| +* BFD_RELOC_390_PLT32DBL: howto manager. (line 1867)
|
| +* BFD_RELOC_390_PLT64: howto manager. (line 1876)
|
| +* BFD_RELOC_390_PLTOFF16: howto manager. (line 1900)
|
| +* BFD_RELOC_390_PLTOFF32: howto manager. (line 1903)
|
| +* BFD_RELOC_390_PLTOFF64: howto manager. (line 1906)
|
| +* BFD_RELOC_390_RELATIVE: howto manager. (line 1837)
|
| +* BFD_RELOC_390_TLS_DTPMOD: howto manager. (line 1926)
|
| +* BFD_RELOC_390_TLS_DTPOFF: howto manager. (line 1927)
|
| +* BFD_RELOC_390_TLS_GD32: howto manager. (line 1912)
|
| +* BFD_RELOC_390_TLS_GD64: howto manager. (line 1913)
|
| +* BFD_RELOC_390_TLS_GDCALL: howto manager. (line 1910)
|
| +* BFD_RELOC_390_TLS_GOTIE12: howto manager. (line 1914)
|
| +* BFD_RELOC_390_TLS_GOTIE20: howto manager. (line 1934)
|
| +* BFD_RELOC_390_TLS_GOTIE32: howto manager. (line 1915)
|
| +* BFD_RELOC_390_TLS_GOTIE64: howto manager. (line 1916)
|
| +* BFD_RELOC_390_TLS_IE32: howto manager. (line 1919)
|
| +* BFD_RELOC_390_TLS_IE64: howto manager. (line 1920)
|
| +* BFD_RELOC_390_TLS_IEENT: howto manager. (line 1921)
|
| +* BFD_RELOC_390_TLS_LDCALL: howto manager. (line 1911)
|
| +* BFD_RELOC_390_TLS_LDM32: howto manager. (line 1917)
|
| +* BFD_RELOC_390_TLS_LDM64: howto manager. (line 1918)
|
| +* BFD_RELOC_390_TLS_LDO32: howto manager. (line 1924)
|
| +* BFD_RELOC_390_TLS_LDO64: howto manager. (line 1925)
|
| +* BFD_RELOC_390_TLS_LE32: howto manager. (line 1922)
|
| +* BFD_RELOC_390_TLS_LE64: howto manager. (line 1923)
|
| +* BFD_RELOC_390_TLS_LOAD: howto manager. (line 1909)
|
| +* BFD_RELOC_390_TLS_TPOFF: howto manager. (line 1928)
|
| * BFD_RELOC_64: howto manager. (line 26)
|
| * BFD_RELOC_64_PCREL: howto manager. (line 35)
|
| * BFD_RELOC_64_PLT_PCREL: howto manager. (line 60)
|
| * BFD_RELOC_64_PLTOFF: howto manager. (line 65)
|
| -* BFD_RELOC_68K_GLOB_DAT: howto manager. (line 74)
|
| -* BFD_RELOC_68K_JMP_SLOT: howto manager. (line 75)
|
| -* BFD_RELOC_68K_RELATIVE: howto manager. (line 76)
|
| -* BFD_RELOC_68K_TLS_GD16: howto manager. (line 78)
|
| -* BFD_RELOC_68K_TLS_GD32: howto manager. (line 77)
|
| -* BFD_RELOC_68K_TLS_GD8: howto manager. (line 79)
|
| -* BFD_RELOC_68K_TLS_IE16: howto manager. (line 87)
|
| -* BFD_RELOC_68K_TLS_IE32: howto manager. (line 86)
|
| -* BFD_RELOC_68K_TLS_IE8: howto manager. (line 88)
|
| -* BFD_RELOC_68K_TLS_LDM16: howto manager. (line 81)
|
| -* BFD_RELOC_68K_TLS_LDM32: howto manager. (line 80)
|
| -* BFD_RELOC_68K_TLS_LDM8: howto manager. (line 82)
|
| -* BFD_RELOC_68K_TLS_LDO16: howto manager. (line 84)
|
| -* BFD_RELOC_68K_TLS_LDO32: howto manager. (line 83)
|
| -* BFD_RELOC_68K_TLS_LDO8: howto manager. (line 85)
|
| -* BFD_RELOC_68K_TLS_LE16: howto manager. (line 90)
|
| -* BFD_RELOC_68K_TLS_LE32: howto manager. (line 89)
|
| -* BFD_RELOC_68K_TLS_LE8: howto manager. (line 91)
|
| +* BFD_RELOC_68K_GLOB_DAT: howto manager. (line 78)
|
| +* BFD_RELOC_68K_JMP_SLOT: howto manager. (line 79)
|
| +* BFD_RELOC_68K_RELATIVE: howto manager. (line 80)
|
| +* BFD_RELOC_68K_TLS_GD16: howto manager. (line 82)
|
| +* BFD_RELOC_68K_TLS_GD32: howto manager. (line 81)
|
| +* BFD_RELOC_68K_TLS_GD8: howto manager. (line 83)
|
| +* BFD_RELOC_68K_TLS_IE16: howto manager. (line 91)
|
| +* BFD_RELOC_68K_TLS_IE32: howto manager. (line 90)
|
| +* BFD_RELOC_68K_TLS_IE8: howto manager. (line 92)
|
| +* BFD_RELOC_68K_TLS_LDM16: howto manager. (line 85)
|
| +* BFD_RELOC_68K_TLS_LDM32: howto manager. (line 84)
|
| +* BFD_RELOC_68K_TLS_LDM8: howto manager. (line 86)
|
| +* BFD_RELOC_68K_TLS_LDO16: howto manager. (line 88)
|
| +* BFD_RELOC_68K_TLS_LDO32: howto manager. (line 87)
|
| +* BFD_RELOC_68K_TLS_LDO8: howto manager. (line 89)
|
| +* BFD_RELOC_68K_TLS_LE16: howto manager. (line 94)
|
| +* BFD_RELOC_68K_TLS_LE32: howto manager. (line 93)
|
| +* BFD_RELOC_68K_TLS_LE8: howto manager. (line 95)
|
| * BFD_RELOC_8: howto manager. (line 32)
|
| -* BFD_RELOC_860_COPY: howto manager. (line 2298)
|
| -* BFD_RELOC_860_GLOB_DAT: howto manager. (line 2299)
|
| -* BFD_RELOC_860_HAGOT: howto manager. (line 2324)
|
| -* BFD_RELOC_860_HAGOTOFF: howto manager. (line 2325)
|
| -* BFD_RELOC_860_HAPC: howto manager. (line 2326)
|
| -* BFD_RELOC_860_HIGH: howto manager. (line 2327)
|
| -* BFD_RELOC_860_HIGHADJ: howto manager. (line 2323)
|
| -* BFD_RELOC_860_HIGOT: howto manager. (line 2328)
|
| -* BFD_RELOC_860_HIGOTOFF: howto manager. (line 2329)
|
| -* BFD_RELOC_860_JUMP_SLOT: howto manager. (line 2300)
|
| -* BFD_RELOC_860_LOGOT0: howto manager. (line 2312)
|
| -* BFD_RELOC_860_LOGOT1: howto manager. (line 2314)
|
| -* BFD_RELOC_860_LOGOTOFF0: howto manager. (line 2316)
|
| -* BFD_RELOC_860_LOGOTOFF1: howto manager. (line 2318)
|
| -* BFD_RELOC_860_LOGOTOFF2: howto manager. (line 2320)
|
| -* BFD_RELOC_860_LOGOTOFF3: howto manager. (line 2321)
|
| -* BFD_RELOC_860_LOPC: howto manager. (line 2322)
|
| -* BFD_RELOC_860_LOW0: howto manager. (line 2305)
|
| -* BFD_RELOC_860_LOW1: howto manager. (line 2307)
|
| -* BFD_RELOC_860_LOW2: howto manager. (line 2309)
|
| -* BFD_RELOC_860_LOW3: howto manager. (line 2311)
|
| -* BFD_RELOC_860_PC16: howto manager. (line 2304)
|
| -* BFD_RELOC_860_PC26: howto manager. (line 2302)
|
| -* BFD_RELOC_860_PLT26: howto manager. (line 2303)
|
| -* BFD_RELOC_860_RELATIVE: howto manager. (line 2301)
|
| -* BFD_RELOC_860_SPGOT0: howto manager. (line 2313)
|
| -* BFD_RELOC_860_SPGOT1: howto manager. (line 2315)
|
| -* BFD_RELOC_860_SPGOTOFF0: howto manager. (line 2317)
|
| -* BFD_RELOC_860_SPGOTOFF1: howto manager. (line 2319)
|
| -* BFD_RELOC_860_SPLIT0: howto manager. (line 2306)
|
| -* BFD_RELOC_860_SPLIT1: howto manager. (line 2308)
|
| -* BFD_RELOC_860_SPLIT2: howto manager. (line 2310)
|
| -* BFD_RELOC_8_BASEREL: howto manager. (line 99)
|
| -* BFD_RELOC_8_FFnn: howto manager. (line 103)
|
| +* BFD_RELOC_860_COPY: howto manager. (line 2364)
|
| +* BFD_RELOC_860_GLOB_DAT: howto manager. (line 2365)
|
| +* BFD_RELOC_860_HAGOT: howto manager. (line 2390)
|
| +* BFD_RELOC_860_HAGOTOFF: howto manager. (line 2391)
|
| +* BFD_RELOC_860_HAPC: howto manager. (line 2392)
|
| +* BFD_RELOC_860_HIGH: howto manager. (line 2393)
|
| +* BFD_RELOC_860_HIGHADJ: howto manager. (line 2389)
|
| +* BFD_RELOC_860_HIGOT: howto manager. (line 2394)
|
| +* BFD_RELOC_860_HIGOTOFF: howto manager. (line 2395)
|
| +* BFD_RELOC_860_JUMP_SLOT: howto manager. (line 2366)
|
| +* BFD_RELOC_860_LOGOT0: howto manager. (line 2378)
|
| +* BFD_RELOC_860_LOGOT1: howto manager. (line 2380)
|
| +* BFD_RELOC_860_LOGOTOFF0: howto manager. (line 2382)
|
| +* BFD_RELOC_860_LOGOTOFF1: howto manager. (line 2384)
|
| +* BFD_RELOC_860_LOGOTOFF2: howto manager. (line 2386)
|
| +* BFD_RELOC_860_LOGOTOFF3: howto manager. (line 2387)
|
| +* BFD_RELOC_860_LOPC: howto manager. (line 2388)
|
| +* BFD_RELOC_860_LOW0: howto manager. (line 2371)
|
| +* BFD_RELOC_860_LOW1: howto manager. (line 2373)
|
| +* BFD_RELOC_860_LOW2: howto manager. (line 2375)
|
| +* BFD_RELOC_860_LOW3: howto manager. (line 2377)
|
| +* BFD_RELOC_860_PC16: howto manager. (line 2370)
|
| +* BFD_RELOC_860_PC26: howto manager. (line 2368)
|
| +* BFD_RELOC_860_PLT26: howto manager. (line 2369)
|
| +* BFD_RELOC_860_RELATIVE: howto manager. (line 2367)
|
| +* BFD_RELOC_860_SPGOT0: howto manager. (line 2379)
|
| +* BFD_RELOC_860_SPGOT1: howto manager. (line 2381)
|
| +* BFD_RELOC_860_SPGOTOFF0: howto manager. (line 2383)
|
| +* BFD_RELOC_860_SPGOTOFF1: howto manager. (line 2385)
|
| +* BFD_RELOC_860_SPLIT0: howto manager. (line 2372)
|
| +* BFD_RELOC_860_SPLIT1: howto manager. (line 2374)
|
| +* BFD_RELOC_860_SPLIT2: howto manager. (line 2376)
|
| +* BFD_RELOC_8_BASEREL: howto manager. (line 103)
|
| +* BFD_RELOC_8_FFnn: howto manager. (line 107)
|
| * BFD_RELOC_8_GOT_PCREL: howto manager. (line 53)
|
| * BFD_RELOC_8_GOTOFF: howto manager. (line 59)
|
| * BFD_RELOC_8_PCREL: howto manager. (line 40)
|
| * BFD_RELOC_8_PLT_PCREL: howto manager. (line 64)
|
| * BFD_RELOC_8_PLTOFF: howto manager. (line 71)
|
| -* BFD_RELOC_ALPHA_BOH: howto manager. (line 319)
|
| -* BFD_RELOC_ALPHA_BRSGP: howto manager. (line 302)
|
| -* BFD_RELOC_ALPHA_BSR: howto manager. (line 311)
|
| -* BFD_RELOC_ALPHA_CODEADDR: howto manager. (line 293)
|
| -* BFD_RELOC_ALPHA_DTPMOD64: howto manager. (line 325)
|
| -* BFD_RELOC_ALPHA_DTPREL16: howto manager. (line 330)
|
| -* BFD_RELOC_ALPHA_DTPREL64: howto manager. (line 327)
|
| -* BFD_RELOC_ALPHA_DTPREL_HI16: howto manager. (line 328)
|
| -* BFD_RELOC_ALPHA_DTPREL_LO16: howto manager. (line 329)
|
| -* BFD_RELOC_ALPHA_ELF_LITERAL: howto manager. (line 258)
|
| -* BFD_RELOC_ALPHA_GOTDTPREL16: howto manager. (line 326)
|
| -* BFD_RELOC_ALPHA_GOTTPREL16: howto manager. (line 331)
|
| -* BFD_RELOC_ALPHA_GPDISP: howto manager. (line 252)
|
| -* BFD_RELOC_ALPHA_GPDISP_HI16: howto manager. (line 238)
|
| -* BFD_RELOC_ALPHA_GPDISP_LO16: howto manager. (line 246)
|
| -* BFD_RELOC_ALPHA_GPREL_HI16: howto manager. (line 297)
|
| -* BFD_RELOC_ALPHA_GPREL_LO16: howto manager. (line 298)
|
| -* BFD_RELOC_ALPHA_HINT: howto manager. (line 284)
|
| -* BFD_RELOC_ALPHA_LDA: howto manager. (line 315)
|
| -* BFD_RELOC_ALPHA_LINKAGE: howto manager. (line 289)
|
| -* BFD_RELOC_ALPHA_LITERAL: howto manager. (line 257)
|
| -* BFD_RELOC_ALPHA_LITUSE: howto manager. (line 259)
|
| -* BFD_RELOC_ALPHA_NOP: howto manager. (line 307)
|
| -* BFD_RELOC_ALPHA_TLSGD: howto manager. (line 323)
|
| -* BFD_RELOC_ALPHA_TLSLDM: howto manager. (line 324)
|
| -* BFD_RELOC_ALPHA_TPREL16: howto manager. (line 335)
|
| -* BFD_RELOC_ALPHA_TPREL64: howto manager. (line 332)
|
| -* BFD_RELOC_ALPHA_TPREL_HI16: howto manager. (line 333)
|
| -* BFD_RELOC_ALPHA_TPREL_LO16: howto manager. (line 334)
|
| -* BFD_RELOC_ARC_B22_PCREL: howto manager. (line 1036)
|
| -* BFD_RELOC_ARC_B26: howto manager. (line 1041)
|
| -* BFD_RELOC_ARM_ADR_IMM: howto manager. (line 922)
|
| -* BFD_RELOC_ARM_ADRL_IMMEDIATE: howto manager. (line 908)
|
| -* BFD_RELOC_ARM_ALU_PC_G0: howto manager. (line 872)
|
| -* BFD_RELOC_ARM_ALU_PC_G0_NC: howto manager. (line 871)
|
| -* BFD_RELOC_ARM_ALU_PC_G1: howto manager. (line 874)
|
| -* BFD_RELOC_ARM_ALU_PC_G1_NC: howto manager. (line 873)
|
| -* BFD_RELOC_ARM_ALU_PC_G2: howto manager. (line 875)
|
| -* BFD_RELOC_ARM_ALU_SB_G0: howto manager. (line 886)
|
| -* BFD_RELOC_ARM_ALU_SB_G0_NC: howto manager. (line 885)
|
| -* BFD_RELOC_ARM_ALU_SB_G1: howto manager. (line 888)
|
| -* BFD_RELOC_ARM_ALU_SB_G1_NC: howto manager. (line 887)
|
| -* BFD_RELOC_ARM_ALU_SB_G2: howto manager. (line 889)
|
| -* BFD_RELOC_ARM_CP_OFF_IMM: howto manager. (line 918)
|
| -* BFD_RELOC_ARM_CP_OFF_IMM_S2: howto manager. (line 919)
|
| -* BFD_RELOC_ARM_GLOB_DAT: howto manager. (line 846)
|
| -* BFD_RELOC_ARM_GOT32: howto manager. (line 847)
|
| -* BFD_RELOC_ARM_GOT_PREL: howto manager. (line 852)
|
| -* BFD_RELOC_ARM_GOTOFF: howto manager. (line 850)
|
| -* BFD_RELOC_ARM_GOTPC: howto manager. (line 851)
|
| -* BFD_RELOC_ARM_HVC: howto manager. (line 915)
|
| -* BFD_RELOC_ARM_HWLITERAL: howto manager. (line 929)
|
| -* BFD_RELOC_ARM_IMMEDIATE: howto manager. (line 907)
|
| -* BFD_RELOC_ARM_IN_POOL: howto manager. (line 925)
|
| -* BFD_RELOC_ARM_IRELATIVE: howto manager. (line 904)
|
| -* BFD_RELOC_ARM_JUMP_SLOT: howto manager. (line 845)
|
| -* BFD_RELOC_ARM_LDC_PC_G0: howto manager. (line 882)
|
| -* BFD_RELOC_ARM_LDC_PC_G1: howto manager. (line 883)
|
| -* BFD_RELOC_ARM_LDC_PC_G2: howto manager. (line 884)
|
| -* BFD_RELOC_ARM_LDC_SB_G0: howto manager. (line 896)
|
| -* BFD_RELOC_ARM_LDC_SB_G1: howto manager. (line 897)
|
| -* BFD_RELOC_ARM_LDC_SB_G2: howto manager. (line 898)
|
| -* BFD_RELOC_ARM_LDR_IMM: howto manager. (line 923)
|
| -* BFD_RELOC_ARM_LDR_PC_G0: howto manager. (line 876)
|
| -* BFD_RELOC_ARM_LDR_PC_G1: howto manager. (line 877)
|
| -* BFD_RELOC_ARM_LDR_PC_G2: howto manager. (line 878)
|
| -* BFD_RELOC_ARM_LDR_SB_G0: howto manager. (line 890)
|
| -* BFD_RELOC_ARM_LDR_SB_G1: howto manager. (line 891)
|
| -* BFD_RELOC_ARM_LDR_SB_G2: howto manager. (line 892)
|
| -* BFD_RELOC_ARM_LDRS_PC_G0: howto manager. (line 879)
|
| -* BFD_RELOC_ARM_LDRS_PC_G1: howto manager. (line 880)
|
| -* BFD_RELOC_ARM_LDRS_PC_G2: howto manager. (line 881)
|
| -* BFD_RELOC_ARM_LDRS_SB_G0: howto manager. (line 893)
|
| -* BFD_RELOC_ARM_LDRS_SB_G1: howto manager. (line 894)
|
| -* BFD_RELOC_ARM_LDRS_SB_G2: howto manager. (line 895)
|
| -* BFD_RELOC_ARM_LITERAL: howto manager. (line 924)
|
| -* BFD_RELOC_ARM_MOVT: howto manager. (line 836)
|
| -* BFD_RELOC_ARM_MOVT_PCREL: howto manager. (line 838)
|
| -* BFD_RELOC_ARM_MOVW: howto manager. (line 835)
|
| -* BFD_RELOC_ARM_MOVW_PCREL: howto manager. (line 837)
|
| -* BFD_RELOC_ARM_MULTI: howto manager. (line 917)
|
| -* BFD_RELOC_ARM_OFFSET_IMM: howto manager. (line 809)
|
| -* BFD_RELOC_ARM_OFFSET_IMM8: howto manager. (line 926)
|
| -* BFD_RELOC_ARM_PCREL_BLX: howto manager. (line 780)
|
| -* BFD_RELOC_ARM_PCREL_BRANCH: howto manager. (line 776)
|
| -* BFD_RELOC_ARM_PCREL_CALL: howto manager. (line 790)
|
| -* BFD_RELOC_ARM_PCREL_JUMP: howto manager. (line 794)
|
| -* BFD_RELOC_ARM_PLT32: howto manager. (line 848)
|
| -* BFD_RELOC_ARM_PREL31: howto manager. (line 832)
|
| -* BFD_RELOC_ARM_RELATIVE: howto manager. (line 849)
|
| -* BFD_RELOC_ARM_ROSEGREL32: howto manager. (line 821)
|
| -* BFD_RELOC_ARM_SBREL32: howto manager. (line 824)
|
| -* BFD_RELOC_ARM_SHIFT_IMM: howto manager. (line 913)
|
| -* BFD_RELOC_ARM_SMC: howto manager. (line 914)
|
| -* BFD_RELOC_ARM_SWI: howto manager. (line 916)
|
| -* BFD_RELOC_ARM_T32_ADD_IMM: howto manager. (line 910)
|
| -* BFD_RELOC_ARM_T32_ADD_PC12: howto manager. (line 912)
|
| -* BFD_RELOC_ARM_T32_CP_OFF_IMM: howto manager. (line 920)
|
| -* BFD_RELOC_ARM_T32_CP_OFF_IMM_S2: howto manager. (line 921)
|
| -* BFD_RELOC_ARM_T32_IMM12: howto manager. (line 911)
|
| -* BFD_RELOC_ARM_T32_IMMEDIATE: howto manager. (line 909)
|
| -* BFD_RELOC_ARM_T32_OFFSET_IMM: howto manager. (line 928)
|
| -* BFD_RELOC_ARM_T32_OFFSET_U8: howto manager. (line 927)
|
| -* BFD_RELOC_ARM_TARGET1: howto manager. (line 817)
|
| -* BFD_RELOC_ARM_TARGET2: howto manager. (line 827)
|
| -* BFD_RELOC_ARM_THM_TLS_CALL: howto manager. (line 865)
|
| -* BFD_RELOC_ARM_THM_TLS_DESCSEQ: howto manager. (line 867)
|
| -* BFD_RELOC_ARM_THUMB_ADD: howto manager. (line 930)
|
| -* BFD_RELOC_ARM_THUMB_IMM: howto manager. (line 931)
|
| -* BFD_RELOC_ARM_THUMB_MOVT: howto manager. (line 840)
|
| -* BFD_RELOC_ARM_THUMB_MOVT_PCREL: howto manager. (line 842)
|
| -* BFD_RELOC_ARM_THUMB_MOVW: howto manager. (line 839)
|
| -* BFD_RELOC_ARM_THUMB_MOVW_PCREL: howto manager. (line 841)
|
| -* BFD_RELOC_ARM_THUMB_OFFSET: howto manager. (line 813)
|
| -* BFD_RELOC_ARM_THUMB_SHIFT: howto manager. (line 932)
|
| -* BFD_RELOC_ARM_TLS_CALL: howto manager. (line 864)
|
| -* BFD_RELOC_ARM_TLS_DESC: howto manager. (line 868)
|
| -* BFD_RELOC_ARM_TLS_DESCSEQ: howto manager. (line 866)
|
| -* BFD_RELOC_ARM_TLS_DTPMOD32: howto manager. (line 859)
|
| -* BFD_RELOC_ARM_TLS_DTPOFF32: howto manager. (line 858)
|
| -* BFD_RELOC_ARM_TLS_GD32: howto manager. (line 855)
|
| -* BFD_RELOC_ARM_TLS_GOTDESC: howto manager. (line 863)
|
| -* BFD_RELOC_ARM_TLS_IE32: howto manager. (line 861)
|
| -* BFD_RELOC_ARM_TLS_LDM32: howto manager. (line 857)
|
| -* BFD_RELOC_ARM_TLS_LDO32: howto manager. (line 856)
|
| -* BFD_RELOC_ARM_TLS_LE32: howto manager. (line 862)
|
| -* BFD_RELOC_ARM_TLS_TPOFF32: howto manager. (line 860)
|
| -* BFD_RELOC_ARM_V4BX: howto manager. (line 901)
|
| -* BFD_RELOC_AVR_13_PCREL: howto manager. (line 1591)
|
| -* BFD_RELOC_AVR_16_PM: howto manager. (line 1595)
|
| -* BFD_RELOC_AVR_6: howto manager. (line 1682)
|
| -* BFD_RELOC_AVR_6_ADIW: howto manager. (line 1686)
|
| -* BFD_RELOC_AVR_7_PCREL: howto manager. (line 1587)
|
| -* BFD_RELOC_AVR_8_HI: howto manager. (line 1694)
|
| -* BFD_RELOC_AVR_8_HLO: howto manager. (line 1698)
|
| -* BFD_RELOC_AVR_8_LO: howto manager. (line 1690)
|
| -* BFD_RELOC_AVR_CALL: howto manager. (line 1674)
|
| -* BFD_RELOC_AVR_HH8_LDI: howto manager. (line 1607)
|
| -* BFD_RELOC_AVR_HH8_LDI_NEG: howto manager. (line 1626)
|
| -* BFD_RELOC_AVR_HH8_LDI_PM: howto manager. (line 1655)
|
| -* BFD_RELOC_AVR_HH8_LDI_PM_NEG: howto manager. (line 1669)
|
| -* BFD_RELOC_AVR_HI8_LDI: howto manager. (line 1603)
|
| -* BFD_RELOC_AVR_HI8_LDI_GS: howto manager. (line 1649)
|
| -* BFD_RELOC_AVR_HI8_LDI_NEG: howto manager. (line 1621)
|
| -* BFD_RELOC_AVR_HI8_LDI_PM: howto manager. (line 1645)
|
| -* BFD_RELOC_AVR_HI8_LDI_PM_NEG: howto manager. (line 1664)
|
| -* BFD_RELOC_AVR_LDI: howto manager. (line 1678)
|
| -* BFD_RELOC_AVR_LO8_LDI: howto manager. (line 1599)
|
| -* BFD_RELOC_AVR_LO8_LDI_GS: howto manager. (line 1639)
|
| -* BFD_RELOC_AVR_LO8_LDI_NEG: howto manager. (line 1616)
|
| -* BFD_RELOC_AVR_LO8_LDI_PM: howto manager. (line 1635)
|
| -* BFD_RELOC_AVR_LO8_LDI_PM_NEG: howto manager. (line 1660)
|
| -* BFD_RELOC_AVR_MS8_LDI: howto manager. (line 1612)
|
| -* BFD_RELOC_AVR_MS8_LDI_NEG: howto manager. (line 1631)
|
| -* BFD_RELOC_BFIN_10_PCREL: howto manager. (line 1061)
|
| -* BFD_RELOC_BFIN_11_PCREL: howto manager. (line 1064)
|
| -* BFD_RELOC_BFIN_12_PCREL_JUMP: howto manager. (line 1067)
|
| -* BFD_RELOC_BFIN_12_PCREL_JUMP_S: howto manager. (line 1070)
|
| -* BFD_RELOC_BFIN_16_HIGH: howto manager. (line 1049)
|
| -* BFD_RELOC_BFIN_16_IMM: howto manager. (line 1046)
|
| -* BFD_RELOC_BFIN_16_LOW: howto manager. (line 1058)
|
| -* BFD_RELOC_BFIN_24_PCREL_CALL_X: howto manager. (line 1073)
|
| -* BFD_RELOC_BFIN_24_PCREL_JUMP_L: howto manager. (line 1076)
|
| -* BFD_RELOC_BFIN_4_PCREL: howto manager. (line 1052)
|
| -* BFD_RELOC_BFIN_5_PCREL: howto manager. (line 1055)
|
| -* BFD_RELOC_BFIN_FUNCDESC: howto manager. (line 1082)
|
| -* BFD_RELOC_BFIN_FUNCDESC_GOT17M4: howto manager. (line 1083)
|
| -* BFD_RELOC_BFIN_FUNCDESC_GOTHI: howto manager. (line 1084)
|
| -* BFD_RELOC_BFIN_FUNCDESC_GOTLO: howto manager. (line 1085)
|
| -* BFD_RELOC_BFIN_FUNCDESC_GOTOFF17M4: howto manager. (line 1087)
|
| -* BFD_RELOC_BFIN_FUNCDESC_GOTOFFHI: howto manager. (line 1088)
|
| -* BFD_RELOC_BFIN_FUNCDESC_GOTOFFLO: howto manager. (line 1089)
|
| -* BFD_RELOC_BFIN_FUNCDESC_VALUE: howto manager. (line 1086)
|
| -* BFD_RELOC_BFIN_GOT: howto manager. (line 1095)
|
| -* BFD_RELOC_BFIN_GOT17M4: howto manager. (line 1079)
|
| -* BFD_RELOC_BFIN_GOTHI: howto manager. (line 1080)
|
| -* BFD_RELOC_BFIN_GOTLO: howto manager. (line 1081)
|
| -* BFD_RELOC_BFIN_GOTOFF17M4: howto manager. (line 1090)
|
| -* BFD_RELOC_BFIN_GOTOFFHI: howto manager. (line 1091)
|
| -* BFD_RELOC_BFIN_GOTOFFLO: howto manager. (line 1092)
|
| -* BFD_RELOC_BFIN_PLTPC: howto manager. (line 1098)
|
| -* BFD_RELOC_C6000_ABS_H16: howto manager. (line 1450)
|
| -* BFD_RELOC_C6000_ABS_L16: howto manager. (line 1449)
|
| -* BFD_RELOC_C6000_ABS_S16: howto manager. (line 1448)
|
| -* BFD_RELOC_C6000_ALIGN: howto manager. (line 1471)
|
| -* BFD_RELOC_C6000_COPY: howto manager. (line 1466)
|
| -* BFD_RELOC_C6000_DSBT_INDEX: howto manager. (line 1464)
|
| -* BFD_RELOC_C6000_EHTYPE: howto manager. (line 1468)
|
| -* BFD_RELOC_C6000_FPHEAD: howto manager. (line 1472)
|
| -* BFD_RELOC_C6000_JUMP_SLOT: howto manager. (line 1467)
|
| -* BFD_RELOC_C6000_NOCMP: howto manager. (line 1473)
|
| -* BFD_RELOC_C6000_PCR_H16: howto manager. (line 1469)
|
| -* BFD_RELOC_C6000_PCR_L16: howto manager. (line 1470)
|
| -* BFD_RELOC_C6000_PCR_S10: howto manager. (line 1446)
|
| -* BFD_RELOC_C6000_PCR_S12: howto manager. (line 1445)
|
| -* BFD_RELOC_C6000_PCR_S21: howto manager. (line 1444)
|
| -* BFD_RELOC_C6000_PCR_S7: howto manager. (line 1447)
|
| -* BFD_RELOC_C6000_PREL31: howto manager. (line 1465)
|
| -* BFD_RELOC_C6000_SBR_GOT_H16_W: howto manager. (line 1463)
|
| -* BFD_RELOC_C6000_SBR_GOT_L16_W: howto manager. (line 1462)
|
| -* BFD_RELOC_C6000_SBR_GOT_U15_W: howto manager. (line 1461)
|
| -* BFD_RELOC_C6000_SBR_H16_B: howto manager. (line 1458)
|
| -* BFD_RELOC_C6000_SBR_H16_H: howto manager. (line 1459)
|
| -* BFD_RELOC_C6000_SBR_H16_W: howto manager. (line 1460)
|
| -* BFD_RELOC_C6000_SBR_L16_B: howto manager. (line 1455)
|
| -* BFD_RELOC_C6000_SBR_L16_H: howto manager. (line 1456)
|
| -* BFD_RELOC_C6000_SBR_L16_W: howto manager. (line 1457)
|
| -* BFD_RELOC_C6000_SBR_S16: howto manager. (line 1454)
|
| -* BFD_RELOC_C6000_SBR_U15_B: howto manager. (line 1451)
|
| -* BFD_RELOC_C6000_SBR_U15_H: howto manager. (line 1452)
|
| -* BFD_RELOC_C6000_SBR_U15_W: howto manager. (line 1453)
|
| +* BFD_RELOC_AARCH64_16: howto manager. (line 2755)
|
| +* BFD_RELOC_AARCH64_16_PCREL: howto manager. (line 2762)
|
| +* BFD_RELOC_AARCH64_32: howto manager. (line 2754)
|
| +* BFD_RELOC_AARCH64_32_PCREL: howto manager. (line 2761)
|
| +* BFD_RELOC_AARCH64_64: howto manager. (line 2753)
|
| +* BFD_RELOC_AARCH64_64_PCREL: howto manager. (line 2760)
|
| +* BFD_RELOC_AARCH64_ADD_LO12: howto manager. (line 2827)
|
| +* BFD_RELOC_AARCH64_ADR_GOT_PAGE: howto manager. (line 2884)
|
| +* BFD_RELOC_AARCH64_ADR_HI21_NC_PCREL: howto manager. (line 2822)
|
| +* BFD_RELOC_AARCH64_ADR_HI21_PCREL: howto manager. (line 2818)
|
| +* BFD_RELOC_AARCH64_ADR_LO21_PCREL: howto manager. (line 2814)
|
| +* BFD_RELOC_AARCH64_BRANCH19: howto manager. (line 2842)
|
| +* BFD_RELOC_AARCH64_CALL26: howto manager. (line 2852)
|
| +* BFD_RELOC_AARCH64_COPY: howto manager. (line 2985)
|
| +* BFD_RELOC_AARCH64_GAS_INTERNAL_FIXUP: howto manager. (line 3019)
|
| +* BFD_RELOC_AARCH64_GLOB_DAT: howto manager. (line 2988)
|
| +* BFD_RELOC_AARCH64_GOT_LD_PREL19: howto manager. (line 2877)
|
| +* BFD_RELOC_AARCH64_IRELATIVE: howto manager. (line 3009)
|
| +* BFD_RELOC_AARCH64_JUMP26: howto manager. (line 2847)
|
| +* BFD_RELOC_AARCH64_JUMP_SLOT: howto manager. (line 2991)
|
| +* BFD_RELOC_AARCH64_LD32_GOT_LO12_NC: howto manager. (line 2894)
|
| +* BFD_RELOC_AARCH64_LD64_GOT_LO12_NC: howto manager. (line 2889)
|
| +* BFD_RELOC_AARCH64_LD_GOT_LO12_NC: howto manager. (line 3028)
|
| +* BFD_RELOC_AARCH64_LD_LO19_PCREL: howto manager. (line 2809)
|
| +* BFD_RELOC_AARCH64_LDST128_LO12: howto manager. (line 2872)
|
| +* BFD_RELOC_AARCH64_LDST16_LO12: howto manager. (line 2857)
|
| +* BFD_RELOC_AARCH64_LDST32_LO12: howto manager. (line 2862)
|
| +* BFD_RELOC_AARCH64_LDST64_LO12: howto manager. (line 2867)
|
| +* BFD_RELOC_AARCH64_LDST8_LO12: howto manager. (line 2832)
|
| +* BFD_RELOC_AARCH64_LDST_LO12: howto manager. (line 3023)
|
| +* BFD_RELOC_AARCH64_MOVW_G0: howto manager. (line 2766)
|
| +* BFD_RELOC_AARCH64_MOVW_G0_NC: howto manager. (line 2770)
|
| +* BFD_RELOC_AARCH64_MOVW_G0_S: howto manager. (line 2794)
|
| +* BFD_RELOC_AARCH64_MOVW_G1: howto manager. (line 2774)
|
| +* BFD_RELOC_AARCH64_MOVW_G1_NC: howto manager. (line 2778)
|
| +* BFD_RELOC_AARCH64_MOVW_G1_S: howto manager. (line 2799)
|
| +* BFD_RELOC_AARCH64_MOVW_G2: howto manager. (line 2782)
|
| +* BFD_RELOC_AARCH64_MOVW_G2_NC: howto manager. (line 2786)
|
| +* BFD_RELOC_AARCH64_MOVW_G2_S: howto manager. (line 2804)
|
| +* BFD_RELOC_AARCH64_MOVW_G3: howto manager. (line 2790)
|
| +* BFD_RELOC_AARCH64_NONE: howto manager. (line 2750)
|
| +* BFD_RELOC_AARCH64_RELATIVE: howto manager. (line 2994)
|
| +* BFD_RELOC_AARCH64_RELOC_END: howto manager. (line 3012)
|
| +* BFD_RELOC_AARCH64_RELOC_START: howto manager. (line 2744)
|
| +* BFD_RELOC_AARCH64_TLS_DTPMOD: howto manager. (line 2997)
|
| +* BFD_RELOC_AARCH64_TLS_DTPREL: howto manager. (line 3000)
|
| +* BFD_RELOC_AARCH64_TLS_TPREL: howto manager. (line 3003)
|
| +* BFD_RELOC_AARCH64_TLSDESC: howto manager. (line 3006)
|
| +* BFD_RELOC_AARCH64_TLSDESC_ADD: howto manager. (line 2979)
|
| +* BFD_RELOC_AARCH64_TLSDESC_ADD_LO12_NC: howto manager. (line 2967)
|
| +* BFD_RELOC_AARCH64_TLSDESC_ADR_PAGE21: howto manager. (line 2958)
|
| +* BFD_RELOC_AARCH64_TLSDESC_ADR_PREL21: howto manager. (line 2955)
|
| +* BFD_RELOC_AARCH64_TLSDESC_CALL: howto manager. (line 2982)
|
| +* BFD_RELOC_AARCH64_TLSDESC_LD32_LO12_NC: howto manager. (line 2964)
|
| +* BFD_RELOC_AARCH64_TLSDESC_LD64_LO12_NC: howto manager. (line 2961)
|
| +* BFD_RELOC_AARCH64_TLSDESC_LD_LO12_NC: howto manager. (line 3036)
|
| +* BFD_RELOC_AARCH64_TLSDESC_LD_PREL19: howto manager. (line 2952)
|
| +* BFD_RELOC_AARCH64_TLSDESC_LDR: howto manager. (line 2976)
|
| +* BFD_RELOC_AARCH64_TLSDESC_OFF_G0_NC: howto manager. (line 2973)
|
| +* BFD_RELOC_AARCH64_TLSDESC_OFF_G1: howto manager. (line 2970)
|
| +* BFD_RELOC_AARCH64_TLSGD_ADD_LO12_NC: howto manager. (line 2905)
|
| +* BFD_RELOC_AARCH64_TLSGD_ADR_PAGE21: howto manager. (line 2899)
|
| +* BFD_RELOC_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21: howto manager.
|
| + (line 2916)
|
| +* BFD_RELOC_AARCH64_TLSIE_LD32_GOTTPREL_LO12_NC: howto manager.
|
| + (line 2922)
|
| +* BFD_RELOC_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC: howto manager.
|
| + (line 2919)
|
| +* BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_LO12_NC: howto manager.
|
| + (line 3032)
|
| +* BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_PREL19: howto manager. (line 2925)
|
| +* BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC: howto manager.
|
| + (line 2913)
|
| +* BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G1: howto manager. (line 2910)
|
| +* BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_HI12: howto manager. (line 2943)
|
| +* BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_LO12: howto manager. (line 2946)
|
| +* BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_LO12_NC: howto manager. (line 2949)
|
| +* BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G0: howto manager. (line 2937)
|
| +* BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G0_NC: howto manager. (line 2940)
|
| +* BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1: howto manager. (line 2931)
|
| +* BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1_NC: howto manager. (line 2934)
|
| +* BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G2: howto manager. (line 2928)
|
| +* BFD_RELOC_AARCH64_TSTBR14: howto manager. (line 2837)
|
| +* BFD_RELOC_ALPHA_BOH: howto manager. (line 323)
|
| +* BFD_RELOC_ALPHA_BRSGP: howto manager. (line 306)
|
| +* BFD_RELOC_ALPHA_BSR: howto manager. (line 315)
|
| +* BFD_RELOC_ALPHA_CODEADDR: howto manager. (line 297)
|
| +* BFD_RELOC_ALPHA_DTPMOD64: howto manager. (line 329)
|
| +* BFD_RELOC_ALPHA_DTPREL16: howto manager. (line 334)
|
| +* BFD_RELOC_ALPHA_DTPREL64: howto manager. (line 331)
|
| +* BFD_RELOC_ALPHA_DTPREL_HI16: howto manager. (line 332)
|
| +* BFD_RELOC_ALPHA_DTPREL_LO16: howto manager. (line 333)
|
| +* BFD_RELOC_ALPHA_ELF_LITERAL: howto manager. (line 262)
|
| +* BFD_RELOC_ALPHA_GOTDTPREL16: howto manager. (line 330)
|
| +* BFD_RELOC_ALPHA_GOTTPREL16: howto manager. (line 335)
|
| +* BFD_RELOC_ALPHA_GPDISP: howto manager. (line 256)
|
| +* BFD_RELOC_ALPHA_GPDISP_HI16: howto manager. (line 242)
|
| +* BFD_RELOC_ALPHA_GPDISP_LO16: howto manager. (line 250)
|
| +* BFD_RELOC_ALPHA_GPREL_HI16: howto manager. (line 301)
|
| +* BFD_RELOC_ALPHA_GPREL_LO16: howto manager. (line 302)
|
| +* BFD_RELOC_ALPHA_HINT: howto manager. (line 288)
|
| +* BFD_RELOC_ALPHA_LDA: howto manager. (line 319)
|
| +* BFD_RELOC_ALPHA_LINKAGE: howto manager. (line 293)
|
| +* BFD_RELOC_ALPHA_LITERAL: howto manager. (line 261)
|
| +* BFD_RELOC_ALPHA_LITUSE: howto manager. (line 263)
|
| +* BFD_RELOC_ALPHA_NOP: howto manager. (line 311)
|
| +* BFD_RELOC_ALPHA_TLSGD: howto manager. (line 327)
|
| +* BFD_RELOC_ALPHA_TLSLDM: howto manager. (line 328)
|
| +* BFD_RELOC_ALPHA_TPREL16: howto manager. (line 339)
|
| +* BFD_RELOC_ALPHA_TPREL64: howto manager. (line 336)
|
| +* BFD_RELOC_ALPHA_TPREL_HI16: howto manager. (line 337)
|
| +* BFD_RELOC_ALPHA_TPREL_LO16: howto manager. (line 338)
|
| +* BFD_RELOC_ARC_B22_PCREL: howto manager. (line 1049)
|
| +* BFD_RELOC_ARC_B26: howto manager. (line 1054)
|
| +* BFD_RELOC_ARM_ADR_IMM: howto manager. (line 935)
|
| +* BFD_RELOC_ARM_ADRL_IMMEDIATE: howto manager. (line 921)
|
| +* BFD_RELOC_ARM_ALU_PC_G0: howto manager. (line 885)
|
| +* BFD_RELOC_ARM_ALU_PC_G0_NC: howto manager. (line 884)
|
| +* BFD_RELOC_ARM_ALU_PC_G1: howto manager. (line 887)
|
| +* BFD_RELOC_ARM_ALU_PC_G1_NC: howto manager. (line 886)
|
| +* BFD_RELOC_ARM_ALU_PC_G2: howto manager. (line 888)
|
| +* BFD_RELOC_ARM_ALU_SB_G0: howto manager. (line 899)
|
| +* BFD_RELOC_ARM_ALU_SB_G0_NC: howto manager. (line 898)
|
| +* BFD_RELOC_ARM_ALU_SB_G1: howto manager. (line 901)
|
| +* BFD_RELOC_ARM_ALU_SB_G1_NC: howto manager. (line 900)
|
| +* BFD_RELOC_ARM_ALU_SB_G2: howto manager. (line 902)
|
| +* BFD_RELOC_ARM_CP_OFF_IMM: howto manager. (line 931)
|
| +* BFD_RELOC_ARM_CP_OFF_IMM_S2: howto manager. (line 932)
|
| +* BFD_RELOC_ARM_GLOB_DAT: howto manager. (line 859)
|
| +* BFD_RELOC_ARM_GOT32: howto manager. (line 860)
|
| +* BFD_RELOC_ARM_GOT_PREL: howto manager. (line 865)
|
| +* BFD_RELOC_ARM_GOTOFF: howto manager. (line 863)
|
| +* BFD_RELOC_ARM_GOTPC: howto manager. (line 864)
|
| +* BFD_RELOC_ARM_HVC: howto manager. (line 928)
|
| +* BFD_RELOC_ARM_HWLITERAL: howto manager. (line 942)
|
| +* BFD_RELOC_ARM_IMMEDIATE: howto manager. (line 920)
|
| +* BFD_RELOC_ARM_IN_POOL: howto manager. (line 938)
|
| +* BFD_RELOC_ARM_IRELATIVE: howto manager. (line 917)
|
| +* BFD_RELOC_ARM_JUMP_SLOT: howto manager. (line 858)
|
| +* BFD_RELOC_ARM_LDC_PC_G0: howto manager. (line 895)
|
| +* BFD_RELOC_ARM_LDC_PC_G1: howto manager. (line 896)
|
| +* BFD_RELOC_ARM_LDC_PC_G2: howto manager. (line 897)
|
| +* BFD_RELOC_ARM_LDC_SB_G0: howto manager. (line 909)
|
| +* BFD_RELOC_ARM_LDC_SB_G1: howto manager. (line 910)
|
| +* BFD_RELOC_ARM_LDC_SB_G2: howto manager. (line 911)
|
| +* BFD_RELOC_ARM_LDR_IMM: howto manager. (line 936)
|
| +* BFD_RELOC_ARM_LDR_PC_G0: howto manager. (line 889)
|
| +* BFD_RELOC_ARM_LDR_PC_G1: howto manager. (line 890)
|
| +* BFD_RELOC_ARM_LDR_PC_G2: howto manager. (line 891)
|
| +* BFD_RELOC_ARM_LDR_SB_G0: howto manager. (line 903)
|
| +* BFD_RELOC_ARM_LDR_SB_G1: howto manager. (line 904)
|
| +* BFD_RELOC_ARM_LDR_SB_G2: howto manager. (line 905)
|
| +* BFD_RELOC_ARM_LDRS_PC_G0: howto manager. (line 892)
|
| +* BFD_RELOC_ARM_LDRS_PC_G1: howto manager. (line 893)
|
| +* BFD_RELOC_ARM_LDRS_PC_G2: howto manager. (line 894)
|
| +* BFD_RELOC_ARM_LDRS_SB_G0: howto manager. (line 906)
|
| +* BFD_RELOC_ARM_LDRS_SB_G1: howto manager. (line 907)
|
| +* BFD_RELOC_ARM_LDRS_SB_G2: howto manager. (line 908)
|
| +* BFD_RELOC_ARM_LITERAL: howto manager. (line 937)
|
| +* BFD_RELOC_ARM_MOVT: howto manager. (line 849)
|
| +* BFD_RELOC_ARM_MOVT_PCREL: howto manager. (line 851)
|
| +* BFD_RELOC_ARM_MOVW: howto manager. (line 848)
|
| +* BFD_RELOC_ARM_MOVW_PCREL: howto manager. (line 850)
|
| +* BFD_RELOC_ARM_MULTI: howto manager. (line 930)
|
| +* BFD_RELOC_ARM_OFFSET_IMM: howto manager. (line 822)
|
| +* BFD_RELOC_ARM_OFFSET_IMM8: howto manager. (line 939)
|
| +* BFD_RELOC_ARM_PCREL_BLX: howto manager. (line 793)
|
| +* BFD_RELOC_ARM_PCREL_BRANCH: howto manager. (line 789)
|
| +* BFD_RELOC_ARM_PCREL_CALL: howto manager. (line 803)
|
| +* BFD_RELOC_ARM_PCREL_JUMP: howto manager. (line 807)
|
| +* BFD_RELOC_ARM_PLT32: howto manager. (line 861)
|
| +* BFD_RELOC_ARM_PREL31: howto manager. (line 845)
|
| +* BFD_RELOC_ARM_RELATIVE: howto manager. (line 862)
|
| +* BFD_RELOC_ARM_ROSEGREL32: howto manager. (line 834)
|
| +* BFD_RELOC_ARM_SBREL32: howto manager. (line 837)
|
| +* BFD_RELOC_ARM_SHIFT_IMM: howto manager. (line 926)
|
| +* BFD_RELOC_ARM_SMC: howto manager. (line 927)
|
| +* BFD_RELOC_ARM_SWI: howto manager. (line 929)
|
| +* BFD_RELOC_ARM_T32_ADD_IMM: howto manager. (line 923)
|
| +* BFD_RELOC_ARM_T32_ADD_PC12: howto manager. (line 925)
|
| +* BFD_RELOC_ARM_T32_CP_OFF_IMM: howto manager. (line 933)
|
| +* BFD_RELOC_ARM_T32_CP_OFF_IMM_S2: howto manager. (line 934)
|
| +* BFD_RELOC_ARM_T32_IMM12: howto manager. (line 924)
|
| +* BFD_RELOC_ARM_T32_IMMEDIATE: howto manager. (line 922)
|
| +* BFD_RELOC_ARM_T32_OFFSET_IMM: howto manager. (line 941)
|
| +* BFD_RELOC_ARM_T32_OFFSET_U8: howto manager. (line 940)
|
| +* BFD_RELOC_ARM_TARGET1: howto manager. (line 830)
|
| +* BFD_RELOC_ARM_TARGET2: howto manager. (line 840)
|
| +* BFD_RELOC_ARM_THM_TLS_CALL: howto manager. (line 878)
|
| +* BFD_RELOC_ARM_THM_TLS_DESCSEQ: howto manager. (line 880)
|
| +* BFD_RELOC_ARM_THUMB_ADD: howto manager. (line 943)
|
| +* BFD_RELOC_ARM_THUMB_IMM: howto manager. (line 944)
|
| +* BFD_RELOC_ARM_THUMB_MOVT: howto manager. (line 853)
|
| +* BFD_RELOC_ARM_THUMB_MOVT_PCREL: howto manager. (line 855)
|
| +* BFD_RELOC_ARM_THUMB_MOVW: howto manager. (line 852)
|
| +* BFD_RELOC_ARM_THUMB_MOVW_PCREL: howto manager. (line 854)
|
| +* BFD_RELOC_ARM_THUMB_OFFSET: howto manager. (line 826)
|
| +* BFD_RELOC_ARM_THUMB_SHIFT: howto manager. (line 945)
|
| +* BFD_RELOC_ARM_TLS_CALL: howto manager. (line 877)
|
| +* BFD_RELOC_ARM_TLS_DESC: howto manager. (line 881)
|
| +* BFD_RELOC_ARM_TLS_DESCSEQ: howto manager. (line 879)
|
| +* BFD_RELOC_ARM_TLS_DTPMOD32: howto manager. (line 872)
|
| +* BFD_RELOC_ARM_TLS_DTPOFF32: howto manager. (line 871)
|
| +* BFD_RELOC_ARM_TLS_GD32: howto manager. (line 868)
|
| +* BFD_RELOC_ARM_TLS_GOTDESC: howto manager. (line 876)
|
| +* BFD_RELOC_ARM_TLS_IE32: howto manager. (line 874)
|
| +* BFD_RELOC_ARM_TLS_LDM32: howto manager. (line 870)
|
| +* BFD_RELOC_ARM_TLS_LDO32: howto manager. (line 869)
|
| +* BFD_RELOC_ARM_TLS_LE32: howto manager. (line 875)
|
| +* BFD_RELOC_ARM_TLS_TPOFF32: howto manager. (line 873)
|
| +* BFD_RELOC_ARM_V4BX: howto manager. (line 914)
|
| +* BFD_RELOC_AVR_13_PCREL: howto manager. (line 1644)
|
| +* BFD_RELOC_AVR_16_PM: howto manager. (line 1648)
|
| +* BFD_RELOC_AVR_6: howto manager. (line 1735)
|
| +* BFD_RELOC_AVR_6_ADIW: howto manager. (line 1739)
|
| +* BFD_RELOC_AVR_7_PCREL: howto manager. (line 1640)
|
| +* BFD_RELOC_AVR_8_HI: howto manager. (line 1747)
|
| +* BFD_RELOC_AVR_8_HLO: howto manager. (line 1751)
|
| +* BFD_RELOC_AVR_8_LO: howto manager. (line 1743)
|
| +* BFD_RELOC_AVR_CALL: howto manager. (line 1727)
|
| +* BFD_RELOC_AVR_HH8_LDI: howto manager. (line 1660)
|
| +* BFD_RELOC_AVR_HH8_LDI_NEG: howto manager. (line 1679)
|
| +* BFD_RELOC_AVR_HH8_LDI_PM: howto manager. (line 1708)
|
| +* BFD_RELOC_AVR_HH8_LDI_PM_NEG: howto manager. (line 1722)
|
| +* BFD_RELOC_AVR_HI8_LDI: howto manager. (line 1656)
|
| +* BFD_RELOC_AVR_HI8_LDI_GS: howto manager. (line 1702)
|
| +* BFD_RELOC_AVR_HI8_LDI_NEG: howto manager. (line 1674)
|
| +* BFD_RELOC_AVR_HI8_LDI_PM: howto manager. (line 1698)
|
| +* BFD_RELOC_AVR_HI8_LDI_PM_NEG: howto manager. (line 1717)
|
| +* BFD_RELOC_AVR_LDI: howto manager. (line 1731)
|
| +* BFD_RELOC_AVR_LO8_LDI: howto manager. (line 1652)
|
| +* BFD_RELOC_AVR_LO8_LDI_GS: howto manager. (line 1692)
|
| +* BFD_RELOC_AVR_LO8_LDI_NEG: howto manager. (line 1669)
|
| +* BFD_RELOC_AVR_LO8_LDI_PM: howto manager. (line 1688)
|
| +* BFD_RELOC_AVR_LO8_LDI_PM_NEG: howto manager. (line 1713)
|
| +* BFD_RELOC_AVR_MS8_LDI: howto manager. (line 1665)
|
| +* BFD_RELOC_AVR_MS8_LDI_NEG: howto manager. (line 1684)
|
| +* BFD_RELOC_BFIN_10_PCREL: howto manager. (line 1074)
|
| +* BFD_RELOC_BFIN_11_PCREL: howto manager. (line 1077)
|
| +* BFD_RELOC_BFIN_12_PCREL_JUMP: howto manager. (line 1080)
|
| +* BFD_RELOC_BFIN_12_PCREL_JUMP_S: howto manager. (line 1083)
|
| +* BFD_RELOC_BFIN_16_HIGH: howto manager. (line 1062)
|
| +* BFD_RELOC_BFIN_16_IMM: howto manager. (line 1059)
|
| +* BFD_RELOC_BFIN_16_LOW: howto manager. (line 1071)
|
| +* BFD_RELOC_BFIN_24_PCREL_CALL_X: howto manager. (line 1086)
|
| +* BFD_RELOC_BFIN_24_PCREL_JUMP_L: howto manager. (line 1089)
|
| +* BFD_RELOC_BFIN_4_PCREL: howto manager. (line 1065)
|
| +* BFD_RELOC_BFIN_5_PCREL: howto manager. (line 1068)
|
| +* BFD_RELOC_BFIN_FUNCDESC: howto manager. (line 1095)
|
| +* BFD_RELOC_BFIN_FUNCDESC_GOT17M4: howto manager. (line 1096)
|
| +* BFD_RELOC_BFIN_FUNCDESC_GOTHI: howto manager. (line 1097)
|
| +* BFD_RELOC_BFIN_FUNCDESC_GOTLO: howto manager. (line 1098)
|
| +* BFD_RELOC_BFIN_FUNCDESC_GOTOFF17M4: howto manager. (line 1100)
|
| +* BFD_RELOC_BFIN_FUNCDESC_GOTOFFHI: howto manager. (line 1101)
|
| +* BFD_RELOC_BFIN_FUNCDESC_GOTOFFLO: howto manager. (line 1102)
|
| +* BFD_RELOC_BFIN_FUNCDESC_VALUE: howto manager. (line 1099)
|
| +* BFD_RELOC_BFIN_GOT: howto manager. (line 1108)
|
| +* BFD_RELOC_BFIN_GOT17M4: howto manager. (line 1092)
|
| +* BFD_RELOC_BFIN_GOTHI: howto manager. (line 1093)
|
| +* BFD_RELOC_BFIN_GOTLO: howto manager. (line 1094)
|
| +* BFD_RELOC_BFIN_GOTOFF17M4: howto manager. (line 1103)
|
| +* BFD_RELOC_BFIN_GOTOFFHI: howto manager. (line 1104)
|
| +* BFD_RELOC_BFIN_GOTOFFLO: howto manager. (line 1105)
|
| +* BFD_RELOC_BFIN_PLTPC: howto manager. (line 1111)
|
| +* BFD_RELOC_C6000_ABS_H16: howto manager. (line 1463)
|
| +* BFD_RELOC_C6000_ABS_L16: howto manager. (line 1462)
|
| +* BFD_RELOC_C6000_ABS_S16: howto manager. (line 1461)
|
| +* BFD_RELOC_C6000_ALIGN: howto manager. (line 1484)
|
| +* BFD_RELOC_C6000_COPY: howto manager. (line 1479)
|
| +* BFD_RELOC_C6000_DSBT_INDEX: howto manager. (line 1477)
|
| +* BFD_RELOC_C6000_EHTYPE: howto manager. (line 1481)
|
| +* BFD_RELOC_C6000_FPHEAD: howto manager. (line 1485)
|
| +* BFD_RELOC_C6000_JUMP_SLOT: howto manager. (line 1480)
|
| +* BFD_RELOC_C6000_NOCMP: howto manager. (line 1486)
|
| +* BFD_RELOC_C6000_PCR_H16: howto manager. (line 1482)
|
| +* BFD_RELOC_C6000_PCR_L16: howto manager. (line 1483)
|
| +* BFD_RELOC_C6000_PCR_S10: howto manager. (line 1459)
|
| +* BFD_RELOC_C6000_PCR_S12: howto manager. (line 1458)
|
| +* BFD_RELOC_C6000_PCR_S21: howto manager. (line 1457)
|
| +* BFD_RELOC_C6000_PCR_S7: howto manager. (line 1460)
|
| +* BFD_RELOC_C6000_PREL31: howto manager. (line 1478)
|
| +* BFD_RELOC_C6000_SBR_GOT_H16_W: howto manager. (line 1476)
|
| +* BFD_RELOC_C6000_SBR_GOT_L16_W: howto manager. (line 1475)
|
| +* BFD_RELOC_C6000_SBR_GOT_U15_W: howto manager. (line 1474)
|
| +* BFD_RELOC_C6000_SBR_H16_B: howto manager. (line 1471)
|
| +* BFD_RELOC_C6000_SBR_H16_H: howto manager. (line 1472)
|
| +* BFD_RELOC_C6000_SBR_H16_W: howto manager. (line 1473)
|
| +* BFD_RELOC_C6000_SBR_L16_B: howto manager. (line 1468)
|
| +* BFD_RELOC_C6000_SBR_L16_H: howto manager. (line 1469)
|
| +* BFD_RELOC_C6000_SBR_L16_W: howto manager. (line 1470)
|
| +* BFD_RELOC_C6000_SBR_S16: howto manager. (line 1467)
|
| +* BFD_RELOC_C6000_SBR_U15_B: howto manager. (line 1464)
|
| +* BFD_RELOC_C6000_SBR_U15_H: howto manager. (line 1465)
|
| +* BFD_RELOC_C6000_SBR_U15_W: howto manager. (line 1466)
|
| * bfd_reloc_code_type: howto manager. (line 10)
|
| -* BFD_RELOC_CR16_ABS20: howto manager. (line 2198)
|
| -* BFD_RELOC_CR16_ABS24: howto manager. (line 2199)
|
| -* BFD_RELOC_CR16_DISP16: howto manager. (line 2209)
|
| -* BFD_RELOC_CR16_DISP20: howto manager. (line 2210)
|
| -* BFD_RELOC_CR16_DISP24: howto manager. (line 2211)
|
| -* BFD_RELOC_CR16_DISP24a: howto manager. (line 2212)
|
| -* BFD_RELOC_CR16_DISP4: howto manager. (line 2207)
|
| -* BFD_RELOC_CR16_DISP8: howto manager. (line 2208)
|
| -* BFD_RELOC_CR16_GLOB_DAT: howto manager. (line 2218)
|
| -* BFD_RELOC_CR16_GOT_REGREL20: howto manager. (line 2216)
|
| -* BFD_RELOC_CR16_GOTC_REGREL20: howto manager. (line 2217)
|
| -* BFD_RELOC_CR16_IMM16: howto manager. (line 2202)
|
| -* BFD_RELOC_CR16_IMM20: howto manager. (line 2203)
|
| -* BFD_RELOC_CR16_IMM24: howto manager. (line 2204)
|
| -* BFD_RELOC_CR16_IMM32: howto manager. (line 2205)
|
| -* BFD_RELOC_CR16_IMM32a: howto manager. (line 2206)
|
| -* BFD_RELOC_CR16_IMM4: howto manager. (line 2200)
|
| -* BFD_RELOC_CR16_IMM8: howto manager. (line 2201)
|
| -* BFD_RELOC_CR16_NUM16: howto manager. (line 2187)
|
| -* BFD_RELOC_CR16_NUM32: howto manager. (line 2188)
|
| -* BFD_RELOC_CR16_NUM32a: howto manager. (line 2189)
|
| -* BFD_RELOC_CR16_NUM8: howto manager. (line 2186)
|
| -* BFD_RELOC_CR16_REGREL0: howto manager. (line 2190)
|
| -* BFD_RELOC_CR16_REGREL14: howto manager. (line 2193)
|
| -* BFD_RELOC_CR16_REGREL14a: howto manager. (line 2194)
|
| -* BFD_RELOC_CR16_REGREL16: howto manager. (line 2195)
|
| -* BFD_RELOC_CR16_REGREL20: howto manager. (line 2196)
|
| -* BFD_RELOC_CR16_REGREL20a: howto manager. (line 2197)
|
| -* BFD_RELOC_CR16_REGREL4: howto manager. (line 2191)
|
| -* BFD_RELOC_CR16_REGREL4a: howto manager. (line 2192)
|
| -* BFD_RELOC_CR16_SWITCH16: howto manager. (line 2214)
|
| -* BFD_RELOC_CR16_SWITCH32: howto manager. (line 2215)
|
| -* BFD_RELOC_CR16_SWITCH8: howto manager. (line 2213)
|
| -* BFD_RELOC_CRIS_16_DTPREL: howto manager. (line 2289)
|
| -* BFD_RELOC_CRIS_16_GOT: howto manager. (line 2265)
|
| -* BFD_RELOC_CRIS_16_GOT_GD: howto manager. (line 2285)
|
| -* BFD_RELOC_CRIS_16_GOT_TPREL: howto manager. (line 2291)
|
| -* BFD_RELOC_CRIS_16_GOTPLT: howto manager. (line 2271)
|
| -* BFD_RELOC_CRIS_16_TPREL: howto manager. (line 2293)
|
| -* BFD_RELOC_CRIS_32_DTPREL: howto manager. (line 2288)
|
| -* BFD_RELOC_CRIS_32_GD: howto manager. (line 2286)
|
| -* BFD_RELOC_CRIS_32_GOT: howto manager. (line 2262)
|
| -* BFD_RELOC_CRIS_32_GOT_GD: howto manager. (line 2284)
|
| -* BFD_RELOC_CRIS_32_GOT_TPREL: howto manager. (line 2290)
|
| -* BFD_RELOC_CRIS_32_GOTPLT: howto manager. (line 2268)
|
| -* BFD_RELOC_CRIS_32_GOTREL: howto manager. (line 2274)
|
| -* BFD_RELOC_CRIS_32_IE: howto manager. (line 2295)
|
| -* BFD_RELOC_CRIS_32_PLT_GOTREL: howto manager. (line 2277)
|
| -* BFD_RELOC_CRIS_32_PLT_PCREL: howto manager. (line 2280)
|
| -* BFD_RELOC_CRIS_32_TPREL: howto manager. (line 2292)
|
| -* BFD_RELOC_CRIS_BDISP8: howto manager. (line 2243)
|
| -* BFD_RELOC_CRIS_COPY: howto manager. (line 2256)
|
| -* BFD_RELOC_CRIS_DTP: howto manager. (line 2287)
|
| -* BFD_RELOC_CRIS_DTPMOD: howto manager. (line 2294)
|
| -* BFD_RELOC_CRIS_GLOB_DAT: howto manager. (line 2257)
|
| -* BFD_RELOC_CRIS_JUMP_SLOT: howto manager. (line 2258)
|
| -* BFD_RELOC_CRIS_LAPCQ_OFFSET: howto manager. (line 2251)
|
| -* BFD_RELOC_CRIS_RELATIVE: howto manager. (line 2259)
|
| -* BFD_RELOC_CRIS_SIGNED_16: howto manager. (line 2249)
|
| -* BFD_RELOC_CRIS_SIGNED_6: howto manager. (line 2245)
|
| -* BFD_RELOC_CRIS_SIGNED_8: howto manager. (line 2247)
|
| -* BFD_RELOC_CRIS_UNSIGNED_16: howto manager. (line 2250)
|
| -* BFD_RELOC_CRIS_UNSIGNED_4: howto manager. (line 2252)
|
| -* BFD_RELOC_CRIS_UNSIGNED_5: howto manager. (line 2244)
|
| -* BFD_RELOC_CRIS_UNSIGNED_6: howto manager. (line 2246)
|
| -* BFD_RELOC_CRIS_UNSIGNED_8: howto manager. (line 2248)
|
| -* BFD_RELOC_CRX_ABS16: howto manager. (line 2231)
|
| -* BFD_RELOC_CRX_ABS32: howto manager. (line 2232)
|
| -* BFD_RELOC_CRX_IMM16: howto manager. (line 2236)
|
| -* BFD_RELOC_CRX_IMM32: howto manager. (line 2237)
|
| -* BFD_RELOC_CRX_NUM16: howto manager. (line 2234)
|
| -* BFD_RELOC_CRX_NUM32: howto manager. (line 2235)
|
| -* BFD_RELOC_CRX_NUM8: howto manager. (line 2233)
|
| -* BFD_RELOC_CRX_REGREL12: howto manager. (line 2227)
|
| -* BFD_RELOC_CRX_REGREL22: howto manager. (line 2228)
|
| -* BFD_RELOC_CRX_REGREL28: howto manager. (line 2229)
|
| -* BFD_RELOC_CRX_REGREL32: howto manager. (line 2230)
|
| -* BFD_RELOC_CRX_REL16: howto manager. (line 2224)
|
| -* BFD_RELOC_CRX_REL24: howto manager. (line 2225)
|
| -* BFD_RELOC_CRX_REL32: howto manager. (line 2226)
|
| -* BFD_RELOC_CRX_REL4: howto manager. (line 2221)
|
| -* BFD_RELOC_CRX_REL8: howto manager. (line 2222)
|
| -* BFD_RELOC_CRX_REL8_CMP: howto manager. (line 2223)
|
| -* BFD_RELOC_CRX_SWITCH16: howto manager. (line 2239)
|
| -* BFD_RELOC_CRX_SWITCH32: howto manager. (line 2240)
|
| -* BFD_RELOC_CRX_SWITCH8: howto manager. (line 2238)
|
| -* BFD_RELOC_CTOR: howto manager. (line 770)
|
| -* BFD_RELOC_D10V_10_PCREL_L: howto manager. (line 1165)
|
| -* BFD_RELOC_D10V_10_PCREL_R: howto manager. (line 1161)
|
| -* BFD_RELOC_D10V_18: howto manager. (line 1170)
|
| -* BFD_RELOC_D10V_18_PCREL: howto manager. (line 1173)
|
| -* BFD_RELOC_D30V_15: howto manager. (line 1188)
|
| -* BFD_RELOC_D30V_15_PCREL: howto manager. (line 1192)
|
| -* BFD_RELOC_D30V_15_PCREL_R: howto manager. (line 1196)
|
| -* BFD_RELOC_D30V_21: howto manager. (line 1201)
|
| -* BFD_RELOC_D30V_21_PCREL: howto manager. (line 1205)
|
| -* BFD_RELOC_D30V_21_PCREL_R: howto manager. (line 1209)
|
| -* BFD_RELOC_D30V_32: howto manager. (line 1214)
|
| -* BFD_RELOC_D30V_32_PCREL: howto manager. (line 1217)
|
| -* BFD_RELOC_D30V_6: howto manager. (line 1176)
|
| -* BFD_RELOC_D30V_9_PCREL: howto manager. (line 1179)
|
| -* BFD_RELOC_D30V_9_PCREL_R: howto manager. (line 1183)
|
| -* BFD_RELOC_DLX_HI16_S: howto manager. (line 1220)
|
| -* BFD_RELOC_DLX_JMP26: howto manager. (line 1226)
|
| -* BFD_RELOC_DLX_LO16: howto manager. (line 1223)
|
| -* BFD_RELOC_EPIPHANY_HIGH: howto manager. (line 2779)
|
| -* BFD_RELOC_EPIPHANY_IMM11: howto manager. (line 2788)
|
| -* BFD_RELOC_EPIPHANY_IMM8: howto manager. (line 2792)
|
| -* BFD_RELOC_EPIPHANY_LOW: howto manager. (line 2782)
|
| -* BFD_RELOC_EPIPHANY_SIMM11: howto manager. (line 2785)
|
| -* BFD_RELOC_EPIPHANY_SIMM24: howto manager. (line 2776)
|
| -* BFD_RELOC_EPIPHANY_SIMM8: howto manager. (line 2773)
|
| -* BFD_RELOC_FR30_10_IN_8: howto manager. (line 1495)
|
| -* BFD_RELOC_FR30_12_PCREL: howto manager. (line 1503)
|
| -* BFD_RELOC_FR30_20: howto manager. (line 1479)
|
| -* BFD_RELOC_FR30_48: howto manager. (line 1476)
|
| -* BFD_RELOC_FR30_6_IN_4: howto manager. (line 1483)
|
| -* BFD_RELOC_FR30_8_IN_8: howto manager. (line 1487)
|
| -* BFD_RELOC_FR30_9_IN_8: howto manager. (line 1491)
|
| -* BFD_RELOC_FR30_9_PCREL: howto manager. (line 1499)
|
| -* BFD_RELOC_FRV_FUNCDESC: howto manager. (line 486)
|
| -* BFD_RELOC_FRV_FUNCDESC_GOT12: howto manager. (line 487)
|
| -* BFD_RELOC_FRV_FUNCDESC_GOTHI: howto manager. (line 488)
|
| -* BFD_RELOC_FRV_FUNCDESC_GOTLO: howto manager. (line 489)
|
| -* BFD_RELOC_FRV_FUNCDESC_GOTOFF12: howto manager. (line 491)
|
| -* BFD_RELOC_FRV_FUNCDESC_GOTOFFHI: howto manager. (line 492)
|
| -* BFD_RELOC_FRV_FUNCDESC_GOTOFFLO: howto manager. (line 493)
|
| -* BFD_RELOC_FRV_FUNCDESC_VALUE: howto manager. (line 490)
|
| -* BFD_RELOC_FRV_GETTLSOFF: howto manager. (line 497)
|
| -* BFD_RELOC_FRV_GETTLSOFF_RELAX: howto manager. (line 510)
|
| -* BFD_RELOC_FRV_GOT12: howto manager. (line 483)
|
| -* BFD_RELOC_FRV_GOTHI: howto manager. (line 484)
|
| -* BFD_RELOC_FRV_GOTLO: howto manager. (line 485)
|
| -* BFD_RELOC_FRV_GOTOFF12: howto manager. (line 494)
|
| -* BFD_RELOC_FRV_GOTOFFHI: howto manager. (line 495)
|
| -* BFD_RELOC_FRV_GOTOFFLO: howto manager. (line 496)
|
| -* BFD_RELOC_FRV_GOTTLSDESC12: howto manager. (line 499)
|
| -* BFD_RELOC_FRV_GOTTLSDESCHI: howto manager. (line 500)
|
| -* BFD_RELOC_FRV_GOTTLSDESCLO: howto manager. (line 501)
|
| -* BFD_RELOC_FRV_GOTTLSOFF12: howto manager. (line 505)
|
| -* BFD_RELOC_FRV_GOTTLSOFFHI: howto manager. (line 506)
|
| -* BFD_RELOC_FRV_GOTTLSOFFLO: howto manager. (line 507)
|
| -* BFD_RELOC_FRV_GPREL12: howto manager. (line 478)
|
| -* BFD_RELOC_FRV_GPREL32: howto manager. (line 480)
|
| -* BFD_RELOC_FRV_GPRELHI: howto manager. (line 481)
|
| -* BFD_RELOC_FRV_GPRELLO: howto manager. (line 482)
|
| -* BFD_RELOC_FRV_GPRELU12: howto manager. (line 479)
|
| -* BFD_RELOC_FRV_HI16: howto manager. (line 477)
|
| -* BFD_RELOC_FRV_LABEL16: howto manager. (line 474)
|
| -* BFD_RELOC_FRV_LABEL24: howto manager. (line 475)
|
| -* BFD_RELOC_FRV_LO16: howto manager. (line 476)
|
| -* BFD_RELOC_FRV_TLSDESC_RELAX: howto manager. (line 509)
|
| -* BFD_RELOC_FRV_TLSDESC_VALUE: howto manager. (line 498)
|
| -* BFD_RELOC_FRV_TLSMOFF: howto manager. (line 512)
|
| -* BFD_RELOC_FRV_TLSMOFF12: howto manager. (line 502)
|
| -* BFD_RELOC_FRV_TLSMOFFHI: howto manager. (line 503)
|
| -* BFD_RELOC_FRV_TLSMOFFLO: howto manager. (line 504)
|
| -* BFD_RELOC_FRV_TLSOFF: howto manager. (line 508)
|
| -* BFD_RELOC_FRV_TLSOFF_RELAX: howto manager. (line 511)
|
| -* BFD_RELOC_GPREL16: howto manager. (line 121)
|
| -* BFD_RELOC_GPREL32: howto manager. (line 122)
|
| -* BFD_RELOC_H8_DIR16A8: howto manager. (line 2336)
|
| -* BFD_RELOC_H8_DIR16R8: howto manager. (line 2337)
|
| -* BFD_RELOC_H8_DIR24A8: howto manager. (line 2338)
|
| -* BFD_RELOC_H8_DIR24R8: howto manager. (line 2339)
|
| -* BFD_RELOC_H8_DIR32A16: howto manager. (line 2340)
|
| -* BFD_RELOC_HI16: howto manager. (line 348)
|
| -* BFD_RELOC_HI16_BASEREL: howto manager. (line 97)
|
| +* BFD_RELOC_CR16_ABS20: howto manager. (line 2264)
|
| +* BFD_RELOC_CR16_ABS24: howto manager. (line 2265)
|
| +* BFD_RELOC_CR16_DISP16: howto manager. (line 2275)
|
| +* BFD_RELOC_CR16_DISP20: howto manager. (line 2276)
|
| +* BFD_RELOC_CR16_DISP24: howto manager. (line 2277)
|
| +* BFD_RELOC_CR16_DISP24a: howto manager. (line 2278)
|
| +* BFD_RELOC_CR16_DISP4: howto manager. (line 2273)
|
| +* BFD_RELOC_CR16_DISP8: howto manager. (line 2274)
|
| +* BFD_RELOC_CR16_GLOB_DAT: howto manager. (line 2284)
|
| +* BFD_RELOC_CR16_GOT_REGREL20: howto manager. (line 2282)
|
| +* BFD_RELOC_CR16_GOTC_REGREL20: howto manager. (line 2283)
|
| +* BFD_RELOC_CR16_IMM16: howto manager. (line 2268)
|
| +* BFD_RELOC_CR16_IMM20: howto manager. (line 2269)
|
| +* BFD_RELOC_CR16_IMM24: howto manager. (line 2270)
|
| +* BFD_RELOC_CR16_IMM32: howto manager. (line 2271)
|
| +* BFD_RELOC_CR16_IMM32a: howto manager. (line 2272)
|
| +* BFD_RELOC_CR16_IMM4: howto manager. (line 2266)
|
| +* BFD_RELOC_CR16_IMM8: howto manager. (line 2267)
|
| +* BFD_RELOC_CR16_NUM16: howto manager. (line 2253)
|
| +* BFD_RELOC_CR16_NUM32: howto manager. (line 2254)
|
| +* BFD_RELOC_CR16_NUM32a: howto manager. (line 2255)
|
| +* BFD_RELOC_CR16_NUM8: howto manager. (line 2252)
|
| +* BFD_RELOC_CR16_REGREL0: howto manager. (line 2256)
|
| +* BFD_RELOC_CR16_REGREL14: howto manager. (line 2259)
|
| +* BFD_RELOC_CR16_REGREL14a: howto manager. (line 2260)
|
| +* BFD_RELOC_CR16_REGREL16: howto manager. (line 2261)
|
| +* BFD_RELOC_CR16_REGREL20: howto manager. (line 2262)
|
| +* BFD_RELOC_CR16_REGREL20a: howto manager. (line 2263)
|
| +* BFD_RELOC_CR16_REGREL4: howto manager. (line 2257)
|
| +* BFD_RELOC_CR16_REGREL4a: howto manager. (line 2258)
|
| +* BFD_RELOC_CR16_SWITCH16: howto manager. (line 2280)
|
| +* BFD_RELOC_CR16_SWITCH32: howto manager. (line 2281)
|
| +* BFD_RELOC_CR16_SWITCH8: howto manager. (line 2279)
|
| +* BFD_RELOC_CRIS_16_DTPREL: howto manager. (line 2355)
|
| +* BFD_RELOC_CRIS_16_GOT: howto manager. (line 2331)
|
| +* BFD_RELOC_CRIS_16_GOT_GD: howto manager. (line 2351)
|
| +* BFD_RELOC_CRIS_16_GOT_TPREL: howto manager. (line 2357)
|
| +* BFD_RELOC_CRIS_16_GOTPLT: howto manager. (line 2337)
|
| +* BFD_RELOC_CRIS_16_TPREL: howto manager. (line 2359)
|
| +* BFD_RELOC_CRIS_32_DTPREL: howto manager. (line 2354)
|
| +* BFD_RELOC_CRIS_32_GD: howto manager. (line 2352)
|
| +* BFD_RELOC_CRIS_32_GOT: howto manager. (line 2328)
|
| +* BFD_RELOC_CRIS_32_GOT_GD: howto manager. (line 2350)
|
| +* BFD_RELOC_CRIS_32_GOT_TPREL: howto manager. (line 2356)
|
| +* BFD_RELOC_CRIS_32_GOTPLT: howto manager. (line 2334)
|
| +* BFD_RELOC_CRIS_32_GOTREL: howto manager. (line 2340)
|
| +* BFD_RELOC_CRIS_32_IE: howto manager. (line 2361)
|
| +* BFD_RELOC_CRIS_32_PLT_GOTREL: howto manager. (line 2343)
|
| +* BFD_RELOC_CRIS_32_PLT_PCREL: howto manager. (line 2346)
|
| +* BFD_RELOC_CRIS_32_TPREL: howto manager. (line 2358)
|
| +* BFD_RELOC_CRIS_BDISP8: howto manager. (line 2309)
|
| +* BFD_RELOC_CRIS_COPY: howto manager. (line 2322)
|
| +* BFD_RELOC_CRIS_DTP: howto manager. (line 2353)
|
| +* BFD_RELOC_CRIS_DTPMOD: howto manager. (line 2360)
|
| +* BFD_RELOC_CRIS_GLOB_DAT: howto manager. (line 2323)
|
| +* BFD_RELOC_CRIS_JUMP_SLOT: howto manager. (line 2324)
|
| +* BFD_RELOC_CRIS_LAPCQ_OFFSET: howto manager. (line 2317)
|
| +* BFD_RELOC_CRIS_RELATIVE: howto manager. (line 2325)
|
| +* BFD_RELOC_CRIS_SIGNED_16: howto manager. (line 2315)
|
| +* BFD_RELOC_CRIS_SIGNED_6: howto manager. (line 2311)
|
| +* BFD_RELOC_CRIS_SIGNED_8: howto manager. (line 2313)
|
| +* BFD_RELOC_CRIS_UNSIGNED_16: howto manager. (line 2316)
|
| +* BFD_RELOC_CRIS_UNSIGNED_4: howto manager. (line 2318)
|
| +* BFD_RELOC_CRIS_UNSIGNED_5: howto manager. (line 2310)
|
| +* BFD_RELOC_CRIS_UNSIGNED_6: howto manager. (line 2312)
|
| +* BFD_RELOC_CRIS_UNSIGNED_8: howto manager. (line 2314)
|
| +* BFD_RELOC_CRX_ABS16: howto manager. (line 2297)
|
| +* BFD_RELOC_CRX_ABS32: howto manager. (line 2298)
|
| +* BFD_RELOC_CRX_IMM16: howto manager. (line 2302)
|
| +* BFD_RELOC_CRX_IMM32: howto manager. (line 2303)
|
| +* BFD_RELOC_CRX_NUM16: howto manager. (line 2300)
|
| +* BFD_RELOC_CRX_NUM32: howto manager. (line 2301)
|
| +* BFD_RELOC_CRX_NUM8: howto manager. (line 2299)
|
| +* BFD_RELOC_CRX_REGREL12: howto manager. (line 2293)
|
| +* BFD_RELOC_CRX_REGREL22: howto manager. (line 2294)
|
| +* BFD_RELOC_CRX_REGREL28: howto manager. (line 2295)
|
| +* BFD_RELOC_CRX_REGREL32: howto manager. (line 2296)
|
| +* BFD_RELOC_CRX_REL16: howto manager. (line 2290)
|
| +* BFD_RELOC_CRX_REL24: howto manager. (line 2291)
|
| +* BFD_RELOC_CRX_REL32: howto manager. (line 2292)
|
| +* BFD_RELOC_CRX_REL4: howto manager. (line 2287)
|
| +* BFD_RELOC_CRX_REL8: howto manager. (line 2288)
|
| +* BFD_RELOC_CRX_REL8_CMP: howto manager. (line 2289)
|
| +* BFD_RELOC_CRX_SWITCH16: howto manager. (line 2305)
|
| +* BFD_RELOC_CRX_SWITCH32: howto manager. (line 2306)
|
| +* BFD_RELOC_CRX_SWITCH8: howto manager. (line 2304)
|
| +* BFD_RELOC_CTOR: howto manager. (line 783)
|
| +* BFD_RELOC_D10V_10_PCREL_L: howto manager. (line 1178)
|
| +* BFD_RELOC_D10V_10_PCREL_R: howto manager. (line 1174)
|
| +* BFD_RELOC_D10V_18: howto manager. (line 1183)
|
| +* BFD_RELOC_D10V_18_PCREL: howto manager. (line 1186)
|
| +* BFD_RELOC_D30V_15: howto manager. (line 1201)
|
| +* BFD_RELOC_D30V_15_PCREL: howto manager. (line 1205)
|
| +* BFD_RELOC_D30V_15_PCREL_R: howto manager. (line 1209)
|
| +* BFD_RELOC_D30V_21: howto manager. (line 1214)
|
| +* BFD_RELOC_D30V_21_PCREL: howto manager. (line 1218)
|
| +* BFD_RELOC_D30V_21_PCREL_R: howto manager. (line 1222)
|
| +* BFD_RELOC_D30V_32: howto manager. (line 1227)
|
| +* BFD_RELOC_D30V_32_PCREL: howto manager. (line 1230)
|
| +* BFD_RELOC_D30V_6: howto manager. (line 1189)
|
| +* BFD_RELOC_D30V_9_PCREL: howto manager. (line 1192)
|
| +* BFD_RELOC_D30V_9_PCREL_R: howto manager. (line 1196)
|
| +* BFD_RELOC_DLX_HI16_S: howto manager. (line 1233)
|
| +* BFD_RELOC_DLX_JMP26: howto manager. (line 1239)
|
| +* BFD_RELOC_DLX_LO16: howto manager. (line 1236)
|
| +* BFD_RELOC_EPIPHANY_HIGH: howto manager. (line 3238)
|
| +* BFD_RELOC_EPIPHANY_IMM11: howto manager. (line 3247)
|
| +* BFD_RELOC_EPIPHANY_IMM8: howto manager. (line 3251)
|
| +* BFD_RELOC_EPIPHANY_LOW: howto manager. (line 3241)
|
| +* BFD_RELOC_EPIPHANY_SIMM11: howto manager. (line 3244)
|
| +* BFD_RELOC_EPIPHANY_SIMM24: howto manager. (line 3235)
|
| +* BFD_RELOC_EPIPHANY_SIMM8: howto manager. (line 3232)
|
| +* BFD_RELOC_FR30_10_IN_8: howto manager. (line 1508)
|
| +* BFD_RELOC_FR30_12_PCREL: howto manager. (line 1516)
|
| +* BFD_RELOC_FR30_20: howto manager. (line 1492)
|
| +* BFD_RELOC_FR30_48: howto manager. (line 1489)
|
| +* BFD_RELOC_FR30_6_IN_4: howto manager. (line 1496)
|
| +* BFD_RELOC_FR30_8_IN_8: howto manager. (line 1500)
|
| +* BFD_RELOC_FR30_9_IN_8: howto manager. (line 1504)
|
| +* BFD_RELOC_FR30_9_PCREL: howto manager. (line 1512)
|
| +* BFD_RELOC_FRV_FUNCDESC: howto manager. (line 491)
|
| +* BFD_RELOC_FRV_FUNCDESC_GOT12: howto manager. (line 492)
|
| +* BFD_RELOC_FRV_FUNCDESC_GOTHI: howto manager. (line 493)
|
| +* BFD_RELOC_FRV_FUNCDESC_GOTLO: howto manager. (line 494)
|
| +* BFD_RELOC_FRV_FUNCDESC_GOTOFF12: howto manager. (line 496)
|
| +* BFD_RELOC_FRV_FUNCDESC_GOTOFFHI: howto manager. (line 497)
|
| +* BFD_RELOC_FRV_FUNCDESC_GOTOFFLO: howto manager. (line 498)
|
| +* BFD_RELOC_FRV_FUNCDESC_VALUE: howto manager. (line 495)
|
| +* BFD_RELOC_FRV_GETTLSOFF: howto manager. (line 502)
|
| +* BFD_RELOC_FRV_GETTLSOFF_RELAX: howto manager. (line 515)
|
| +* BFD_RELOC_FRV_GOT12: howto manager. (line 488)
|
| +* BFD_RELOC_FRV_GOTHI: howto manager. (line 489)
|
| +* BFD_RELOC_FRV_GOTLO: howto manager. (line 490)
|
| +* BFD_RELOC_FRV_GOTOFF12: howto manager. (line 499)
|
| +* BFD_RELOC_FRV_GOTOFFHI: howto manager. (line 500)
|
| +* BFD_RELOC_FRV_GOTOFFLO: howto manager. (line 501)
|
| +* BFD_RELOC_FRV_GOTTLSDESC12: howto manager. (line 504)
|
| +* BFD_RELOC_FRV_GOTTLSDESCHI: howto manager. (line 505)
|
| +* BFD_RELOC_FRV_GOTTLSDESCLO: howto manager. (line 506)
|
| +* BFD_RELOC_FRV_GOTTLSOFF12: howto manager. (line 510)
|
| +* BFD_RELOC_FRV_GOTTLSOFFHI: howto manager. (line 511)
|
| +* BFD_RELOC_FRV_GOTTLSOFFLO: howto manager. (line 512)
|
| +* BFD_RELOC_FRV_GPREL12: howto manager. (line 483)
|
| +* BFD_RELOC_FRV_GPREL32: howto manager. (line 485)
|
| +* BFD_RELOC_FRV_GPRELHI: howto manager. (line 486)
|
| +* BFD_RELOC_FRV_GPRELLO: howto manager. (line 487)
|
| +* BFD_RELOC_FRV_GPRELU12: howto manager. (line 484)
|
| +* BFD_RELOC_FRV_HI16: howto manager. (line 482)
|
| +* BFD_RELOC_FRV_LABEL16: howto manager. (line 479)
|
| +* BFD_RELOC_FRV_LABEL24: howto manager. (line 480)
|
| +* BFD_RELOC_FRV_LO16: howto manager. (line 481)
|
| +* BFD_RELOC_FRV_TLSDESC_RELAX: howto manager. (line 514)
|
| +* BFD_RELOC_FRV_TLSDESC_VALUE: howto manager. (line 503)
|
| +* BFD_RELOC_FRV_TLSMOFF: howto manager. (line 517)
|
| +* BFD_RELOC_FRV_TLSMOFF12: howto manager. (line 507)
|
| +* BFD_RELOC_FRV_TLSMOFFHI: howto manager. (line 508)
|
| +* BFD_RELOC_FRV_TLSMOFFLO: howto manager. (line 509)
|
| +* BFD_RELOC_FRV_TLSOFF: howto manager. (line 513)
|
| +* BFD_RELOC_FRV_TLSOFF_RELAX: howto manager. (line 516)
|
| +* BFD_RELOC_GPREL16: howto manager. (line 125)
|
| +* BFD_RELOC_GPREL32: howto manager. (line 126)
|
| +* BFD_RELOC_H8_DIR16A8: howto manager. (line 2402)
|
| +* BFD_RELOC_H8_DIR16R8: howto manager. (line 2403)
|
| +* BFD_RELOC_H8_DIR24A8: howto manager. (line 2404)
|
| +* BFD_RELOC_H8_DIR24R8: howto manager. (line 2405)
|
| +* BFD_RELOC_H8_DIR32A16: howto manager. (line 2406)
|
| +* BFD_RELOC_H8_DISP32A16: howto manager. (line 2407)
|
| +* BFD_RELOC_HI16: howto manager. (line 352)
|
| +* BFD_RELOC_HI16_BASEREL: howto manager. (line 101)
|
| * BFD_RELOC_HI16_GOTOFF: howto manager. (line 57)
|
| -* BFD_RELOC_HI16_PCREL: howto manager. (line 360)
|
| +* BFD_RELOC_HI16_PCREL: howto manager. (line 364)
|
| * BFD_RELOC_HI16_PLTOFF: howto manager. (line 69)
|
| -* BFD_RELOC_HI16_S: howto manager. (line 351)
|
| -* BFD_RELOC_HI16_S_BASEREL: howto manager. (line 98)
|
| +* BFD_RELOC_HI16_S: howto manager. (line 355)
|
| +* BFD_RELOC_HI16_S_BASEREL: howto manager. (line 102)
|
| * BFD_RELOC_HI16_S_GOTOFF: howto manager. (line 58)
|
| -* BFD_RELOC_HI16_S_PCREL: howto manager. (line 363)
|
| +* BFD_RELOC_HI16_S_PCREL: howto manager. (line 367)
|
| * BFD_RELOC_HI16_S_PLTOFF: howto manager. (line 70)
|
| -* BFD_RELOC_HI22: howto manager. (line 116)
|
| -* BFD_RELOC_I370_D12: howto manager. (line 767)
|
| -* BFD_RELOC_I960_CALLJ: howto manager. (line 128)
|
| -* BFD_RELOC_IA64_COPY: howto manager. (line 2018)
|
| -* BFD_RELOC_IA64_DIR32LSB: howto manager. (line 1963)
|
| -* BFD_RELOC_IA64_DIR32MSB: howto manager. (line 1962)
|
| -* BFD_RELOC_IA64_DIR64LSB: howto manager. (line 1965)
|
| -* BFD_RELOC_IA64_DIR64MSB: howto manager. (line 1964)
|
| -* BFD_RELOC_IA64_DTPMOD64LSB: howto manager. (line 2028)
|
| -* BFD_RELOC_IA64_DTPMOD64MSB: howto manager. (line 2027)
|
| -* BFD_RELOC_IA64_DTPREL14: howto manager. (line 2030)
|
| -* BFD_RELOC_IA64_DTPREL22: howto manager. (line 2031)
|
| -* BFD_RELOC_IA64_DTPREL32LSB: howto manager. (line 2034)
|
| -* BFD_RELOC_IA64_DTPREL32MSB: howto manager. (line 2033)
|
| -* BFD_RELOC_IA64_DTPREL64I: howto manager. (line 2032)
|
| -* BFD_RELOC_IA64_DTPREL64LSB: howto manager. (line 2036)
|
| -* BFD_RELOC_IA64_DTPREL64MSB: howto manager. (line 2035)
|
| -* BFD_RELOC_IA64_FPTR32LSB: howto manager. (line 1980)
|
| -* BFD_RELOC_IA64_FPTR32MSB: howto manager. (line 1979)
|
| -* BFD_RELOC_IA64_FPTR64I: howto manager. (line 1978)
|
| -* BFD_RELOC_IA64_FPTR64LSB: howto manager. (line 1982)
|
| -* BFD_RELOC_IA64_FPTR64MSB: howto manager. (line 1981)
|
| -* BFD_RELOC_IA64_GPREL22: howto manager. (line 1966)
|
| -* BFD_RELOC_IA64_GPREL32LSB: howto manager. (line 1969)
|
| -* BFD_RELOC_IA64_GPREL32MSB: howto manager. (line 1968)
|
| -* BFD_RELOC_IA64_GPREL64I: howto manager. (line 1967)
|
| -* BFD_RELOC_IA64_GPREL64LSB: howto manager. (line 1971)
|
| -* BFD_RELOC_IA64_GPREL64MSB: howto manager. (line 1970)
|
| -* BFD_RELOC_IA64_IMM14: howto manager. (line 1959)
|
| -* BFD_RELOC_IA64_IMM22: howto manager. (line 1960)
|
| -* BFD_RELOC_IA64_IMM64: howto manager. (line 1961)
|
| -* BFD_RELOC_IA64_IPLTLSB: howto manager. (line 2017)
|
| -* BFD_RELOC_IA64_IPLTMSB: howto manager. (line 2016)
|
| -* BFD_RELOC_IA64_LDXMOV: howto manager. (line 2020)
|
| -* BFD_RELOC_IA64_LTOFF22: howto manager. (line 1972)
|
| -* BFD_RELOC_IA64_LTOFF22X: howto manager. (line 2019)
|
| -* BFD_RELOC_IA64_LTOFF64I: howto manager. (line 1973)
|
| -* BFD_RELOC_IA64_LTOFF_DTPMOD22: howto manager. (line 2029)
|
| -* BFD_RELOC_IA64_LTOFF_DTPREL22: howto manager. (line 2037)
|
| -* BFD_RELOC_IA64_LTOFF_FPTR22: howto manager. (line 1994)
|
| -* BFD_RELOC_IA64_LTOFF_FPTR32LSB: howto manager. (line 1997)
|
| -* BFD_RELOC_IA64_LTOFF_FPTR32MSB: howto manager. (line 1996)
|
| -* BFD_RELOC_IA64_LTOFF_FPTR64I: howto manager. (line 1995)
|
| -* BFD_RELOC_IA64_LTOFF_FPTR64LSB: howto manager. (line 1999)
|
| -* BFD_RELOC_IA64_LTOFF_FPTR64MSB: howto manager. (line 1998)
|
| -* BFD_RELOC_IA64_LTOFF_TPREL22: howto manager. (line 2026)
|
| -* BFD_RELOC_IA64_LTV32LSB: howto manager. (line 2013)
|
| -* BFD_RELOC_IA64_LTV32MSB: howto manager. (line 2012)
|
| -* BFD_RELOC_IA64_LTV64LSB: howto manager. (line 2015)
|
| -* BFD_RELOC_IA64_LTV64MSB: howto manager. (line 2014)
|
| -* BFD_RELOC_IA64_PCREL21B: howto manager. (line 1983)
|
| -* BFD_RELOC_IA64_PCREL21BI: howto manager. (line 1984)
|
| -* BFD_RELOC_IA64_PCREL21F: howto manager. (line 1986)
|
| -* BFD_RELOC_IA64_PCREL21M: howto manager. (line 1985)
|
| -* BFD_RELOC_IA64_PCREL22: howto manager. (line 1987)
|
| -* BFD_RELOC_IA64_PCREL32LSB: howto manager. (line 1991)
|
| -* BFD_RELOC_IA64_PCREL32MSB: howto manager. (line 1990)
|
| -* BFD_RELOC_IA64_PCREL60B: howto manager. (line 1988)
|
| -* BFD_RELOC_IA64_PCREL64I: howto manager. (line 1989)
|
| -* BFD_RELOC_IA64_PCREL64LSB: howto manager. (line 1993)
|
| -* BFD_RELOC_IA64_PCREL64MSB: howto manager. (line 1992)
|
| -* BFD_RELOC_IA64_PLTOFF22: howto manager. (line 1974)
|
| -* BFD_RELOC_IA64_PLTOFF64I: howto manager. (line 1975)
|
| -* BFD_RELOC_IA64_PLTOFF64LSB: howto manager. (line 1977)
|
| -* BFD_RELOC_IA64_PLTOFF64MSB: howto manager. (line 1976)
|
| -* BFD_RELOC_IA64_REL32LSB: howto manager. (line 2009)
|
| -* BFD_RELOC_IA64_REL32MSB: howto manager. (line 2008)
|
| -* BFD_RELOC_IA64_REL64LSB: howto manager. (line 2011)
|
| -* BFD_RELOC_IA64_REL64MSB: howto manager. (line 2010)
|
| -* BFD_RELOC_IA64_SECREL32LSB: howto manager. (line 2005)
|
| -* BFD_RELOC_IA64_SECREL32MSB: howto manager. (line 2004)
|
| -* BFD_RELOC_IA64_SECREL64LSB: howto manager. (line 2007)
|
| -* BFD_RELOC_IA64_SECREL64MSB: howto manager. (line 2006)
|
| -* BFD_RELOC_IA64_SEGREL32LSB: howto manager. (line 2001)
|
| -* BFD_RELOC_IA64_SEGREL32MSB: howto manager. (line 2000)
|
| -* BFD_RELOC_IA64_SEGREL64LSB: howto manager. (line 2003)
|
| -* BFD_RELOC_IA64_SEGREL64MSB: howto manager. (line 2002)
|
| -* BFD_RELOC_IA64_TPREL14: howto manager. (line 2021)
|
| -* BFD_RELOC_IA64_TPREL22: howto manager. (line 2022)
|
| -* BFD_RELOC_IA64_TPREL64I: howto manager. (line 2023)
|
| -* BFD_RELOC_IA64_TPREL64LSB: howto manager. (line 2025)
|
| -* BFD_RELOC_IA64_TPREL64MSB: howto manager. (line 2024)
|
| -* BFD_RELOC_IP2K_ADDR16CJP: howto manager. (line 1911)
|
| -* BFD_RELOC_IP2K_BANK: howto manager. (line 1908)
|
| -* BFD_RELOC_IP2K_EX8DATA: howto manager. (line 1919)
|
| -* BFD_RELOC_IP2K_FR9: howto manager. (line 1905)
|
| -* BFD_RELOC_IP2K_FR_OFFSET: howto manager. (line 1932)
|
| -* BFD_RELOC_IP2K_HI8DATA: howto manager. (line 1918)
|
| -* BFD_RELOC_IP2K_HI8INSN: howto manager. (line 1923)
|
| -* BFD_RELOC_IP2K_LO8DATA: howto manager. (line 1917)
|
| -* BFD_RELOC_IP2K_LO8INSN: howto manager. (line 1922)
|
| -* BFD_RELOC_IP2K_PAGE3: howto manager. (line 1914)
|
| -* BFD_RELOC_IP2K_PC_SKIP: howto manager. (line 1926)
|
| -* BFD_RELOC_IP2K_TEXT: howto manager. (line 1929)
|
| -* BFD_RELOC_IQ2000_OFFSET_16: howto manager. (line 2390)
|
| -* BFD_RELOC_IQ2000_OFFSET_21: howto manager. (line 2391)
|
| -* BFD_RELOC_IQ2000_UHI16: howto manager. (line 2392)
|
| -* BFD_RELOC_LM32_16_GOT: howto manager. (line 2497)
|
| -* BFD_RELOC_LM32_BRANCH: howto manager. (line 2496)
|
| -* BFD_RELOC_LM32_CALL: howto manager. (line 2495)
|
| -* BFD_RELOC_LM32_COPY: howto manager. (line 2500)
|
| -* BFD_RELOC_LM32_GLOB_DAT: howto manager. (line 2501)
|
| -* BFD_RELOC_LM32_GOTOFF_HI16: howto manager. (line 2498)
|
| -* BFD_RELOC_LM32_GOTOFF_LO16: howto manager. (line 2499)
|
| -* BFD_RELOC_LM32_JMP_SLOT: howto manager. (line 2502)
|
| -* BFD_RELOC_LM32_RELATIVE: howto manager. (line 2503)
|
| -* BFD_RELOC_LO10: howto manager. (line 117)
|
| -* BFD_RELOC_LO16: howto manager. (line 357)
|
| -* BFD_RELOC_LO16_BASEREL: howto manager. (line 96)
|
| +* BFD_RELOC_HI22: howto manager. (line 120)
|
| +* BFD_RELOC_I370_D12: howto manager. (line 780)
|
| +* BFD_RELOC_I960_CALLJ: howto manager. (line 132)
|
| +* BFD_RELOC_IA64_COPY: howto manager. (line 2084)
|
| +* BFD_RELOC_IA64_DIR32LSB: howto manager. (line 2029)
|
| +* BFD_RELOC_IA64_DIR32MSB: howto manager. (line 2028)
|
| +* BFD_RELOC_IA64_DIR64LSB: howto manager. (line 2031)
|
| +* BFD_RELOC_IA64_DIR64MSB: howto manager. (line 2030)
|
| +* BFD_RELOC_IA64_DTPMOD64LSB: howto manager. (line 2094)
|
| +* BFD_RELOC_IA64_DTPMOD64MSB: howto manager. (line 2093)
|
| +* BFD_RELOC_IA64_DTPREL14: howto manager. (line 2096)
|
| +* BFD_RELOC_IA64_DTPREL22: howto manager. (line 2097)
|
| +* BFD_RELOC_IA64_DTPREL32LSB: howto manager. (line 2100)
|
| +* BFD_RELOC_IA64_DTPREL32MSB: howto manager. (line 2099)
|
| +* BFD_RELOC_IA64_DTPREL64I: howto manager. (line 2098)
|
| +* BFD_RELOC_IA64_DTPREL64LSB: howto manager. (line 2102)
|
| +* BFD_RELOC_IA64_DTPREL64MSB: howto manager. (line 2101)
|
| +* BFD_RELOC_IA64_FPTR32LSB: howto manager. (line 2046)
|
| +* BFD_RELOC_IA64_FPTR32MSB: howto manager. (line 2045)
|
| +* BFD_RELOC_IA64_FPTR64I: howto manager. (line 2044)
|
| +* BFD_RELOC_IA64_FPTR64LSB: howto manager. (line 2048)
|
| +* BFD_RELOC_IA64_FPTR64MSB: howto manager. (line 2047)
|
| +* BFD_RELOC_IA64_GPREL22: howto manager. (line 2032)
|
| +* BFD_RELOC_IA64_GPREL32LSB: howto manager. (line 2035)
|
| +* BFD_RELOC_IA64_GPREL32MSB: howto manager. (line 2034)
|
| +* BFD_RELOC_IA64_GPREL64I: howto manager. (line 2033)
|
| +* BFD_RELOC_IA64_GPREL64LSB: howto manager. (line 2037)
|
| +* BFD_RELOC_IA64_GPREL64MSB: howto manager. (line 2036)
|
| +* BFD_RELOC_IA64_IMM14: howto manager. (line 2025)
|
| +* BFD_RELOC_IA64_IMM22: howto manager. (line 2026)
|
| +* BFD_RELOC_IA64_IMM64: howto manager. (line 2027)
|
| +* BFD_RELOC_IA64_IPLTLSB: howto manager. (line 2083)
|
| +* BFD_RELOC_IA64_IPLTMSB: howto manager. (line 2082)
|
| +* BFD_RELOC_IA64_LDXMOV: howto manager. (line 2086)
|
| +* BFD_RELOC_IA64_LTOFF22: howto manager. (line 2038)
|
| +* BFD_RELOC_IA64_LTOFF22X: howto manager. (line 2085)
|
| +* BFD_RELOC_IA64_LTOFF64I: howto manager. (line 2039)
|
| +* BFD_RELOC_IA64_LTOFF_DTPMOD22: howto manager. (line 2095)
|
| +* BFD_RELOC_IA64_LTOFF_DTPREL22: howto manager. (line 2103)
|
| +* BFD_RELOC_IA64_LTOFF_FPTR22: howto manager. (line 2060)
|
| +* BFD_RELOC_IA64_LTOFF_FPTR32LSB: howto manager. (line 2063)
|
| +* BFD_RELOC_IA64_LTOFF_FPTR32MSB: howto manager. (line 2062)
|
| +* BFD_RELOC_IA64_LTOFF_FPTR64I: howto manager. (line 2061)
|
| +* BFD_RELOC_IA64_LTOFF_FPTR64LSB: howto manager. (line 2065)
|
| +* BFD_RELOC_IA64_LTOFF_FPTR64MSB: howto manager. (line 2064)
|
| +* BFD_RELOC_IA64_LTOFF_TPREL22: howto manager. (line 2092)
|
| +* BFD_RELOC_IA64_LTV32LSB: howto manager. (line 2079)
|
| +* BFD_RELOC_IA64_LTV32MSB: howto manager. (line 2078)
|
| +* BFD_RELOC_IA64_LTV64LSB: howto manager. (line 2081)
|
| +* BFD_RELOC_IA64_LTV64MSB: howto manager. (line 2080)
|
| +* BFD_RELOC_IA64_PCREL21B: howto manager. (line 2049)
|
| +* BFD_RELOC_IA64_PCREL21BI: howto manager. (line 2050)
|
| +* BFD_RELOC_IA64_PCREL21F: howto manager. (line 2052)
|
| +* BFD_RELOC_IA64_PCREL21M: howto manager. (line 2051)
|
| +* BFD_RELOC_IA64_PCREL22: howto manager. (line 2053)
|
| +* BFD_RELOC_IA64_PCREL32LSB: howto manager. (line 2057)
|
| +* BFD_RELOC_IA64_PCREL32MSB: howto manager. (line 2056)
|
| +* BFD_RELOC_IA64_PCREL60B: howto manager. (line 2054)
|
| +* BFD_RELOC_IA64_PCREL64I: howto manager. (line 2055)
|
| +* BFD_RELOC_IA64_PCREL64LSB: howto manager. (line 2059)
|
| +* BFD_RELOC_IA64_PCREL64MSB: howto manager. (line 2058)
|
| +* BFD_RELOC_IA64_PLTOFF22: howto manager. (line 2040)
|
| +* BFD_RELOC_IA64_PLTOFF64I: howto manager. (line 2041)
|
| +* BFD_RELOC_IA64_PLTOFF64LSB: howto manager. (line 2043)
|
| +* BFD_RELOC_IA64_PLTOFF64MSB: howto manager. (line 2042)
|
| +* BFD_RELOC_IA64_REL32LSB: howto manager. (line 2075)
|
| +* BFD_RELOC_IA64_REL32MSB: howto manager. (line 2074)
|
| +* BFD_RELOC_IA64_REL64LSB: howto manager. (line 2077)
|
| +* BFD_RELOC_IA64_REL64MSB: howto manager. (line 2076)
|
| +* BFD_RELOC_IA64_SECREL32LSB: howto manager. (line 2071)
|
| +* BFD_RELOC_IA64_SECREL32MSB: howto manager. (line 2070)
|
| +* BFD_RELOC_IA64_SECREL64LSB: howto manager. (line 2073)
|
| +* BFD_RELOC_IA64_SECREL64MSB: howto manager. (line 2072)
|
| +* BFD_RELOC_IA64_SEGREL32LSB: howto manager. (line 2067)
|
| +* BFD_RELOC_IA64_SEGREL32MSB: howto manager. (line 2066)
|
| +* BFD_RELOC_IA64_SEGREL64LSB: howto manager. (line 2069)
|
| +* BFD_RELOC_IA64_SEGREL64MSB: howto manager. (line 2068)
|
| +* BFD_RELOC_IA64_TPREL14: howto manager. (line 2087)
|
| +* BFD_RELOC_IA64_TPREL22: howto manager. (line 2088)
|
| +* BFD_RELOC_IA64_TPREL64I: howto manager. (line 2089)
|
| +* BFD_RELOC_IA64_TPREL64LSB: howto manager. (line 2091)
|
| +* BFD_RELOC_IA64_TPREL64MSB: howto manager. (line 2090)
|
| +* BFD_RELOC_IP2K_ADDR16CJP: howto manager. (line 1977)
|
| +* BFD_RELOC_IP2K_BANK: howto manager. (line 1974)
|
| +* BFD_RELOC_IP2K_EX8DATA: howto manager. (line 1985)
|
| +* BFD_RELOC_IP2K_FR9: howto manager. (line 1971)
|
| +* BFD_RELOC_IP2K_FR_OFFSET: howto manager. (line 1998)
|
| +* BFD_RELOC_IP2K_HI8DATA: howto manager. (line 1984)
|
| +* BFD_RELOC_IP2K_HI8INSN: howto manager. (line 1989)
|
| +* BFD_RELOC_IP2K_LO8DATA: howto manager. (line 1983)
|
| +* BFD_RELOC_IP2K_LO8INSN: howto manager. (line 1988)
|
| +* BFD_RELOC_IP2K_PAGE3: howto manager. (line 1980)
|
| +* BFD_RELOC_IP2K_PC_SKIP: howto manager. (line 1992)
|
| +* BFD_RELOC_IP2K_TEXT: howto manager. (line 1995)
|
| +* BFD_RELOC_IQ2000_OFFSET_16: howto manager. (line 2508)
|
| +* BFD_RELOC_IQ2000_OFFSET_21: howto manager. (line 2509)
|
| +* BFD_RELOC_IQ2000_UHI16: howto manager. (line 2510)
|
| +* BFD_RELOC_LM32_16_GOT: howto manager. (line 2615)
|
| +* BFD_RELOC_LM32_BRANCH: howto manager. (line 2614)
|
| +* BFD_RELOC_LM32_CALL: howto manager. (line 2613)
|
| +* BFD_RELOC_LM32_COPY: howto manager. (line 2618)
|
| +* BFD_RELOC_LM32_GLOB_DAT: howto manager. (line 2619)
|
| +* BFD_RELOC_LM32_GOTOFF_HI16: howto manager. (line 2616)
|
| +* BFD_RELOC_LM32_GOTOFF_LO16: howto manager. (line 2617)
|
| +* BFD_RELOC_LM32_JMP_SLOT: howto manager. (line 2620)
|
| +* BFD_RELOC_LM32_RELATIVE: howto manager. (line 2621)
|
| +* BFD_RELOC_LO10: howto manager. (line 121)
|
| +* BFD_RELOC_LO16: howto manager. (line 361)
|
| +* BFD_RELOC_LO16_BASEREL: howto manager. (line 100)
|
| * BFD_RELOC_LO16_GOTOFF: howto manager. (line 56)
|
| -* BFD_RELOC_LO16_PCREL: howto manager. (line 366)
|
| +* BFD_RELOC_LO16_PCREL: howto manager. (line 370)
|
| * BFD_RELOC_LO16_PLTOFF: howto manager. (line 68)
|
| -* BFD_RELOC_M32C_HI8: howto manager. (line 1229)
|
| -* BFD_RELOC_M32C_RL_1ADDR: howto manager. (line 1231)
|
| -* BFD_RELOC_M32C_RL_2ADDR: howto manager. (line 1232)
|
| -* BFD_RELOC_M32C_RL_JUMP: howto manager. (line 1230)
|
| -* BFD_RELOC_M32R_10_PCREL: howto manager. (line 1239)
|
| -* BFD_RELOC_M32R_18_PCREL: howto manager. (line 1243)
|
| -* BFD_RELOC_M32R_24: howto manager. (line 1235)
|
| -* BFD_RELOC_M32R_26_PCREL: howto manager. (line 1246)
|
| -* BFD_RELOC_M32R_26_PLTREL: howto manager. (line 1265)
|
| -* BFD_RELOC_M32R_COPY: howto manager. (line 1266)
|
| -* BFD_RELOC_M32R_GLOB_DAT: howto manager. (line 1267)
|
| -* BFD_RELOC_M32R_GOT16_HI_SLO: howto manager. (line 1276)
|
| -* BFD_RELOC_M32R_GOT16_HI_ULO: howto manager. (line 1275)
|
| -* BFD_RELOC_M32R_GOT16_LO: howto manager. (line 1277)
|
| -* BFD_RELOC_M32R_GOT24: howto manager. (line 1264)
|
| -* BFD_RELOC_M32R_GOTOFF: howto manager. (line 1270)
|
| -* BFD_RELOC_M32R_GOTOFF_HI_SLO: howto manager. (line 1272)
|
| -* BFD_RELOC_M32R_GOTOFF_HI_ULO: howto manager. (line 1271)
|
| -* BFD_RELOC_M32R_GOTOFF_LO: howto manager. (line 1273)
|
| -* BFD_RELOC_M32R_GOTPC24: howto manager. (line 1274)
|
| -* BFD_RELOC_M32R_GOTPC_HI_SLO: howto manager. (line 1279)
|
| -* BFD_RELOC_M32R_GOTPC_HI_ULO: howto manager. (line 1278)
|
| -* BFD_RELOC_M32R_GOTPC_LO: howto manager. (line 1280)
|
| -* BFD_RELOC_M32R_HI16_SLO: howto manager. (line 1253)
|
| -* BFD_RELOC_M32R_HI16_ULO: howto manager. (line 1249)
|
| -* BFD_RELOC_M32R_JMP_SLOT: howto manager. (line 1268)
|
| -* BFD_RELOC_M32R_LO16: howto manager. (line 1257)
|
| -* BFD_RELOC_M32R_RELATIVE: howto manager. (line 1269)
|
| -* BFD_RELOC_M32R_SDA16: howto manager. (line 1260)
|
| -* BFD_RELOC_M68HC11_24: howto manager. (line 2073)
|
| -* BFD_RELOC_M68HC11_3B: howto manager. (line 2048)
|
| -* BFD_RELOC_M68HC11_HI8: howto manager. (line 2040)
|
| -* BFD_RELOC_M68HC11_LO16: howto manager. (line 2062)
|
| -* BFD_RELOC_M68HC11_LO8: howto manager. (line 2044)
|
| -* BFD_RELOC_M68HC11_PAGE: howto manager. (line 2068)
|
| -* BFD_RELOC_M68HC11_RL_GROUP: howto manager. (line 2057)
|
| -* BFD_RELOC_M68HC11_RL_JUMP: howto manager. (line 2051)
|
| -* BFD_RELOC_M68HC12_10_PCREL: howto manager. (line 2133)
|
| -* BFD_RELOC_M68HC12_16B: howto manager. (line 2127)
|
| -* BFD_RELOC_M68HC12_5B: howto manager. (line 2079)
|
| -* BFD_RELOC_M68HC12_9_PCREL: howto manager. (line 2130)
|
| -* BFD_RELOC_M68HC12_9B: howto manager. (line 2124)
|
| -* BFD_RELOC_M68HC12_HI8XG: howto manager. (line 2140)
|
| -* BFD_RELOC_M68HC12_LO8XG: howto manager. (line 2136)
|
| -* BFD_RELOC_MACH_O_LOCAL_SECTDIFF: howto manager. (line 2510)
|
| -* BFD_RELOC_MACH_O_PAIR: howto manager. (line 2513)
|
| -* BFD_RELOC_MACH_O_SECTDIFF: howto manager. (line 2506)
|
| -* BFD_RELOC_MACH_O_X86_64_BRANCH32: howto manager. (line 2516)
|
| -* BFD_RELOC_MACH_O_X86_64_BRANCH8: howto manager. (line 2517)
|
| -* BFD_RELOC_MACH_O_X86_64_GOT: howto manager. (line 2521)
|
| -* BFD_RELOC_MACH_O_X86_64_GOT_LOAD: howto manager. (line 2524)
|
| -* BFD_RELOC_MACH_O_X86_64_PCREL32_1: howto manager. (line 2534)
|
| -* BFD_RELOC_MACH_O_X86_64_PCREL32_2: howto manager. (line 2537)
|
| -* BFD_RELOC_MACH_O_X86_64_PCREL32_4: howto manager. (line 2540)
|
| -* BFD_RELOC_MACH_O_X86_64_SUBTRACTOR32: howto manager. (line 2528)
|
| -* BFD_RELOC_MACH_O_X86_64_SUBTRACTOR64: howto manager. (line 2531)
|
| -* BFD_RELOC_MCORE_PCREL_32: howto manager. (line 1510)
|
| -* BFD_RELOC_MCORE_PCREL_IMM11BY2: howto manager. (line 1508)
|
| -* BFD_RELOC_MCORE_PCREL_IMM4BY2: howto manager. (line 1509)
|
| -* BFD_RELOC_MCORE_PCREL_IMM8BY4: howto manager. (line 1507)
|
| -* BFD_RELOC_MCORE_PCREL_JSR_IMM11BY2: howto manager. (line 1511)
|
| -* BFD_RELOC_MCORE_RVA: howto manager. (line 1512)
|
| -* BFD_RELOC_MEP_16: howto manager. (line 1516)
|
| -* BFD_RELOC_MEP_32: howto manager. (line 1517)
|
| -* BFD_RELOC_MEP_8: howto manager. (line 1515)
|
| -* BFD_RELOC_MEP_ADDR24A4: howto manager. (line 1532)
|
| -* BFD_RELOC_MEP_GNU_VTENTRY: howto manager. (line 1534)
|
| -* BFD_RELOC_MEP_GNU_VTINHERIT: howto manager. (line 1533)
|
| -* BFD_RELOC_MEP_GPREL: howto manager. (line 1526)
|
| -* BFD_RELOC_MEP_HI16S: howto manager. (line 1525)
|
| -* BFD_RELOC_MEP_HI16U: howto manager. (line 1524)
|
| -* BFD_RELOC_MEP_LOW16: howto manager. (line 1523)
|
| -* BFD_RELOC_MEP_PCABS24A2: howto manager. (line 1522)
|
| -* BFD_RELOC_MEP_PCREL12A2: howto manager. (line 1519)
|
| -* BFD_RELOC_MEP_PCREL17A2: howto manager. (line 1520)
|
| -* BFD_RELOC_MEP_PCREL24A2: howto manager. (line 1521)
|
| -* BFD_RELOC_MEP_PCREL8A2: howto manager. (line 1518)
|
| -* BFD_RELOC_MEP_TPREL: howto manager. (line 1527)
|
| -* BFD_RELOC_MEP_TPREL7: howto manager. (line 1528)
|
| -* BFD_RELOC_MEP_TPREL7A2: howto manager. (line 1529)
|
| -* BFD_RELOC_MEP_TPREL7A4: howto manager. (line 1530)
|
| -* BFD_RELOC_MEP_UIMM24: howto manager. (line 1531)
|
| -* BFD_RELOC_MICROBLAZE_32_GOTOFF: howto manager. (line 2587)
|
| -* BFD_RELOC_MICROBLAZE_32_LO: howto manager. (line 2543)
|
| -* BFD_RELOC_MICROBLAZE_32_LO_PCREL: howto manager. (line 2547)
|
| -* BFD_RELOC_MICROBLAZE_32_ROSDA: howto manager. (line 2551)
|
| -* BFD_RELOC_MICROBLAZE_32_RWSDA: howto manager. (line 2555)
|
| -* BFD_RELOC_MICROBLAZE_32_SYM_OP_SYM: howto manager. (line 2559)
|
| -* BFD_RELOC_MICROBLAZE_64_GOT: howto manager. (line 2573)
|
| -* BFD_RELOC_MICROBLAZE_64_GOTOFF: howto manager. (line 2582)
|
| -* BFD_RELOC_MICROBLAZE_64_GOTPC: howto manager. (line 2568)
|
| -* BFD_RELOC_MICROBLAZE_64_NONE: howto manager. (line 2563)
|
| -* BFD_RELOC_MICROBLAZE_64_PLT: howto manager. (line 2577)
|
| -* BFD_RELOC_MICROBLAZE_COPY: howto manager. (line 2591)
|
| -* BFD_RELOC_MICROMIPS_10_PCREL_S1: howto manager. (line 400)
|
| -* BFD_RELOC_MICROMIPS_16_PCREL_S1: howto manager. (line 401)
|
| -* BFD_RELOC_MICROMIPS_7_PCREL_S1: howto manager. (line 399)
|
| -* BFD_RELOC_MICROMIPS_CALL16: howto manager. (line 413)
|
| -* BFD_RELOC_MICROMIPS_CALL_HI16: howto manager. (line 419)
|
| -* BFD_RELOC_MICROMIPS_CALL_LO16: howto manager. (line 421)
|
| -* BFD_RELOC_MICROMIPS_GOT16: howto manager. (line 411)
|
| -* BFD_RELOC_MICROMIPS_GOT_DISP: howto manager. (line 429)
|
| -* BFD_RELOC_MICROMIPS_GOT_HI16: howto manager. (line 415)
|
| -* BFD_RELOC_MICROMIPS_GOT_LO16: howto manager. (line 417)
|
| -* BFD_RELOC_MICROMIPS_GOT_OFST: howto manager. (line 427)
|
| -* BFD_RELOC_MICROMIPS_GOT_PAGE: howto manager. (line 425)
|
| -* BFD_RELOC_MICROMIPS_GPREL16: howto manager. (line 404)
|
| -* BFD_RELOC_MICROMIPS_HI16: howto manager. (line 405)
|
| -* BFD_RELOC_MICROMIPS_HI16_S: howto manager. (line 406)
|
| -* BFD_RELOC_MICROMIPS_HIGHER: howto manager. (line 438)
|
| -* BFD_RELOC_MICROMIPS_HIGHEST: howto manager. (line 436)
|
| -* BFD_RELOC_MICROMIPS_JALR: howto manager. (line 444)
|
| -* BFD_RELOC_MICROMIPS_JMP: howto manager. (line 339)
|
| -* BFD_RELOC_MICROMIPS_LITERAL: howto manager. (line 396)
|
| -* BFD_RELOC_MICROMIPS_LO16: howto manager. (line 407)
|
| -* BFD_RELOC_MICROMIPS_SCN_DISP: howto manager. (line 440)
|
| -* BFD_RELOC_MICROMIPS_SUB: howto manager. (line 423)
|
| -* BFD_RELOC_MICROMIPS_TLS_DTPREL_HI16: howto manager. (line 454)
|
| -* BFD_RELOC_MICROMIPS_TLS_DTPREL_LO16: howto manager. (line 456)
|
| -* BFD_RELOC_MICROMIPS_TLS_GD: howto manager. (line 450)
|
| -* BFD_RELOC_MICROMIPS_TLS_GOTTPREL: howto manager. (line 458)
|
| -* BFD_RELOC_MICROMIPS_TLS_LDM: howto manager. (line 452)
|
| -* BFD_RELOC_MICROMIPS_TLS_TPREL_HI16: howto manager. (line 462)
|
| -* BFD_RELOC_MICROMIPS_TLS_TPREL_LO16: howto manager. (line 464)
|
| -* BFD_RELOC_MIPS16_CALL16: howto manager. (line 370)
|
| -* BFD_RELOC_MIPS16_GOT16: howto manager. (line 369)
|
| -* BFD_RELOC_MIPS16_GPREL: howto manager. (line 345)
|
| -* BFD_RELOC_MIPS16_HI16: howto manager. (line 374)
|
| -* BFD_RELOC_MIPS16_HI16_S: howto manager. (line 377)
|
| -* BFD_RELOC_MIPS16_JMP: howto manager. (line 342)
|
| -* BFD_RELOC_MIPS16_LO16: howto manager. (line 383)
|
| -* BFD_RELOC_MIPS16_TLS_DTPREL_HI16: howto manager. (line 388)
|
| -* BFD_RELOC_MIPS16_TLS_DTPREL_LO16: howto manager. (line 389)
|
| -* BFD_RELOC_MIPS16_TLS_GD: howto manager. (line 386)
|
| -* BFD_RELOC_MIPS16_TLS_GOTTPREL: howto manager. (line 390)
|
| -* BFD_RELOC_MIPS16_TLS_LDM: howto manager. (line 387)
|
| -* BFD_RELOC_MIPS16_TLS_TPREL_HI16: howto manager. (line 391)
|
| -* BFD_RELOC_MIPS16_TLS_TPREL_LO16: howto manager. (line 392)
|
| -* BFD_RELOC_MIPS_CALL16: howto manager. (line 412)
|
| -* BFD_RELOC_MIPS_CALL_HI16: howto manager. (line 418)
|
| -* BFD_RELOC_MIPS_CALL_LO16: howto manager. (line 420)
|
| -* BFD_RELOC_MIPS_COPY: howto manager. (line 467)
|
| -* BFD_RELOC_MIPS_DELETE: howto manager. (line 434)
|
| -* BFD_RELOC_MIPS_GOT16: howto manager. (line 410)
|
| -* BFD_RELOC_MIPS_GOT_DISP: howto manager. (line 428)
|
| -* BFD_RELOC_MIPS_GOT_HI16: howto manager. (line 414)
|
| -* BFD_RELOC_MIPS_GOT_LO16: howto manager. (line 416)
|
| -* BFD_RELOC_MIPS_GOT_OFST: howto manager. (line 426)
|
| -* BFD_RELOC_MIPS_GOT_PAGE: howto manager. (line 424)
|
| -* BFD_RELOC_MIPS_HIGHER: howto manager. (line 437)
|
| -* BFD_RELOC_MIPS_HIGHEST: howto manager. (line 435)
|
| -* BFD_RELOC_MIPS_INSERT_A: howto manager. (line 432)
|
| -* BFD_RELOC_MIPS_INSERT_B: howto manager. (line 433)
|
| -* BFD_RELOC_MIPS_JALR: howto manager. (line 443)
|
| -* BFD_RELOC_MIPS_JMP: howto manager. (line 338)
|
| -* BFD_RELOC_MIPS_JUMP_SLOT: howto manager. (line 468)
|
| -* BFD_RELOC_MIPS_LITERAL: howto manager. (line 395)
|
| -* BFD_RELOC_MIPS_REL16: howto manager. (line 441)
|
| -* BFD_RELOC_MIPS_RELGOT: howto manager. (line 442)
|
| -* BFD_RELOC_MIPS_SCN_DISP: howto manager. (line 439)
|
| -* BFD_RELOC_MIPS_SHIFT5: howto manager. (line 430)
|
| -* BFD_RELOC_MIPS_SHIFT6: howto manager. (line 431)
|
| -* BFD_RELOC_MIPS_SUB: howto manager. (line 422)
|
| -* BFD_RELOC_MIPS_TLS_DTPMOD32: howto manager. (line 445)
|
| -* BFD_RELOC_MIPS_TLS_DTPMOD64: howto manager. (line 447)
|
| -* BFD_RELOC_MIPS_TLS_DTPREL32: howto manager. (line 446)
|
| -* BFD_RELOC_MIPS_TLS_DTPREL64: howto manager. (line 448)
|
| -* BFD_RELOC_MIPS_TLS_DTPREL_HI16: howto manager. (line 453)
|
| -* BFD_RELOC_MIPS_TLS_DTPREL_LO16: howto manager. (line 455)
|
| -* BFD_RELOC_MIPS_TLS_GD: howto manager. (line 449)
|
| -* BFD_RELOC_MIPS_TLS_GOTTPREL: howto manager. (line 457)
|
| -* BFD_RELOC_MIPS_TLS_LDM: howto manager. (line 451)
|
| -* BFD_RELOC_MIPS_TLS_TPREL32: howto manager. (line 459)
|
| -* BFD_RELOC_MIPS_TLS_TPREL64: howto manager. (line 460)
|
| -* BFD_RELOC_MIPS_TLS_TPREL_HI16: howto manager. (line 461)
|
| -* BFD_RELOC_MIPS_TLS_TPREL_LO16: howto manager. (line 463)
|
| -* BFD_RELOC_MMIX_ADDR19: howto manager. (line 1563)
|
| -* BFD_RELOC_MMIX_ADDR27: howto manager. (line 1567)
|
| -* BFD_RELOC_MMIX_BASE_PLUS_OFFSET: howto manager. (line 1579)
|
| -* BFD_RELOC_MMIX_CBRANCH: howto manager. (line 1543)
|
| -* BFD_RELOC_MMIX_CBRANCH_1: howto manager. (line 1545)
|
| -* BFD_RELOC_MMIX_CBRANCH_2: howto manager. (line 1546)
|
| -* BFD_RELOC_MMIX_CBRANCH_3: howto manager. (line 1547)
|
| -* BFD_RELOC_MMIX_CBRANCH_J: howto manager. (line 1544)
|
| -* BFD_RELOC_MMIX_GETA: howto manager. (line 1537)
|
| -* BFD_RELOC_MMIX_GETA_1: howto manager. (line 1538)
|
| -* BFD_RELOC_MMIX_GETA_2: howto manager. (line 1539)
|
| -* BFD_RELOC_MMIX_GETA_3: howto manager. (line 1540)
|
| -* BFD_RELOC_MMIX_JMP: howto manager. (line 1557)
|
| -* BFD_RELOC_MMIX_JMP_1: howto manager. (line 1558)
|
| -* BFD_RELOC_MMIX_JMP_2: howto manager. (line 1559)
|
| -* BFD_RELOC_MMIX_JMP_3: howto manager. (line 1560)
|
| -* BFD_RELOC_MMIX_LOCAL: howto manager. (line 1583)
|
| -* BFD_RELOC_MMIX_PUSHJ: howto manager. (line 1550)
|
| -* BFD_RELOC_MMIX_PUSHJ_1: howto manager. (line 1551)
|
| -* BFD_RELOC_MMIX_PUSHJ_2: howto manager. (line 1552)
|
| -* BFD_RELOC_MMIX_PUSHJ_3: howto manager. (line 1553)
|
| -* BFD_RELOC_MMIX_PUSHJ_STUBBABLE: howto manager. (line 1554)
|
| -* BFD_RELOC_MMIX_REG: howto manager. (line 1575)
|
| -* BFD_RELOC_MMIX_REG_OR_BYTE: howto manager. (line 1571)
|
| -* BFD_RELOC_MN10300_16_PCREL: howto manager. (line 566)
|
| -* BFD_RELOC_MN10300_32_PCREL: howto manager. (line 562)
|
| -* BFD_RELOC_MN10300_ALIGN: howto manager. (line 547)
|
| -* BFD_RELOC_MN10300_COPY: howto manager. (line 530)
|
| -* BFD_RELOC_MN10300_GLOB_DAT: howto manager. (line 533)
|
| -* BFD_RELOC_MN10300_GOT16: howto manager. (line 526)
|
| -* BFD_RELOC_MN10300_GOT24: howto manager. (line 522)
|
| -* BFD_RELOC_MN10300_GOT32: howto manager. (line 518)
|
| -* BFD_RELOC_MN10300_GOTOFF24: howto manager. (line 515)
|
| -* BFD_RELOC_MN10300_JMP_SLOT: howto manager. (line 536)
|
| -* BFD_RELOC_MN10300_RELATIVE: howto manager. (line 539)
|
| -* BFD_RELOC_MN10300_SYM_DIFF: howto manager. (line 542)
|
| -* BFD_RELOC_MN10300_TLS_DTPMOD: howto manager. (line 557)
|
| -* BFD_RELOC_MN10300_TLS_DTPOFF: howto manager. (line 558)
|
| -* BFD_RELOC_MN10300_TLS_GD: howto manager. (line 551)
|
| -* BFD_RELOC_MN10300_TLS_GOTIE: howto manager. (line 554)
|
| -* BFD_RELOC_MN10300_TLS_IE: howto manager. (line 555)
|
| -* BFD_RELOC_MN10300_TLS_LD: howto manager. (line 552)
|
| -* BFD_RELOC_MN10300_TLS_LDO: howto manager. (line 553)
|
| -* BFD_RELOC_MN10300_TLS_LE: howto manager. (line 556)
|
| -* BFD_RELOC_MN10300_TLS_TPOFF: howto manager. (line 559)
|
| -* BFD_RELOC_MOXIE_10_PCREL: howto manager. (line 471)
|
| -* BFD_RELOC_MSP430_10_PCREL: howto manager. (line 2381)
|
| -* BFD_RELOC_MSP430_16: howto manager. (line 2383)
|
| -* BFD_RELOC_MSP430_16_BYTE: howto manager. (line 2385)
|
| -* BFD_RELOC_MSP430_16_PCREL: howto manager. (line 2382)
|
| -* BFD_RELOC_MSP430_16_PCREL_BYTE: howto manager. (line 2384)
|
| -* BFD_RELOC_MSP430_2X_PCREL: howto manager. (line 2386)
|
| -* BFD_RELOC_MSP430_RL_PCREL: howto manager. (line 2387)
|
| -* BFD_RELOC_MT_GNU_VTENTRY: howto manager. (line 2375)
|
| -* BFD_RELOC_MT_GNU_VTINHERIT: howto manager. (line 2372)
|
| -* BFD_RELOC_MT_HI16: howto manager. (line 2366)
|
| -* BFD_RELOC_MT_LO16: howto manager. (line 2369)
|
| -* BFD_RELOC_MT_PC16: howto manager. (line 2363)
|
| -* BFD_RELOC_MT_PCINSN8: howto manager. (line 2378)
|
| -* BFD_RELOC_NONE: howto manager. (line 131)
|
| -* BFD_RELOC_NS32K_DISP_16: howto manager. (line 632)
|
| -* BFD_RELOC_NS32K_DISP_16_PCREL: howto manager. (line 635)
|
| -* BFD_RELOC_NS32K_DISP_32: howto manager. (line 633)
|
| -* BFD_RELOC_NS32K_DISP_32_PCREL: howto manager. (line 636)
|
| -* BFD_RELOC_NS32K_DISP_8: howto manager. (line 631)
|
| -* BFD_RELOC_NS32K_DISP_8_PCREL: howto manager. (line 634)
|
| -* BFD_RELOC_NS32K_IMM_16: howto manager. (line 626)
|
| -* BFD_RELOC_NS32K_IMM_16_PCREL: howto manager. (line 629)
|
| -* BFD_RELOC_NS32K_IMM_32: howto manager. (line 627)
|
| -* BFD_RELOC_NS32K_IMM_32_PCREL: howto manager. (line 630)
|
| -* BFD_RELOC_NS32K_IMM_8: howto manager. (line 625)
|
| -* BFD_RELOC_NS32K_IMM_8_PCREL: howto manager. (line 628)
|
| -* BFD_RELOC_OPENRISC_ABS_26: howto manager. (line 2332)
|
| -* BFD_RELOC_OPENRISC_REL_26: howto manager. (line 2333)
|
| -* BFD_RELOC_PDP11_DISP_6_PCREL: howto manager. (line 640)
|
| -* BFD_RELOC_PDP11_DISP_8_PCREL: howto manager. (line 639)
|
| -* BFD_RELOC_PJ_CODE_DIR16: howto manager. (line 645)
|
| -* BFD_RELOC_PJ_CODE_DIR32: howto manager. (line 646)
|
| -* BFD_RELOC_PJ_CODE_HI16: howto manager. (line 643)
|
| -* BFD_RELOC_PJ_CODE_LO16: howto manager. (line 644)
|
| -* BFD_RELOC_PJ_CODE_REL16: howto manager. (line 647)
|
| -* BFD_RELOC_PJ_CODE_REL32: howto manager. (line 648)
|
| -* BFD_RELOC_PPC64_ADDR16_DS: howto manager. (line 710)
|
| -* BFD_RELOC_PPC64_ADDR16_LO_DS: howto manager. (line 711)
|
| -* BFD_RELOC_PPC64_DTPREL16_DS: howto manager. (line 759)
|
| -* BFD_RELOC_PPC64_DTPREL16_HIGHER: howto manager. (line 761)
|
| -* BFD_RELOC_PPC64_DTPREL16_HIGHERA: howto manager. (line 762)
|
| -* BFD_RELOC_PPC64_DTPREL16_HIGHEST: howto manager. (line 763)
|
| -* BFD_RELOC_PPC64_DTPREL16_HIGHESTA: howto manager. (line 764)
|
| -* BFD_RELOC_PPC64_DTPREL16_LO_DS: howto manager. (line 760)
|
| -* BFD_RELOC_PPC64_GOT16_DS: howto manager. (line 712)
|
| -* BFD_RELOC_PPC64_GOT16_LO_DS: howto manager. (line 713)
|
| -* BFD_RELOC_PPC64_HIGHER: howto manager. (line 698)
|
| -* BFD_RELOC_PPC64_HIGHER_S: howto manager. (line 699)
|
| -* BFD_RELOC_PPC64_HIGHEST: howto manager. (line 700)
|
| -* BFD_RELOC_PPC64_HIGHEST_S: howto manager. (line 701)
|
| -* BFD_RELOC_PPC64_PLT16_LO_DS: howto manager. (line 714)
|
| -* BFD_RELOC_PPC64_PLTGOT16: howto manager. (line 706)
|
| -* BFD_RELOC_PPC64_PLTGOT16_DS: howto manager. (line 719)
|
| -* BFD_RELOC_PPC64_PLTGOT16_HA: howto manager. (line 709)
|
| -* BFD_RELOC_PPC64_PLTGOT16_HI: howto manager. (line 708)
|
| -* BFD_RELOC_PPC64_PLTGOT16_LO: howto manager. (line 707)
|
| -* BFD_RELOC_PPC64_PLTGOT16_LO_DS: howto manager. (line 720)
|
| -* BFD_RELOC_PPC64_SECTOFF_DS: howto manager. (line 715)
|
| -* BFD_RELOC_PPC64_SECTOFF_LO_DS: howto manager. (line 716)
|
| -* BFD_RELOC_PPC64_TOC: howto manager. (line 705)
|
| -* BFD_RELOC_PPC64_TOC16_DS: howto manager. (line 717)
|
| -* BFD_RELOC_PPC64_TOC16_HA: howto manager. (line 704)
|
| -* BFD_RELOC_PPC64_TOC16_HI: howto manager. (line 703)
|
| -* BFD_RELOC_PPC64_TOC16_LO: howto manager. (line 702)
|
| -* BFD_RELOC_PPC64_TOC16_LO_DS: howto manager. (line 718)
|
| -* BFD_RELOC_PPC64_TPREL16_DS: howto manager. (line 753)
|
| -* BFD_RELOC_PPC64_TPREL16_HIGHER: howto manager. (line 755)
|
| -* BFD_RELOC_PPC64_TPREL16_HIGHERA: howto manager. (line 756)
|
| -* BFD_RELOC_PPC64_TPREL16_HIGHEST: howto manager. (line 757)
|
| -* BFD_RELOC_PPC64_TPREL16_HIGHESTA: howto manager. (line 758)
|
| -* BFD_RELOC_PPC64_TPREL16_LO_DS: howto manager. (line 754)
|
| -* BFD_RELOC_PPC_B16: howto manager. (line 654)
|
| -* BFD_RELOC_PPC_B16_BRNTAKEN: howto manager. (line 656)
|
| -* BFD_RELOC_PPC_B16_BRTAKEN: howto manager. (line 655)
|
| -* BFD_RELOC_PPC_B26: howto manager. (line 651)
|
| -* BFD_RELOC_PPC_BA16: howto manager. (line 657)
|
| -* BFD_RELOC_PPC_BA16_BRNTAKEN: howto manager. (line 659)
|
| -* BFD_RELOC_PPC_BA16_BRTAKEN: howto manager. (line 658)
|
| -* BFD_RELOC_PPC_BA26: howto manager. (line 652)
|
| -* BFD_RELOC_PPC_COPY: howto manager. (line 660)
|
| -* BFD_RELOC_PPC_DTPMOD: howto manager. (line 726)
|
| -* BFD_RELOC_PPC_DTPREL: howto manager. (line 736)
|
| -* BFD_RELOC_PPC_DTPREL16: howto manager. (line 732)
|
| -* BFD_RELOC_PPC_DTPREL16_HA: howto manager. (line 735)
|
| -* BFD_RELOC_PPC_DTPREL16_HI: howto manager. (line 734)
|
| -* BFD_RELOC_PPC_DTPREL16_LO: howto manager. (line 733)
|
| -* BFD_RELOC_PPC_EMB_BIT_FLD: howto manager. (line 679)
|
| -* BFD_RELOC_PPC_EMB_MRKREF: howto manager. (line 674)
|
| -* BFD_RELOC_PPC_EMB_NADDR16: howto manager. (line 666)
|
| -* BFD_RELOC_PPC_EMB_NADDR16_HA: howto manager. (line 669)
|
| -* BFD_RELOC_PPC_EMB_NADDR16_HI: howto manager. (line 668)
|
| -* BFD_RELOC_PPC_EMB_NADDR16_LO: howto manager. (line 667)
|
| -* BFD_RELOC_PPC_EMB_NADDR32: howto manager. (line 665)
|
| -* BFD_RELOC_PPC_EMB_RELSDA: howto manager. (line 680)
|
| -* BFD_RELOC_PPC_EMB_RELSEC16: howto manager. (line 675)
|
| -* BFD_RELOC_PPC_EMB_RELST_HA: howto manager. (line 678)
|
| -* BFD_RELOC_PPC_EMB_RELST_HI: howto manager. (line 677)
|
| -* BFD_RELOC_PPC_EMB_RELST_LO: howto manager. (line 676)
|
| -* BFD_RELOC_PPC_EMB_SDA21: howto manager. (line 673)
|
| -* BFD_RELOC_PPC_EMB_SDA2I16: howto manager. (line 671)
|
| -* BFD_RELOC_PPC_EMB_SDA2REL: howto manager. (line 672)
|
| -* BFD_RELOC_PPC_EMB_SDAI16: howto manager. (line 670)
|
| -* BFD_RELOC_PPC_GLOB_DAT: howto manager. (line 661)
|
| -* BFD_RELOC_PPC_GOT_DTPREL16: howto manager. (line 749)
|
| -* BFD_RELOC_PPC_GOT_DTPREL16_HA: howto manager. (line 752)
|
| -* BFD_RELOC_PPC_GOT_DTPREL16_HI: howto manager. (line 751)
|
| -* BFD_RELOC_PPC_GOT_DTPREL16_LO: howto manager. (line 750)
|
| -* BFD_RELOC_PPC_GOT_TLSGD16: howto manager. (line 737)
|
| -* BFD_RELOC_PPC_GOT_TLSGD16_HA: howto manager. (line 740)
|
| -* BFD_RELOC_PPC_GOT_TLSGD16_HI: howto manager. (line 739)
|
| -* BFD_RELOC_PPC_GOT_TLSGD16_LO: howto manager. (line 738)
|
| -* BFD_RELOC_PPC_GOT_TLSLD16: howto manager. (line 741)
|
| -* BFD_RELOC_PPC_GOT_TLSLD16_HA: howto manager. (line 744)
|
| -* BFD_RELOC_PPC_GOT_TLSLD16_HI: howto manager. (line 743)
|
| -* BFD_RELOC_PPC_GOT_TLSLD16_LO: howto manager. (line 742)
|
| -* BFD_RELOC_PPC_GOT_TPREL16: howto manager. (line 745)
|
| -* BFD_RELOC_PPC_GOT_TPREL16_HA: howto manager. (line 748)
|
| -* BFD_RELOC_PPC_GOT_TPREL16_HI: howto manager. (line 747)
|
| -* BFD_RELOC_PPC_GOT_TPREL16_LO: howto manager. (line 746)
|
| -* BFD_RELOC_PPC_JMP_SLOT: howto manager. (line 662)
|
| -* BFD_RELOC_PPC_LOCAL24PC: howto manager. (line 664)
|
| -* BFD_RELOC_PPC_RELATIVE: howto manager. (line 663)
|
| -* BFD_RELOC_PPC_TLS: howto manager. (line 723)
|
| -* BFD_RELOC_PPC_TLSGD: howto manager. (line 724)
|
| -* BFD_RELOC_PPC_TLSLD: howto manager. (line 725)
|
| -* BFD_RELOC_PPC_TOC16: howto manager. (line 653)
|
| -* BFD_RELOC_PPC_TPREL: howto manager. (line 731)
|
| -* BFD_RELOC_PPC_TPREL16: howto manager. (line 727)
|
| -* BFD_RELOC_PPC_TPREL16_HA: howto manager. (line 730)
|
| -* BFD_RELOC_PPC_TPREL16_HI: howto manager. (line 729)
|
| -* BFD_RELOC_PPC_TPREL16_LO: howto manager. (line 728)
|
| -* BFD_RELOC_PPC_VLE_HA16A: howto manager. (line 688)
|
| -* BFD_RELOC_PPC_VLE_HA16D: howto manager. (line 689)
|
| -* BFD_RELOC_PPC_VLE_HI16A: howto manager. (line 686)
|
| -* BFD_RELOC_PPC_VLE_HI16D: howto manager. (line 687)
|
| -* BFD_RELOC_PPC_VLE_LO16A: howto manager. (line 684)
|
| -* BFD_RELOC_PPC_VLE_LO16D: howto manager. (line 685)
|
| -* BFD_RELOC_PPC_VLE_REL15: howto manager. (line 682)
|
| -* BFD_RELOC_PPC_VLE_REL24: howto manager. (line 683)
|
| -* BFD_RELOC_PPC_VLE_REL8: howto manager. (line 681)
|
| -* BFD_RELOC_PPC_VLE_SDA21: howto manager. (line 690)
|
| -* BFD_RELOC_PPC_VLE_SDA21_LO: howto manager. (line 691)
|
| -* BFD_RELOC_PPC_VLE_SDAREL_HA16A: howto manager. (line 696)
|
| -* BFD_RELOC_PPC_VLE_SDAREL_HA16D: howto manager. (line 697)
|
| -* BFD_RELOC_PPC_VLE_SDAREL_HI16A: howto manager. (line 694)
|
| -* BFD_RELOC_PPC_VLE_SDAREL_HI16D: howto manager. (line 695)
|
| -* BFD_RELOC_PPC_VLE_SDAREL_LO16A: howto manager. (line 692)
|
| -* BFD_RELOC_PPC_VLE_SDAREL_LO16D: howto manager. (line 693)
|
| -* BFD_RELOC_RELC: howto manager. (line 2349)
|
| -* BFD_RELOC_RL78_16_OP: howto manager. (line 1706)
|
| -* BFD_RELOC_RL78_16U: howto manager. (line 1710)
|
| -* BFD_RELOC_RL78_24_OP: howto manager. (line 1707)
|
| -* BFD_RELOC_RL78_24U: howto manager. (line 1711)
|
| -* BFD_RELOC_RL78_32_OP: howto manager. (line 1708)
|
| -* BFD_RELOC_RL78_8U: howto manager. (line 1709)
|
| -* BFD_RELOC_RL78_ABS16: howto manager. (line 1723)
|
| -* BFD_RELOC_RL78_ABS16_REV: howto manager. (line 1724)
|
| -* BFD_RELOC_RL78_ABS16U: howto manager. (line 1727)
|
| -* BFD_RELOC_RL78_ABS16UL: howto manager. (line 1729)
|
| -* BFD_RELOC_RL78_ABS16UW: howto manager. (line 1728)
|
| -* BFD_RELOC_RL78_ABS32: howto manager. (line 1725)
|
| -* BFD_RELOC_RL78_ABS32_REV: howto manager. (line 1726)
|
| -* BFD_RELOC_RL78_ABS8: howto manager. (line 1722)
|
| -* BFD_RELOC_RL78_DIFF: howto manager. (line 1713)
|
| -* BFD_RELOC_RL78_DIR3U_PCREL: howto manager. (line 1712)
|
| -* BFD_RELOC_RL78_GPRELB: howto manager. (line 1714)
|
| -* BFD_RELOC_RL78_GPRELL: howto manager. (line 1716)
|
| -* BFD_RELOC_RL78_GPRELW: howto manager. (line 1715)
|
| -* BFD_RELOC_RL78_HI16: howto manager. (line 1731)
|
| -* BFD_RELOC_RL78_HI8: howto manager. (line 1732)
|
| -* BFD_RELOC_RL78_LO16: howto manager. (line 1733)
|
| -* BFD_RELOC_RL78_NEG16: howto manager. (line 1703)
|
| -* BFD_RELOC_RL78_NEG24: howto manager. (line 1704)
|
| -* BFD_RELOC_RL78_NEG32: howto manager. (line 1705)
|
| -* BFD_RELOC_RL78_NEG8: howto manager. (line 1702)
|
| -* BFD_RELOC_RL78_OP_AND: howto manager. (line 1720)
|
| -* BFD_RELOC_RL78_OP_NEG: howto manager. (line 1719)
|
| -* BFD_RELOC_RL78_OP_SHRA: howto manager. (line 1721)
|
| -* BFD_RELOC_RL78_OP_SUBTRACT: howto manager. (line 1718)
|
| -* BFD_RELOC_RL78_RELAX: howto manager. (line 1730)
|
| -* BFD_RELOC_RL78_SYM: howto manager. (line 1717)
|
| -* BFD_RELOC_RVA: howto manager. (line 100)
|
| -* BFD_RELOC_RX_16_OP: howto manager. (line 1740)
|
| -* BFD_RELOC_RX_16U: howto manager. (line 1744)
|
| -* BFD_RELOC_RX_24_OP: howto manager. (line 1741)
|
| -* BFD_RELOC_RX_24U: howto manager. (line 1745)
|
| -* BFD_RELOC_RX_32_OP: howto manager. (line 1742)
|
| -* BFD_RELOC_RX_8U: howto manager. (line 1743)
|
| -* BFD_RELOC_RX_ABS16: howto manager. (line 1755)
|
| -* BFD_RELOC_RX_ABS16_REV: howto manager. (line 1756)
|
| -* BFD_RELOC_RX_ABS16U: howto manager. (line 1759)
|
| -* BFD_RELOC_RX_ABS16UL: howto manager. (line 1761)
|
| -* BFD_RELOC_RX_ABS16UW: howto manager. (line 1760)
|
| -* BFD_RELOC_RX_ABS32: howto manager. (line 1757)
|
| -* BFD_RELOC_RX_ABS32_REV: howto manager. (line 1758)
|
| -* BFD_RELOC_RX_ABS8: howto manager. (line 1754)
|
| -* BFD_RELOC_RX_DIFF: howto manager. (line 1747)
|
| -* BFD_RELOC_RX_DIR3U_PCREL: howto manager. (line 1746)
|
| -* BFD_RELOC_RX_GPRELB: howto manager. (line 1748)
|
| -* BFD_RELOC_RX_GPRELL: howto manager. (line 1750)
|
| -* BFD_RELOC_RX_GPRELW: howto manager. (line 1749)
|
| -* BFD_RELOC_RX_NEG16: howto manager. (line 1737)
|
| -* BFD_RELOC_RX_NEG24: howto manager. (line 1738)
|
| -* BFD_RELOC_RX_NEG32: howto manager. (line 1739)
|
| -* BFD_RELOC_RX_NEG8: howto manager. (line 1736)
|
| -* BFD_RELOC_RX_OP_NEG: howto manager. (line 1753)
|
| -* BFD_RELOC_RX_OP_SUBTRACT: howto manager. (line 1752)
|
| -* BFD_RELOC_RX_RELAX: howto manager. (line 1762)
|
| -* BFD_RELOC_RX_SYM: howto manager. (line 1751)
|
| -* BFD_RELOC_SCORE16_BRANCH: howto manager. (line 1893)
|
| -* BFD_RELOC_SCORE16_JMP: howto manager. (line 1890)
|
| -* BFD_RELOC_SCORE_BCMP: howto manager. (line 1896)
|
| -* BFD_RELOC_SCORE_BRANCH: howto manager. (line 1881)
|
| -* BFD_RELOC_SCORE_CALL15: howto manager. (line 1901)
|
| -* BFD_RELOC_SCORE_DUMMY2: howto manager. (line 1877)
|
| -* BFD_RELOC_SCORE_DUMMY_HI16: howto manager. (line 1902)
|
| -* BFD_RELOC_SCORE_GOT15: howto manager. (line 1899)
|
| -* BFD_RELOC_SCORE_GOT_LO16: howto manager. (line 1900)
|
| -* BFD_RELOC_SCORE_GPREL15: howto manager. (line 1874)
|
| -* BFD_RELOC_SCORE_IMM30: howto manager. (line 1884)
|
| -* BFD_RELOC_SCORE_IMM32: howto manager. (line 1887)
|
| -* BFD_RELOC_SCORE_JMP: howto manager. (line 1878)
|
| -* BFD_RELOC_SH_ALIGN: howto manager. (line 958)
|
| -* BFD_RELOC_SH_CODE: howto manager. (line 959)
|
| -* BFD_RELOC_SH_COPY: howto manager. (line 964)
|
| -* BFD_RELOC_SH_COPY64: howto manager. (line 989)
|
| -* BFD_RELOC_SH_COUNT: howto manager. (line 957)
|
| -* BFD_RELOC_SH_DATA: howto manager. (line 960)
|
| -* BFD_RELOC_SH_DISP12: howto manager. (line 940)
|
| -* BFD_RELOC_SH_DISP12BY2: howto manager. (line 941)
|
| -* BFD_RELOC_SH_DISP12BY4: howto manager. (line 942)
|
| -* BFD_RELOC_SH_DISP12BY8: howto manager. (line 943)
|
| -* BFD_RELOC_SH_DISP20: howto manager. (line 944)
|
| -* BFD_RELOC_SH_DISP20BY8: howto manager. (line 945)
|
| -* BFD_RELOC_SH_FUNCDESC: howto manager. (line 1032)
|
| -* BFD_RELOC_SH_GLOB_DAT: howto manager. (line 965)
|
| -* BFD_RELOC_SH_GLOB_DAT64: howto manager. (line 990)
|
| -* BFD_RELOC_SH_GOT10BY4: howto manager. (line 993)
|
| -* BFD_RELOC_SH_GOT10BY8: howto manager. (line 994)
|
| -* BFD_RELOC_SH_GOT20: howto manager. (line 1026)
|
| -* BFD_RELOC_SH_GOT_HI16: howto manager. (line 972)
|
| -* BFD_RELOC_SH_GOT_LOW16: howto manager. (line 969)
|
| -* BFD_RELOC_SH_GOT_MEDHI16: howto manager. (line 971)
|
| -* BFD_RELOC_SH_GOT_MEDLOW16: howto manager. (line 970)
|
| -* BFD_RELOC_SH_GOTFUNCDESC: howto manager. (line 1028)
|
| -* BFD_RELOC_SH_GOTFUNCDESC20: howto manager. (line 1029)
|
| -* BFD_RELOC_SH_GOTOFF20: howto manager. (line 1027)
|
| -* BFD_RELOC_SH_GOTOFF_HI16: howto manager. (line 984)
|
| -* BFD_RELOC_SH_GOTOFF_LOW16: howto manager. (line 981)
|
| -* BFD_RELOC_SH_GOTOFF_MEDHI16: howto manager. (line 983)
|
| -* BFD_RELOC_SH_GOTOFF_MEDLOW16: howto manager. (line 982)
|
| -* BFD_RELOC_SH_GOTOFFFUNCDESC: howto manager. (line 1030)
|
| -* BFD_RELOC_SH_GOTOFFFUNCDESC20: howto manager. (line 1031)
|
| -* BFD_RELOC_SH_GOTPC: howto manager. (line 968)
|
| -* BFD_RELOC_SH_GOTPC_HI16: howto manager. (line 988)
|
| -* BFD_RELOC_SH_GOTPC_LOW16: howto manager. (line 985)
|
| -* BFD_RELOC_SH_GOTPC_MEDHI16: howto manager. (line 987)
|
| -* BFD_RELOC_SH_GOTPC_MEDLOW16: howto manager. (line 986)
|
| -* BFD_RELOC_SH_GOTPLT10BY4: howto manager. (line 995)
|
| -* BFD_RELOC_SH_GOTPLT10BY8: howto manager. (line 996)
|
| -* BFD_RELOC_SH_GOTPLT32: howto manager. (line 997)
|
| -* BFD_RELOC_SH_GOTPLT_HI16: howto manager. (line 976)
|
| -* BFD_RELOC_SH_GOTPLT_LOW16: howto manager. (line 973)
|
| -* BFD_RELOC_SH_GOTPLT_MEDHI16: howto manager. (line 975)
|
| -* BFD_RELOC_SH_GOTPLT_MEDLOW16: howto manager. (line 974)
|
| -* BFD_RELOC_SH_IMM3: howto manager. (line 938)
|
| -* BFD_RELOC_SH_IMM3U: howto manager. (line 939)
|
| -* BFD_RELOC_SH_IMM4: howto manager. (line 946)
|
| -* BFD_RELOC_SH_IMM4BY2: howto manager. (line 947)
|
| -* BFD_RELOC_SH_IMM4BY4: howto manager. (line 948)
|
| -* BFD_RELOC_SH_IMM8: howto manager. (line 949)
|
| -* BFD_RELOC_SH_IMM8BY2: howto manager. (line 950)
|
| -* BFD_RELOC_SH_IMM8BY4: howto manager. (line 951)
|
| -* BFD_RELOC_SH_IMM_HI16: howto manager. (line 1015)
|
| -* BFD_RELOC_SH_IMM_HI16_PCREL: howto manager. (line 1016)
|
| -* BFD_RELOC_SH_IMM_LOW16: howto manager. (line 1009)
|
| -* BFD_RELOC_SH_IMM_LOW16_PCREL: howto manager. (line 1010)
|
| -* BFD_RELOC_SH_IMM_MEDHI16: howto manager. (line 1013)
|
| -* BFD_RELOC_SH_IMM_MEDHI16_PCREL: howto manager. (line 1014)
|
| -* BFD_RELOC_SH_IMM_MEDLOW16: howto manager. (line 1011)
|
| -* BFD_RELOC_SH_IMM_MEDLOW16_PCREL: howto manager. (line 1012)
|
| -* BFD_RELOC_SH_IMMS10: howto manager. (line 1003)
|
| -* BFD_RELOC_SH_IMMS10BY2: howto manager. (line 1004)
|
| -* BFD_RELOC_SH_IMMS10BY4: howto manager. (line 1005)
|
| -* BFD_RELOC_SH_IMMS10BY8: howto manager. (line 1006)
|
| -* BFD_RELOC_SH_IMMS16: howto manager. (line 1007)
|
| -* BFD_RELOC_SH_IMMS6: howto manager. (line 1000)
|
| -* BFD_RELOC_SH_IMMS6BY32: howto manager. (line 1001)
|
| -* BFD_RELOC_SH_IMMU16: howto manager. (line 1008)
|
| -* BFD_RELOC_SH_IMMU5: howto manager. (line 999)
|
| -* BFD_RELOC_SH_IMMU6: howto manager. (line 1002)
|
| -* BFD_RELOC_SH_JMP_SLOT: howto manager. (line 966)
|
| -* BFD_RELOC_SH_JMP_SLOT64: howto manager. (line 991)
|
| -* BFD_RELOC_SH_LABEL: howto manager. (line 961)
|
| -* BFD_RELOC_SH_LOOP_END: howto manager. (line 963)
|
| -* BFD_RELOC_SH_LOOP_START: howto manager. (line 962)
|
| -* BFD_RELOC_SH_PCDISP12BY2: howto manager. (line 937)
|
| -* BFD_RELOC_SH_PCDISP8BY2: howto manager. (line 936)
|
| -* BFD_RELOC_SH_PCRELIMM8BY2: howto manager. (line 952)
|
| -* BFD_RELOC_SH_PCRELIMM8BY4: howto manager. (line 953)
|
| -* BFD_RELOC_SH_PLT_HI16: howto manager. (line 980)
|
| -* BFD_RELOC_SH_PLT_LOW16: howto manager. (line 977)
|
| -* BFD_RELOC_SH_PLT_MEDHI16: howto manager. (line 979)
|
| -* BFD_RELOC_SH_PLT_MEDLOW16: howto manager. (line 978)
|
| -* BFD_RELOC_SH_PT_16: howto manager. (line 1017)
|
| -* BFD_RELOC_SH_RELATIVE: howto manager. (line 967)
|
| -* BFD_RELOC_SH_RELATIVE64: howto manager. (line 992)
|
| -* BFD_RELOC_SH_SHMEDIA_CODE: howto manager. (line 998)
|
| -* BFD_RELOC_SH_SWITCH16: howto manager. (line 954)
|
| -* BFD_RELOC_SH_SWITCH32: howto manager. (line 955)
|
| -* BFD_RELOC_SH_TLS_DTPMOD32: howto manager. (line 1023)
|
| -* BFD_RELOC_SH_TLS_DTPOFF32: howto manager. (line 1024)
|
| -* BFD_RELOC_SH_TLS_GD_32: howto manager. (line 1018)
|
| -* BFD_RELOC_SH_TLS_IE_32: howto manager. (line 1021)
|
| -* BFD_RELOC_SH_TLS_LD_32: howto manager. (line 1019)
|
| -* BFD_RELOC_SH_TLS_LDO_32: howto manager. (line 1020)
|
| -* BFD_RELOC_SH_TLS_LE_32: howto manager. (line 1022)
|
| -* BFD_RELOC_SH_TLS_TPOFF32: howto manager. (line 1025)
|
| -* BFD_RELOC_SH_USES: howto manager. (line 956)
|
| -* BFD_RELOC_SPARC13: howto manager. (line 134)
|
| -* BFD_RELOC_SPARC22: howto manager. (line 133)
|
| -* BFD_RELOC_SPARC_10: howto manager. (line 163)
|
| -* BFD_RELOC_SPARC_11: howto manager. (line 164)
|
| -* BFD_RELOC_SPARC_5: howto manager. (line 176)
|
| -* BFD_RELOC_SPARC_6: howto manager. (line 175)
|
| -* BFD_RELOC_SPARC_64: howto manager. (line 162)
|
| -* BFD_RELOC_SPARC_7: howto manager. (line 174)
|
| -* BFD_RELOC_SPARC_BASE13: howto manager. (line 158)
|
| -* BFD_RELOC_SPARC_BASE22: howto manager. (line 159)
|
| -* BFD_RELOC_SPARC_COPY: howto manager. (line 141)
|
| -* BFD_RELOC_SPARC_DISP64: howto manager. (line 177)
|
| -* BFD_RELOC_SPARC_GLOB_DAT: howto manager. (line 142)
|
| -* BFD_RELOC_SPARC_GOT10: howto manager. (line 135)
|
| -* BFD_RELOC_SPARC_GOT13: howto manager. (line 136)
|
| -* BFD_RELOC_SPARC_GOT22: howto manager. (line 137)
|
| -* BFD_RELOC_SPARC_GOTDATA_HIX22: howto manager. (line 148)
|
| -* BFD_RELOC_SPARC_GOTDATA_LOX10: howto manager. (line 149)
|
| -* BFD_RELOC_SPARC_GOTDATA_OP: howto manager. (line 152)
|
| -* BFD_RELOC_SPARC_GOTDATA_OP_HIX22: howto manager. (line 150)
|
| -* BFD_RELOC_SPARC_GOTDATA_OP_LOX10: howto manager. (line 151)
|
| -* BFD_RELOC_SPARC_H34: howto manager. (line 186)
|
| -* BFD_RELOC_SPARC_H44: howto manager. (line 182)
|
| -* BFD_RELOC_SPARC_HH22: howto manager. (line 166)
|
| -* BFD_RELOC_SPARC_HIX22: howto manager. (line 180)
|
| -* BFD_RELOC_SPARC_HM10: howto manager. (line 167)
|
| -* BFD_RELOC_SPARC_IRELATIVE: howto manager. (line 154)
|
| -* BFD_RELOC_SPARC_JMP_IREL: howto manager. (line 153)
|
| -* BFD_RELOC_SPARC_JMP_SLOT: howto manager. (line 143)
|
| -* BFD_RELOC_SPARC_L44: howto manager. (line 184)
|
| -* BFD_RELOC_SPARC_LM22: howto manager. (line 168)
|
| -* BFD_RELOC_SPARC_LOX10: howto manager. (line 181)
|
| -* BFD_RELOC_SPARC_M44: howto manager. (line 183)
|
| -* BFD_RELOC_SPARC_OLO10: howto manager. (line 165)
|
| -* BFD_RELOC_SPARC_PC10: howto manager. (line 138)
|
| -* BFD_RELOC_SPARC_PC22: howto manager. (line 139)
|
| -* BFD_RELOC_SPARC_PC_HH22: howto manager. (line 169)
|
| -* BFD_RELOC_SPARC_PC_HM10: howto manager. (line 170)
|
| -* BFD_RELOC_SPARC_PC_LM22: howto manager. (line 171)
|
| -* BFD_RELOC_SPARC_PLT32: howto manager. (line 178)
|
| -* BFD_RELOC_SPARC_PLT64: howto manager. (line 179)
|
| -* BFD_RELOC_SPARC_REGISTER: howto manager. (line 185)
|
| -* BFD_RELOC_SPARC_RELATIVE: howto manager. (line 144)
|
| -* BFD_RELOC_SPARC_REV32: howto manager. (line 192)
|
| -* BFD_RELOC_SPARC_SIZE32: howto manager. (line 187)
|
| -* BFD_RELOC_SPARC_SIZE64: howto manager. (line 188)
|
| -* BFD_RELOC_SPARC_TLS_DTPMOD32: howto manager. (line 213)
|
| -* BFD_RELOC_SPARC_TLS_DTPMOD64: howto manager. (line 214)
|
| -* BFD_RELOC_SPARC_TLS_DTPOFF32: howto manager. (line 215)
|
| -* BFD_RELOC_SPARC_TLS_DTPOFF64: howto manager. (line 216)
|
| -* BFD_RELOC_SPARC_TLS_GD_ADD: howto manager. (line 197)
|
| -* BFD_RELOC_SPARC_TLS_GD_CALL: howto manager. (line 198)
|
| -* BFD_RELOC_SPARC_TLS_GD_HI22: howto manager. (line 195)
|
| -* BFD_RELOC_SPARC_TLS_GD_LO10: howto manager. (line 196)
|
| -* BFD_RELOC_SPARC_TLS_IE_ADD: howto manager. (line 210)
|
| -* BFD_RELOC_SPARC_TLS_IE_HI22: howto manager. (line 206)
|
| -* BFD_RELOC_SPARC_TLS_IE_LD: howto manager. (line 208)
|
| -* BFD_RELOC_SPARC_TLS_IE_LDX: howto manager. (line 209)
|
| -* BFD_RELOC_SPARC_TLS_IE_LO10: howto manager. (line 207)
|
| -* BFD_RELOC_SPARC_TLS_LDM_ADD: howto manager. (line 201)
|
| -* BFD_RELOC_SPARC_TLS_LDM_CALL: howto manager. (line 202)
|
| -* BFD_RELOC_SPARC_TLS_LDM_HI22: howto manager. (line 199)
|
| -* BFD_RELOC_SPARC_TLS_LDM_LO10: howto manager. (line 200)
|
| -* BFD_RELOC_SPARC_TLS_LDO_ADD: howto manager. (line 205)
|
| -* BFD_RELOC_SPARC_TLS_LDO_HIX22: howto manager. (line 203)
|
| -* BFD_RELOC_SPARC_TLS_LDO_LOX10: howto manager. (line 204)
|
| -* BFD_RELOC_SPARC_TLS_LE_HIX22: howto manager. (line 211)
|
| -* BFD_RELOC_SPARC_TLS_LE_LOX10: howto manager. (line 212)
|
| -* BFD_RELOC_SPARC_TLS_TPOFF32: howto manager. (line 217)
|
| -* BFD_RELOC_SPARC_TLS_TPOFF64: howto manager. (line 218)
|
| -* BFD_RELOC_SPARC_UA16: howto manager. (line 145)
|
| -* BFD_RELOC_SPARC_UA32: howto manager. (line 146)
|
| -* BFD_RELOC_SPARC_UA64: howto manager. (line 147)
|
| -* BFD_RELOC_SPARC_WDISP10: howto manager. (line 189)
|
| -* BFD_RELOC_SPARC_WDISP16: howto manager. (line 172)
|
| -* BFD_RELOC_SPARC_WDISP19: howto manager. (line 173)
|
| -* BFD_RELOC_SPARC_WDISP22: howto manager. (line 132)
|
| -* BFD_RELOC_SPARC_WPLT30: howto manager. (line 140)
|
| -* BFD_RELOC_SPU_ADD_PIC: howto manager. (line 235)
|
| -* BFD_RELOC_SPU_HI16: howto manager. (line 232)
|
| -* BFD_RELOC_SPU_IMM10: howto manager. (line 223)
|
| -* BFD_RELOC_SPU_IMM10W: howto manager. (line 224)
|
| -* BFD_RELOC_SPU_IMM16: howto manager. (line 225)
|
| -* BFD_RELOC_SPU_IMM16W: howto manager. (line 226)
|
| -* BFD_RELOC_SPU_IMM18: howto manager. (line 227)
|
| -* BFD_RELOC_SPU_IMM7: howto manager. (line 221)
|
| -* BFD_RELOC_SPU_IMM8: howto manager. (line 222)
|
| -* BFD_RELOC_SPU_LO16: howto manager. (line 231)
|
| -* BFD_RELOC_SPU_PCREL16: howto manager. (line 230)
|
| -* BFD_RELOC_SPU_PCREL9a: howto manager. (line 228)
|
| -* BFD_RELOC_SPU_PCREL9b: howto manager. (line 229)
|
| -* BFD_RELOC_SPU_PPU32: howto manager. (line 233)
|
| -* BFD_RELOC_SPU_PPU64: howto manager. (line 234)
|
| -* BFD_RELOC_THUMB_PCREL_BLX: howto manager. (line 785)
|
| -* BFD_RELOC_THUMB_PCREL_BRANCH12: howto manager. (line 799)
|
| -* BFD_RELOC_THUMB_PCREL_BRANCH20: howto manager. (line 800)
|
| -* BFD_RELOC_THUMB_PCREL_BRANCH23: howto manager. (line 801)
|
| -* BFD_RELOC_THUMB_PCREL_BRANCH25: howto manager. (line 802)
|
| -* BFD_RELOC_THUMB_PCREL_BRANCH7: howto manager. (line 797)
|
| -* BFD_RELOC_THUMB_PCREL_BRANCH9: howto manager. (line 798)
|
| -* BFD_RELOC_TIC30_LDP: howto manager. (line 1417)
|
| -* BFD_RELOC_TIC54X_16_OF_23: howto manager. (line 1435)
|
| -* BFD_RELOC_TIC54X_23: howto manager. (line 1432)
|
| -* BFD_RELOC_TIC54X_MS7_OF_23: howto manager. (line 1440)
|
| -* BFD_RELOC_TIC54X_PARTLS7: howto manager. (line 1422)
|
| -* BFD_RELOC_TIC54X_PARTMS9: howto manager. (line 1427)
|
| -* BFD_RELOC_TILEGX_BROFF_X1: howto manager. (line 2687)
|
| -* BFD_RELOC_TILEGX_COPY: howto manager. (line 2683)
|
| -* BFD_RELOC_TILEGX_DEST_IMM8_X1: howto manager. (line 2694)
|
| -* BFD_RELOC_TILEGX_GLOB_DAT: howto manager. (line 2684)
|
| -* BFD_RELOC_TILEGX_HW0: howto manager. (line 2676)
|
| -* BFD_RELOC_TILEGX_HW0_LAST: howto manager. (line 2680)
|
| -* BFD_RELOC_TILEGX_HW1: howto manager. (line 2677)
|
| -* BFD_RELOC_TILEGX_HW1_LAST: howto manager. (line 2681)
|
| -* BFD_RELOC_TILEGX_HW2: howto manager. (line 2678)
|
| -* BFD_RELOC_TILEGX_HW2_LAST: howto manager. (line 2682)
|
| -* BFD_RELOC_TILEGX_HW3: howto manager. (line 2679)
|
| -* BFD_RELOC_TILEGX_IMM16_X0_HW0: howto manager. (line 2703)
|
| -* BFD_RELOC_TILEGX_IMM16_X0_HW0_GOT: howto manager. (line 2731)
|
| -* BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST: howto manager. (line 2711)
|
| -* BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_GOT: howto manager. (line 2733)
|
| -* BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_PCREL: howto manager. (line 2725)
|
| -* BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_GD: howto manager. (line 2745)
|
| -* BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_IE: howto manager. (line 2751)
|
| -* BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_LE: howto manager. (line 2741)
|
| -* BFD_RELOC_TILEGX_IMM16_X0_HW0_PCREL: howto manager. (line 2717)
|
| -* BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_GD: howto manager. (line 2737)
|
| -* BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_IE: howto manager. (line 2749)
|
| -* BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_LE: howto manager. (line 2739)
|
| -* BFD_RELOC_TILEGX_IMM16_X0_HW1: howto manager. (line 2705)
|
| -* BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST: howto manager. (line 2713)
|
| -* BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_GOT: howto manager. (line 2735)
|
| -* BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_PCREL: howto manager. (line 2727)
|
| -* BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_GD: howto manager. (line 2747)
|
| -* BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_IE: howto manager. (line 2753)
|
| -* BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_LE: howto manager. (line 2743)
|
| -* BFD_RELOC_TILEGX_IMM16_X0_HW1_PCREL: howto manager. (line 2719)
|
| -* BFD_RELOC_TILEGX_IMM16_X0_HW2: howto manager. (line 2707)
|
| -* BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST: howto manager. (line 2715)
|
| -* BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST_PCREL: howto manager. (line 2729)
|
| -* BFD_RELOC_TILEGX_IMM16_X0_HW2_PCREL: howto manager. (line 2721)
|
| -* BFD_RELOC_TILEGX_IMM16_X0_HW3: howto manager. (line 2709)
|
| -* BFD_RELOC_TILEGX_IMM16_X0_HW3_PCREL: howto manager. (line 2723)
|
| -* BFD_RELOC_TILEGX_IMM16_X1_HW0: howto manager. (line 2704)
|
| -* BFD_RELOC_TILEGX_IMM16_X1_HW0_GOT: howto manager. (line 2732)
|
| -* BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST: howto manager. (line 2712)
|
| -* BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_GOT: howto manager. (line 2734)
|
| -* BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_PCREL: howto manager. (line 2726)
|
| -* BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_GD: howto manager. (line 2746)
|
| -* BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_IE: howto manager. (line 2752)
|
| -* BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_LE: howto manager. (line 2742)
|
| -* BFD_RELOC_TILEGX_IMM16_X1_HW0_PCREL: howto manager. (line 2718)
|
| -* BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_GD: howto manager. (line 2738)
|
| -* BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_IE: howto manager. (line 2750)
|
| -* BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_LE: howto manager. (line 2740)
|
| -* BFD_RELOC_TILEGX_IMM16_X1_HW1: howto manager. (line 2706)
|
| -* BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST: howto manager. (line 2714)
|
| -* BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_GOT: howto manager. (line 2736)
|
| -* BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_PCREL: howto manager. (line 2728)
|
| -* BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_GD: howto manager. (line 2748)
|
| -* BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_IE: howto manager. (line 2754)
|
| -* BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_LE: howto manager. (line 2744)
|
| -* BFD_RELOC_TILEGX_IMM16_X1_HW1_PCREL: howto manager. (line 2720)
|
| -* BFD_RELOC_TILEGX_IMM16_X1_HW2: howto manager. (line 2708)
|
| -* BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST: howto manager. (line 2716)
|
| -* BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST_PCREL: howto manager. (line 2730)
|
| -* BFD_RELOC_TILEGX_IMM16_X1_HW2_PCREL: howto manager. (line 2722)
|
| -* BFD_RELOC_TILEGX_IMM16_X1_HW3: howto manager. (line 2710)
|
| -* BFD_RELOC_TILEGX_IMM16_X1_HW3_PCREL: howto manager. (line 2724)
|
| -* BFD_RELOC_TILEGX_IMM8_X0: howto manager. (line 2690)
|
| -* BFD_RELOC_TILEGX_IMM8_X0_TLS_ADD: howto manager. (line 2767)
|
| -* BFD_RELOC_TILEGX_IMM8_X0_TLS_GD_ADD: howto manager. (line 2762)
|
| -* BFD_RELOC_TILEGX_IMM8_X1: howto manager. (line 2692)
|
| -* BFD_RELOC_TILEGX_IMM8_X1_TLS_ADD: howto manager. (line 2768)
|
| -* BFD_RELOC_TILEGX_IMM8_X1_TLS_GD_ADD: howto manager. (line 2763)
|
| -* BFD_RELOC_TILEGX_IMM8_Y0: howto manager. (line 2691)
|
| -* BFD_RELOC_TILEGX_IMM8_Y0_TLS_ADD: howto manager. (line 2769)
|
| -* BFD_RELOC_TILEGX_IMM8_Y0_TLS_GD_ADD: howto manager. (line 2764)
|
| -* BFD_RELOC_TILEGX_IMM8_Y1: howto manager. (line 2693)
|
| -* BFD_RELOC_TILEGX_IMM8_Y1_TLS_ADD: howto manager. (line 2770)
|
| -* BFD_RELOC_TILEGX_IMM8_Y1_TLS_GD_ADD: howto manager. (line 2765)
|
| -* BFD_RELOC_TILEGX_JMP_SLOT: howto manager. (line 2685)
|
| -* BFD_RELOC_TILEGX_JUMPOFF_X1: howto manager. (line 2688)
|
| -* BFD_RELOC_TILEGX_JUMPOFF_X1_PLT: howto manager. (line 2689)
|
| -* BFD_RELOC_TILEGX_MF_IMM14_X1: howto manager. (line 2696)
|
| -* BFD_RELOC_TILEGX_MMEND_X0: howto manager. (line 2698)
|
| -* BFD_RELOC_TILEGX_MMSTART_X0: howto manager. (line 2697)
|
| -* BFD_RELOC_TILEGX_MT_IMM14_X1: howto manager. (line 2695)
|
| -* BFD_RELOC_TILEGX_RELATIVE: howto manager. (line 2686)
|
| -* BFD_RELOC_TILEGX_SHAMT_X0: howto manager. (line 2699)
|
| -* BFD_RELOC_TILEGX_SHAMT_X1: howto manager. (line 2700)
|
| -* BFD_RELOC_TILEGX_SHAMT_Y0: howto manager. (line 2701)
|
| -* BFD_RELOC_TILEGX_SHAMT_Y1: howto manager. (line 2702)
|
| -* BFD_RELOC_TILEGX_TLS_DTPMOD32: howto manager. (line 2758)
|
| -* BFD_RELOC_TILEGX_TLS_DTPMOD64: howto manager. (line 2755)
|
| -* BFD_RELOC_TILEGX_TLS_DTPOFF32: howto manager. (line 2759)
|
| -* BFD_RELOC_TILEGX_TLS_DTPOFF64: howto manager. (line 2756)
|
| -* BFD_RELOC_TILEGX_TLS_GD_CALL: howto manager. (line 2761)
|
| -* BFD_RELOC_TILEGX_TLS_IE_LOAD: howto manager. (line 2766)
|
| -* BFD_RELOC_TILEGX_TLS_TPOFF32: howto manager. (line 2760)
|
| -* BFD_RELOC_TILEGX_TLS_TPOFF64: howto manager. (line 2757)
|
| -* BFD_RELOC_TILEPRO_BROFF_X1: howto manager. (line 2599)
|
| -* BFD_RELOC_TILEPRO_COPY: howto manager. (line 2595)
|
| -* BFD_RELOC_TILEPRO_DEST_IMM8_X1: howto manager. (line 2606)
|
| -* BFD_RELOC_TILEPRO_GLOB_DAT: howto manager. (line 2596)
|
| -* BFD_RELOC_TILEPRO_IMM16_X0: howto manager. (line 2609)
|
| -* BFD_RELOC_TILEPRO_IMM16_X0_GOT: howto manager. (line 2625)
|
| -* BFD_RELOC_TILEPRO_IMM16_X0_GOT_HA: howto manager. (line 2631)
|
| -* BFD_RELOC_TILEPRO_IMM16_X0_GOT_HI: howto manager. (line 2629)
|
| -* BFD_RELOC_TILEPRO_IMM16_X0_GOT_LO: howto manager. (line 2627)
|
| -* BFD_RELOC_TILEPRO_IMM16_X0_HA: howto manager. (line 2615)
|
| -* BFD_RELOC_TILEPRO_IMM16_X0_HA_PCREL: howto manager. (line 2623)
|
| -* BFD_RELOC_TILEPRO_IMM16_X0_HI: howto manager. (line 2613)
|
| -* BFD_RELOC_TILEPRO_IMM16_X0_HI_PCREL: howto manager. (line 2621)
|
| -* BFD_RELOC_TILEPRO_IMM16_X0_LO: howto manager. (line 2611)
|
| -* BFD_RELOC_TILEPRO_IMM16_X0_LO_PCREL: howto manager. (line 2619)
|
| -* BFD_RELOC_TILEPRO_IMM16_X0_PCREL: howto manager. (line 2617)
|
| -* BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD: howto manager. (line 2647)
|
| -* BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_HA: howto manager. (line 2653)
|
| -* BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_HI: howto manager. (line 2651)
|
| -* BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_LO: howto manager. (line 2649)
|
| -* BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE: howto manager. (line 2655)
|
| -* BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE_HA: howto manager. (line 2661)
|
| -* BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE_HI: howto manager. (line 2659)
|
| -* BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE_LO: howto manager. (line 2657)
|
| -* BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE: howto manager. (line 2666)
|
| -* BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE_HA: howto manager. (line 2672)
|
| -* BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE_HI: howto manager. (line 2670)
|
| -* BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE_LO: howto manager. (line 2668)
|
| -* BFD_RELOC_TILEPRO_IMM16_X1: howto manager. (line 2610)
|
| -* BFD_RELOC_TILEPRO_IMM16_X1_GOT: howto manager. (line 2626)
|
| -* BFD_RELOC_TILEPRO_IMM16_X1_GOT_HA: howto manager. (line 2632)
|
| -* BFD_RELOC_TILEPRO_IMM16_X1_GOT_HI: howto manager. (line 2630)
|
| -* BFD_RELOC_TILEPRO_IMM16_X1_GOT_LO: howto manager. (line 2628)
|
| -* BFD_RELOC_TILEPRO_IMM16_X1_HA: howto manager. (line 2616)
|
| -* BFD_RELOC_TILEPRO_IMM16_X1_HA_PCREL: howto manager. (line 2624)
|
| -* BFD_RELOC_TILEPRO_IMM16_X1_HI: howto manager. (line 2614)
|
| -* BFD_RELOC_TILEPRO_IMM16_X1_HI_PCREL: howto manager. (line 2622)
|
| -* BFD_RELOC_TILEPRO_IMM16_X1_LO: howto manager. (line 2612)
|
| -* BFD_RELOC_TILEPRO_IMM16_X1_LO_PCREL: howto manager. (line 2620)
|
| -* BFD_RELOC_TILEPRO_IMM16_X1_PCREL: howto manager. (line 2618)
|
| -* BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD: howto manager. (line 2648)
|
| -* BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD_HA: howto manager. (line 2654)
|
| -* BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD_HI: howto manager. (line 2652)
|
| -* BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD_LO: howto manager. (line 2650)
|
| -* BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE: howto manager. (line 2656)
|
| -* BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE_HA: howto manager. (line 2662)
|
| -* BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE_HI: howto manager. (line 2660)
|
| -* BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE_LO: howto manager. (line 2658)
|
| -* BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE: howto manager. (line 2667)
|
| -* BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE_HA: howto manager. (line 2673)
|
| -* BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE_HI: howto manager. (line 2671)
|
| -* BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE_LO: howto manager. (line 2669)
|
| -* BFD_RELOC_TILEPRO_IMM8_X0: howto manager. (line 2602)
|
| -* BFD_RELOC_TILEPRO_IMM8_X0_TLS_GD_ADD: howto manager. (line 2642)
|
| -* BFD_RELOC_TILEPRO_IMM8_X1: howto manager. (line 2604)
|
| -* BFD_RELOC_TILEPRO_IMM8_X1_TLS_GD_ADD: howto manager. (line 2643)
|
| -* BFD_RELOC_TILEPRO_IMM8_Y0: howto manager. (line 2603)
|
| -* BFD_RELOC_TILEPRO_IMM8_Y0_TLS_GD_ADD: howto manager. (line 2644)
|
| -* BFD_RELOC_TILEPRO_IMM8_Y1: howto manager. (line 2605)
|
| -* BFD_RELOC_TILEPRO_IMM8_Y1_TLS_GD_ADD: howto manager. (line 2645)
|
| -* BFD_RELOC_TILEPRO_JMP_SLOT: howto manager. (line 2597)
|
| -* BFD_RELOC_TILEPRO_JOFFLONG_X1: howto manager. (line 2600)
|
| -* BFD_RELOC_TILEPRO_JOFFLONG_X1_PLT: howto manager. (line 2601)
|
| -* BFD_RELOC_TILEPRO_MF_IMM15_X1: howto manager. (line 2608)
|
| -* BFD_RELOC_TILEPRO_MMEND_X0: howto manager. (line 2634)
|
| -* BFD_RELOC_TILEPRO_MMEND_X1: howto manager. (line 2636)
|
| -* BFD_RELOC_TILEPRO_MMSTART_X0: howto manager. (line 2633)
|
| -* BFD_RELOC_TILEPRO_MMSTART_X1: howto manager. (line 2635)
|
| -* BFD_RELOC_TILEPRO_MT_IMM15_X1: howto manager. (line 2607)
|
| -* BFD_RELOC_TILEPRO_RELATIVE: howto manager. (line 2598)
|
| -* BFD_RELOC_TILEPRO_SHAMT_X0: howto manager. (line 2637)
|
| -* BFD_RELOC_TILEPRO_SHAMT_X1: howto manager. (line 2638)
|
| -* BFD_RELOC_TILEPRO_SHAMT_Y0: howto manager. (line 2639)
|
| -* BFD_RELOC_TILEPRO_SHAMT_Y1: howto manager. (line 2640)
|
| -* BFD_RELOC_TILEPRO_TLS_DTPMOD32: howto manager. (line 2663)
|
| -* BFD_RELOC_TILEPRO_TLS_DTPOFF32: howto manager. (line 2664)
|
| -* BFD_RELOC_TILEPRO_TLS_GD_CALL: howto manager. (line 2641)
|
| -* BFD_RELOC_TILEPRO_TLS_IE_LOAD: howto manager. (line 2646)
|
| -* BFD_RELOC_TILEPRO_TLS_TPOFF32: howto manager. (line 2665)
|
| -* bfd_reloc_type_lookup: howto manager. (line 2796)
|
| -* BFD_RELOC_V850_16_GOT: howto manager. (line 1381)
|
| -* BFD_RELOC_V850_16_GOTOFF: howto manager. (line 1405)
|
| -* BFD_RELOC_V850_16_PCREL: howto manager. (line 1351)
|
| -* BFD_RELOC_V850_16_S1: howto manager. (line 1369)
|
| -* BFD_RELOC_V850_16_SPLIT_OFFSET: howto manager. (line 1366)
|
| -* BFD_RELOC_V850_17_PCREL: howto manager. (line 1354)
|
| -* BFD_RELOC_V850_22_PCREL: howto manager. (line 1286)
|
| -* BFD_RELOC_V850_22_PLT_PCREL: howto manager. (line 1387)
|
| -* BFD_RELOC_V850_23: howto manager. (line 1357)
|
| -* BFD_RELOC_V850_32_ABS: howto manager. (line 1363)
|
| -* BFD_RELOC_V850_32_GOT: howto manager. (line 1384)
|
| -* BFD_RELOC_V850_32_GOTOFF: howto manager. (line 1408)
|
| -* BFD_RELOC_V850_32_GOTPCREL: howto manager. (line 1378)
|
| -* BFD_RELOC_V850_32_PCREL: howto manager. (line 1360)
|
| -* BFD_RELOC_V850_32_PLT_PCREL: howto manager. (line 1390)
|
| -* BFD_RELOC_V850_9_PCREL: howto manager. (line 1283)
|
| -* BFD_RELOC_V850_ALIGN: howto manager. (line 1344)
|
| -* BFD_RELOC_V850_CALLT_15_16_OFFSET: howto manager. (line 1375)
|
| -* BFD_RELOC_V850_CALLT_16_16_OFFSET: howto manager. (line 1335)
|
| -* BFD_RELOC_V850_CALLT_6_7_OFFSET: howto manager. (line 1332)
|
| -* BFD_RELOC_V850_CODE: howto manager. (line 1411)
|
| -* BFD_RELOC_V850_COPY: howto manager. (line 1393)
|
| -* BFD_RELOC_V850_DATA: howto manager. (line 1414)
|
| -* BFD_RELOC_V850_GLOB_DAT: howto manager. (line 1396)
|
| -* BFD_RELOC_V850_JMP_SLOT: howto manager. (line 1399)
|
| -* BFD_RELOC_V850_LO16_S1: howto manager. (line 1372)
|
| -* BFD_RELOC_V850_LO16_SPLIT_OFFSET: howto manager. (line 1347)
|
| -* BFD_RELOC_V850_LONGCALL: howto manager. (line 1338)
|
| -* BFD_RELOC_V850_LONGJUMP: howto manager. (line 1341)
|
| -* BFD_RELOC_V850_RELATIVE: howto manager. (line 1402)
|
| -* BFD_RELOC_V850_SDA_15_16_OFFSET: howto manager. (line 1292)
|
| -* BFD_RELOC_V850_SDA_16_16_OFFSET: howto manager. (line 1289)
|
| -* BFD_RELOC_V850_SDA_16_16_SPLIT_OFFSET: howto manager. (line 1324)
|
| -* BFD_RELOC_V850_TDA_16_16_OFFSET: howto manager. (line 1314)
|
| -* BFD_RELOC_V850_TDA_4_4_OFFSET: howto manager. (line 1321)
|
| -* BFD_RELOC_V850_TDA_4_5_OFFSET: howto manager. (line 1317)
|
| -* BFD_RELOC_V850_TDA_6_8_OFFSET: howto manager. (line 1303)
|
| -* BFD_RELOC_V850_TDA_7_7_OFFSET: howto manager. (line 1311)
|
| -* BFD_RELOC_V850_TDA_7_8_OFFSET: howto manager. (line 1307)
|
| -* BFD_RELOC_V850_ZDA_15_16_OFFSET: howto manager. (line 1299)
|
| -* BFD_RELOC_V850_ZDA_16_16_OFFSET: howto manager. (line 1296)
|
| -* BFD_RELOC_V850_ZDA_16_16_SPLIT_OFFSET: howto manager. (line 1328)
|
| -* BFD_RELOC_VAX_GLOB_DAT: howto manager. (line 2358)
|
| -* BFD_RELOC_VAX_JMP_SLOT: howto manager. (line 2359)
|
| -* BFD_RELOC_VAX_RELATIVE: howto manager. (line 2360)
|
| -* BFD_RELOC_VPE4KMATH_DATA: howto manager. (line 1935)
|
| -* BFD_RELOC_VPE4KMATH_INSN: howto manager. (line 1936)
|
| -* BFD_RELOC_VTABLE_ENTRY: howto manager. (line 1940)
|
| -* BFD_RELOC_VTABLE_INHERIT: howto manager. (line 1939)
|
| -* BFD_RELOC_X86_64_32S: howto manager. (line 603)
|
| -* BFD_RELOC_X86_64_COPY: howto manager. (line 598)
|
| -* BFD_RELOC_X86_64_DTPMOD64: howto manager. (line 604)
|
| -* BFD_RELOC_X86_64_DTPOFF32: howto manager. (line 609)
|
| -* BFD_RELOC_X86_64_DTPOFF64: howto manager. (line 605)
|
| -* BFD_RELOC_X86_64_GLOB_DAT: howto manager. (line 599)
|
| -* BFD_RELOC_X86_64_GOT32: howto manager. (line 596)
|
| -* BFD_RELOC_X86_64_GOT64: howto manager. (line 614)
|
| -* BFD_RELOC_X86_64_GOTOFF64: howto manager. (line 612)
|
| -* BFD_RELOC_X86_64_GOTPC32: howto manager. (line 613)
|
| -* BFD_RELOC_X86_64_GOTPC32_TLSDESC: howto manager. (line 619)
|
| -* BFD_RELOC_X86_64_GOTPC64: howto manager. (line 616)
|
| -* BFD_RELOC_X86_64_GOTPCREL: howto manager. (line 602)
|
| -* BFD_RELOC_X86_64_GOTPCREL64: howto manager. (line 615)
|
| -* BFD_RELOC_X86_64_GOTPLT64: howto manager. (line 617)
|
| -* BFD_RELOC_X86_64_GOTTPOFF: howto manager. (line 610)
|
| -* BFD_RELOC_X86_64_IRELATIVE: howto manager. (line 622)
|
| -* BFD_RELOC_X86_64_JUMP_SLOT: howto manager. (line 600)
|
| -* BFD_RELOC_X86_64_PLT32: howto manager. (line 597)
|
| -* BFD_RELOC_X86_64_PLTOFF64: howto manager. (line 618)
|
| -* BFD_RELOC_X86_64_RELATIVE: howto manager. (line 601)
|
| -* BFD_RELOC_X86_64_TLSDESC: howto manager. (line 621)
|
| -* BFD_RELOC_X86_64_TLSDESC_CALL: howto manager. (line 620)
|
| -* BFD_RELOC_X86_64_TLSGD: howto manager. (line 607)
|
| -* BFD_RELOC_X86_64_TLSLD: howto manager. (line 608)
|
| -* BFD_RELOC_X86_64_TPOFF32: howto manager. (line 611)
|
| -* BFD_RELOC_X86_64_TPOFF64: howto manager. (line 606)
|
| -* BFD_RELOC_XC16X_PAG: howto manager. (line 2352)
|
| -* BFD_RELOC_XC16X_POF: howto manager. (line 2353)
|
| -* BFD_RELOC_XC16X_SEG: howto manager. (line 2354)
|
| -* BFD_RELOC_XC16X_SOF: howto manager. (line 2355)
|
| -* BFD_RELOC_XGATE_24: howto manager. (line 2098)
|
| -* BFD_RELOC_XGATE_GPAGE: howto manager. (line 2095)
|
| -* BFD_RELOC_XGATE_IMM3: howto manager. (line 2115)
|
| -* BFD_RELOC_XGATE_IMM4: howto manager. (line 2118)
|
| -* BFD_RELOC_XGATE_IMM5: howto manager. (line 2121)
|
| -* BFD_RELOC_XGATE_IMM8_HI: howto manager. (line 2111)
|
| -* BFD_RELOC_XGATE_IMM8_LO: howto manager. (line 2107)
|
| -* BFD_RELOC_XGATE_LO16: howto manager. (line 2091)
|
| -* BFD_RELOC_XGATE_PCREL_10: howto manager. (line 2104)
|
| -* BFD_RELOC_XGATE_PCREL_9: howto manager. (line 2101)
|
| -* BFD_RELOC_XGATE_RL_GROUP: howto manager. (line 2086)
|
| -* BFD_RELOC_XGATE_RL_JUMP: howto manager. (line 2082)
|
| -* BFD_RELOC_XSTORMY16_12: howto manager. (line 2344)
|
| -* BFD_RELOC_XSTORMY16_24: howto manager. (line 2345)
|
| -* BFD_RELOC_XSTORMY16_FPTR16: howto manager. (line 2346)
|
| -* BFD_RELOC_XSTORMY16_REL_12: howto manager. (line 2343)
|
| -* BFD_RELOC_XTENSA_ASM_EXPAND: howto manager. (line 2464)
|
| -* BFD_RELOC_XTENSA_ASM_SIMPLIFY: howto manager. (line 2469)
|
| -* BFD_RELOC_XTENSA_DIFF16: howto manager. (line 2411)
|
| -* BFD_RELOC_XTENSA_DIFF32: howto manager. (line 2412)
|
| -* BFD_RELOC_XTENSA_DIFF8: howto manager. (line 2410)
|
| -* BFD_RELOC_XTENSA_GLOB_DAT: howto manager. (line 2400)
|
| -* BFD_RELOC_XTENSA_JMP_SLOT: howto manager. (line 2401)
|
| -* BFD_RELOC_XTENSA_OP0: howto manager. (line 2458)
|
| -* BFD_RELOC_XTENSA_OP1: howto manager. (line 2459)
|
| -* BFD_RELOC_XTENSA_OP2: howto manager. (line 2460)
|
| -* BFD_RELOC_XTENSA_PLT: howto manager. (line 2405)
|
| -* BFD_RELOC_XTENSA_RELATIVE: howto manager. (line 2402)
|
| -* BFD_RELOC_XTENSA_RTLD: howto manager. (line 2395)
|
| -* BFD_RELOC_XTENSA_SLOT0_ALT: howto manager. (line 2440)
|
| -* BFD_RELOC_XTENSA_SLOT0_OP: howto manager. (line 2420)
|
| -* BFD_RELOC_XTENSA_SLOT10_ALT: howto manager. (line 2450)
|
| -* BFD_RELOC_XTENSA_SLOT10_OP: howto manager. (line 2430)
|
| -* BFD_RELOC_XTENSA_SLOT11_ALT: howto manager. (line 2451)
|
| -* BFD_RELOC_XTENSA_SLOT11_OP: howto manager. (line 2431)
|
| -* BFD_RELOC_XTENSA_SLOT12_ALT: howto manager. (line 2452)
|
| -* BFD_RELOC_XTENSA_SLOT12_OP: howto manager. (line 2432)
|
| -* BFD_RELOC_XTENSA_SLOT13_ALT: howto manager. (line 2453)
|
| -* BFD_RELOC_XTENSA_SLOT13_OP: howto manager. (line 2433)
|
| -* BFD_RELOC_XTENSA_SLOT14_ALT: howto manager. (line 2454)
|
| -* BFD_RELOC_XTENSA_SLOT14_OP: howto manager. (line 2434)
|
| -* BFD_RELOC_XTENSA_SLOT1_ALT: howto manager. (line 2441)
|
| -* BFD_RELOC_XTENSA_SLOT1_OP: howto manager. (line 2421)
|
| -* BFD_RELOC_XTENSA_SLOT2_ALT: howto manager. (line 2442)
|
| -* BFD_RELOC_XTENSA_SLOT2_OP: howto manager. (line 2422)
|
| -* BFD_RELOC_XTENSA_SLOT3_ALT: howto manager. (line 2443)
|
| -* BFD_RELOC_XTENSA_SLOT3_OP: howto manager. (line 2423)
|
| -* BFD_RELOC_XTENSA_SLOT4_ALT: howto manager. (line 2444)
|
| -* BFD_RELOC_XTENSA_SLOT4_OP: howto manager. (line 2424)
|
| -* BFD_RELOC_XTENSA_SLOT5_ALT: howto manager. (line 2445)
|
| -* BFD_RELOC_XTENSA_SLOT5_OP: howto manager. (line 2425)
|
| -* BFD_RELOC_XTENSA_SLOT6_ALT: howto manager. (line 2446)
|
| -* BFD_RELOC_XTENSA_SLOT6_OP: howto manager. (line 2426)
|
| -* BFD_RELOC_XTENSA_SLOT7_ALT: howto manager. (line 2447)
|
| -* BFD_RELOC_XTENSA_SLOT7_OP: howto manager. (line 2427)
|
| -* BFD_RELOC_XTENSA_SLOT8_ALT: howto manager. (line 2448)
|
| -* BFD_RELOC_XTENSA_SLOT8_OP: howto manager. (line 2428)
|
| -* BFD_RELOC_XTENSA_SLOT9_ALT: howto manager. (line 2449)
|
| -* BFD_RELOC_XTENSA_SLOT9_OP: howto manager. (line 2429)
|
| -* BFD_RELOC_XTENSA_TLS_ARG: howto manager. (line 2479)
|
| -* BFD_RELOC_XTENSA_TLS_CALL: howto manager. (line 2480)
|
| -* BFD_RELOC_XTENSA_TLS_DTPOFF: howto manager. (line 2476)
|
| -* BFD_RELOC_XTENSA_TLS_FUNC: howto manager. (line 2478)
|
| -* BFD_RELOC_XTENSA_TLS_TPOFF: howto manager. (line 2477)
|
| -* BFD_RELOC_XTENSA_TLSDESC_ARG: howto manager. (line 2475)
|
| -* BFD_RELOC_XTENSA_TLSDESC_FN: howto manager. (line 2474)
|
| -* BFD_RELOC_Z80_DISP8: howto manager. (line 2483)
|
| -* BFD_RELOC_Z8K_CALLR: howto manager. (line 2489)
|
| -* BFD_RELOC_Z8K_DISP7: howto manager. (line 2486)
|
| -* BFD_RELOC_Z8K_IMM4L: howto manager. (line 2492)
|
| +* BFD_RELOC_M32C_HI8: howto manager. (line 1242)
|
| +* BFD_RELOC_M32C_RL_1ADDR: howto manager. (line 1244)
|
| +* BFD_RELOC_M32C_RL_2ADDR: howto manager. (line 1245)
|
| +* BFD_RELOC_M32C_RL_JUMP: howto manager. (line 1243)
|
| +* BFD_RELOC_M32R_10_PCREL: howto manager. (line 1252)
|
| +* BFD_RELOC_M32R_18_PCREL: howto manager. (line 1256)
|
| +* BFD_RELOC_M32R_24: howto manager. (line 1248)
|
| +* BFD_RELOC_M32R_26_PCREL: howto manager. (line 1259)
|
| +* BFD_RELOC_M32R_26_PLTREL: howto manager. (line 1278)
|
| +* BFD_RELOC_M32R_COPY: howto manager. (line 1279)
|
| +* BFD_RELOC_M32R_GLOB_DAT: howto manager. (line 1280)
|
| +* BFD_RELOC_M32R_GOT16_HI_SLO: howto manager. (line 1289)
|
| +* BFD_RELOC_M32R_GOT16_HI_ULO: howto manager. (line 1288)
|
| +* BFD_RELOC_M32R_GOT16_LO: howto manager. (line 1290)
|
| +* BFD_RELOC_M32R_GOT24: howto manager. (line 1277)
|
| +* BFD_RELOC_M32R_GOTOFF: howto manager. (line 1283)
|
| +* BFD_RELOC_M32R_GOTOFF_HI_SLO: howto manager. (line 1285)
|
| +* BFD_RELOC_M32R_GOTOFF_HI_ULO: howto manager. (line 1284)
|
| +* BFD_RELOC_M32R_GOTOFF_LO: howto manager. (line 1286)
|
| +* BFD_RELOC_M32R_GOTPC24: howto manager. (line 1287)
|
| +* BFD_RELOC_M32R_GOTPC_HI_SLO: howto manager. (line 1292)
|
| +* BFD_RELOC_M32R_GOTPC_HI_ULO: howto manager. (line 1291)
|
| +* BFD_RELOC_M32R_GOTPC_LO: howto manager. (line 1293)
|
| +* BFD_RELOC_M32R_HI16_SLO: howto manager. (line 1266)
|
| +* BFD_RELOC_M32R_HI16_ULO: howto manager. (line 1262)
|
| +* BFD_RELOC_M32R_JMP_SLOT: howto manager. (line 1281)
|
| +* BFD_RELOC_M32R_LO16: howto manager. (line 1270)
|
| +* BFD_RELOC_M32R_RELATIVE: howto manager. (line 1282)
|
| +* BFD_RELOC_M32R_SDA16: howto manager. (line 1273)
|
| +* BFD_RELOC_M68HC11_24: howto manager. (line 2139)
|
| +* BFD_RELOC_M68HC11_3B: howto manager. (line 2114)
|
| +* BFD_RELOC_M68HC11_HI8: howto manager. (line 2106)
|
| +* BFD_RELOC_M68HC11_LO16: howto manager. (line 2128)
|
| +* BFD_RELOC_M68HC11_LO8: howto manager. (line 2110)
|
| +* BFD_RELOC_M68HC11_PAGE: howto manager. (line 2134)
|
| +* BFD_RELOC_M68HC11_RL_GROUP: howto manager. (line 2123)
|
| +* BFD_RELOC_M68HC11_RL_JUMP: howto manager. (line 2117)
|
| +* BFD_RELOC_M68HC12_10_PCREL: howto manager. (line 2199)
|
| +* BFD_RELOC_M68HC12_16B: howto manager. (line 2193)
|
| +* BFD_RELOC_M68HC12_5B: howto manager. (line 2145)
|
| +* BFD_RELOC_M68HC12_9_PCREL: howto manager. (line 2196)
|
| +* BFD_RELOC_M68HC12_9B: howto manager. (line 2190)
|
| +* BFD_RELOC_M68HC12_HI8XG: howto manager. (line 2206)
|
| +* BFD_RELOC_M68HC12_LO8XG: howto manager. (line 2202)
|
| +* BFD_RELOC_MACH_O_LOCAL_SECTDIFF: howto manager. (line 2628)
|
| +* BFD_RELOC_MACH_O_PAIR: howto manager. (line 2631)
|
| +* BFD_RELOC_MACH_O_SECTDIFF: howto manager. (line 2624)
|
| +* BFD_RELOC_MACH_O_X86_64_BRANCH32: howto manager. (line 2634)
|
| +* BFD_RELOC_MACH_O_X86_64_BRANCH8: howto manager. (line 2635)
|
| +* BFD_RELOC_MACH_O_X86_64_GOT: howto manager. (line 2639)
|
| +* BFD_RELOC_MACH_O_X86_64_GOT_LOAD: howto manager. (line 2642)
|
| +* BFD_RELOC_MACH_O_X86_64_PCREL32_1: howto manager. (line 2652)
|
| +* BFD_RELOC_MACH_O_X86_64_PCREL32_2: howto manager. (line 2655)
|
| +* BFD_RELOC_MACH_O_X86_64_PCREL32_4: howto manager. (line 2658)
|
| +* BFD_RELOC_MACH_O_X86_64_SUBTRACTOR32: howto manager. (line 2646)
|
| +* BFD_RELOC_MACH_O_X86_64_SUBTRACTOR64: howto manager. (line 2649)
|
| +* BFD_RELOC_MCORE_PCREL_32: howto manager. (line 1523)
|
| +* BFD_RELOC_MCORE_PCREL_IMM11BY2: howto manager. (line 1521)
|
| +* BFD_RELOC_MCORE_PCREL_IMM4BY2: howto manager. (line 1522)
|
| +* BFD_RELOC_MCORE_PCREL_IMM8BY4: howto manager. (line 1520)
|
| +* BFD_RELOC_MCORE_PCREL_JSR_IMM11BY2: howto manager. (line 1524)
|
| +* BFD_RELOC_MCORE_RVA: howto manager. (line 1525)
|
| +* BFD_RELOC_MEP_16: howto manager. (line 1529)
|
| +* BFD_RELOC_MEP_32: howto manager. (line 1530)
|
| +* BFD_RELOC_MEP_8: howto manager. (line 1528)
|
| +* BFD_RELOC_MEP_ADDR24A4: howto manager. (line 1545)
|
| +* BFD_RELOC_MEP_GNU_VTENTRY: howto manager. (line 1547)
|
| +* BFD_RELOC_MEP_GNU_VTINHERIT: howto manager. (line 1546)
|
| +* BFD_RELOC_MEP_GPREL: howto manager. (line 1539)
|
| +* BFD_RELOC_MEP_HI16S: howto manager. (line 1538)
|
| +* BFD_RELOC_MEP_HI16U: howto manager. (line 1537)
|
| +* BFD_RELOC_MEP_LOW16: howto manager. (line 1536)
|
| +* BFD_RELOC_MEP_PCABS24A2: howto manager. (line 1535)
|
| +* BFD_RELOC_MEP_PCREL12A2: howto manager. (line 1532)
|
| +* BFD_RELOC_MEP_PCREL17A2: howto manager. (line 1533)
|
| +* BFD_RELOC_MEP_PCREL24A2: howto manager. (line 1534)
|
| +* BFD_RELOC_MEP_PCREL8A2: howto manager. (line 1531)
|
| +* BFD_RELOC_MEP_TPREL: howto manager. (line 1540)
|
| +* BFD_RELOC_MEP_TPREL7: howto manager. (line 1541)
|
| +* BFD_RELOC_MEP_TPREL7A2: howto manager. (line 1542)
|
| +* BFD_RELOC_MEP_TPREL7A4: howto manager. (line 1543)
|
| +* BFD_RELOC_MEP_UIMM24: howto manager. (line 1544)
|
| +* BFD_RELOC_METAG_COPY: howto manager. (line 1569)
|
| +* BFD_RELOC_METAG_GETSET_GOT: howto manager. (line 1561)
|
| +* BFD_RELOC_METAG_GETSET_GOTOFF: howto manager. (line 1560)
|
| +* BFD_RELOC_METAG_GETSETOFF: howto manager. (line 1553)
|
| +* BFD_RELOC_METAG_GLOB_DAT: howto manager. (line 1572)
|
| +* BFD_RELOC_METAG_GOTOFF: howto manager. (line 1567)
|
| +* BFD_RELOC_METAG_HI16_GOTOFF: howto manager. (line 1558)
|
| +* BFD_RELOC_METAG_HI16_GOTPC: howto manager. (line 1562)
|
| +* BFD_RELOC_METAG_HI16_PLT: howto manager. (line 1564)
|
| +* BFD_RELOC_METAG_HIADDR16: howto manager. (line 1550)
|
| +* BFD_RELOC_METAG_HIOG: howto manager. (line 1554)
|
| +* BFD_RELOC_METAG_JMP_SLOT: howto manager. (line 1570)
|
| +* BFD_RELOC_METAG_LO16_GOTOFF: howto manager. (line 1559)
|
| +* BFD_RELOC_METAG_LO16_GOTPC: howto manager. (line 1563)
|
| +* BFD_RELOC_METAG_LO16_PLT: howto manager. (line 1565)
|
| +* BFD_RELOC_METAG_LOADDR16: howto manager. (line 1551)
|
| +* BFD_RELOC_METAG_LOOG: howto manager. (line 1555)
|
| +* BFD_RELOC_METAG_PLT: howto manager. (line 1568)
|
| +* BFD_RELOC_METAG_REL16: howto manager. (line 1557)
|
| +* BFD_RELOC_METAG_REL8: howto manager. (line 1556)
|
| +* BFD_RELOC_METAG_RELATIVE: howto manager. (line 1571)
|
| +* BFD_RELOC_METAG_RELBRANCH: howto manager. (line 1552)
|
| +* BFD_RELOC_METAG_RELBRANCH_PLT: howto manager. (line 1566)
|
| +* BFD_RELOC_METAG_TLS_DTPMOD: howto manager. (line 1583)
|
| +* BFD_RELOC_METAG_TLS_DTPOFF: howto manager. (line 1584)
|
| +* BFD_RELOC_METAG_TLS_GD: howto manager. (line 1573)
|
| +* BFD_RELOC_METAG_TLS_IE: howto manager. (line 1578)
|
| +* BFD_RELOC_METAG_TLS_IENONPIC: howto manager. (line 1579)
|
| +* BFD_RELOC_METAG_TLS_IENONPIC_HI16: howto manager. (line 1580)
|
| +* BFD_RELOC_METAG_TLS_IENONPIC_LO16: howto manager. (line 1581)
|
| +* BFD_RELOC_METAG_TLS_LDM: howto manager. (line 1574)
|
| +* BFD_RELOC_METAG_TLS_LDO: howto manager. (line 1577)
|
| +* BFD_RELOC_METAG_TLS_LDO_HI16: howto manager. (line 1575)
|
| +* BFD_RELOC_METAG_TLS_LDO_LO16: howto manager. (line 1576)
|
| +* BFD_RELOC_METAG_TLS_LE: howto manager. (line 1585)
|
| +* BFD_RELOC_METAG_TLS_LE_HI16: howto manager. (line 1586)
|
| +* BFD_RELOC_METAG_TLS_LE_LO16: howto manager. (line 1587)
|
| +* BFD_RELOC_METAG_TLS_TPOFF: howto manager. (line 1582)
|
| +* BFD_RELOC_MICROBLAZE_32_GOTOFF: howto manager. (line 2705)
|
| +* BFD_RELOC_MICROBLAZE_32_LO: howto manager. (line 2661)
|
| +* BFD_RELOC_MICROBLAZE_32_LO_PCREL: howto manager. (line 2665)
|
| +* BFD_RELOC_MICROBLAZE_32_ROSDA: howto manager. (line 2669)
|
| +* BFD_RELOC_MICROBLAZE_32_RWSDA: howto manager. (line 2673)
|
| +* BFD_RELOC_MICROBLAZE_32_SYM_OP_SYM: howto manager. (line 2677)
|
| +* BFD_RELOC_MICROBLAZE_32_TLSDTPMOD: howto manager. (line 2726)
|
| +* BFD_RELOC_MICROBLAZE_32_TLSDTPREL: howto manager. (line 2729)
|
| +* BFD_RELOC_MICROBLAZE_64_GOT: howto manager. (line 2691)
|
| +* BFD_RELOC_MICROBLAZE_64_GOTOFF: howto manager. (line 2700)
|
| +* BFD_RELOC_MICROBLAZE_64_GOTPC: howto manager. (line 2686)
|
| +* BFD_RELOC_MICROBLAZE_64_NONE: howto manager. (line 2681)
|
| +* BFD_RELOC_MICROBLAZE_64_PLT: howto manager. (line 2695)
|
| +* BFD_RELOC_MICROBLAZE_64_TLS: howto manager. (line 2713)
|
| +* BFD_RELOC_MICROBLAZE_64_TLSDTPREL: howto manager. (line 2732)
|
| +* BFD_RELOC_MICROBLAZE_64_TLSGD: howto manager. (line 2716)
|
| +* BFD_RELOC_MICROBLAZE_64_TLSGOTTPREL: howto manager. (line 2736)
|
| +* BFD_RELOC_MICROBLAZE_64_TLSLD: howto manager. (line 2721)
|
| +* BFD_RELOC_MICROBLAZE_64_TLSTPREL: howto manager. (line 2740)
|
| +* BFD_RELOC_MICROBLAZE_COPY: howto manager. (line 2709)
|
| +* BFD_RELOC_MICROMIPS_10_PCREL_S1: howto manager. (line 404)
|
| +* BFD_RELOC_MICROMIPS_16_PCREL_S1: howto manager. (line 405)
|
| +* BFD_RELOC_MICROMIPS_7_PCREL_S1: howto manager. (line 403)
|
| +* BFD_RELOC_MICROMIPS_CALL16: howto manager. (line 417)
|
| +* BFD_RELOC_MICROMIPS_CALL_HI16: howto manager. (line 423)
|
| +* BFD_RELOC_MICROMIPS_CALL_LO16: howto manager. (line 425)
|
| +* BFD_RELOC_MICROMIPS_GOT16: howto manager. (line 415)
|
| +* BFD_RELOC_MICROMIPS_GOT_DISP: howto manager. (line 433)
|
| +* BFD_RELOC_MICROMIPS_GOT_HI16: howto manager. (line 419)
|
| +* BFD_RELOC_MICROMIPS_GOT_LO16: howto manager. (line 421)
|
| +* BFD_RELOC_MICROMIPS_GOT_OFST: howto manager. (line 431)
|
| +* BFD_RELOC_MICROMIPS_GOT_PAGE: howto manager. (line 429)
|
| +* BFD_RELOC_MICROMIPS_GPREL16: howto manager. (line 408)
|
| +* BFD_RELOC_MICROMIPS_HI16: howto manager. (line 409)
|
| +* BFD_RELOC_MICROMIPS_HI16_S: howto manager. (line 410)
|
| +* BFD_RELOC_MICROMIPS_HIGHER: howto manager. (line 442)
|
| +* BFD_RELOC_MICROMIPS_HIGHEST: howto manager. (line 440)
|
| +* BFD_RELOC_MICROMIPS_JALR: howto manager. (line 448)
|
| +* BFD_RELOC_MICROMIPS_JMP: howto manager. (line 343)
|
| +* BFD_RELOC_MICROMIPS_LITERAL: howto manager. (line 400)
|
| +* BFD_RELOC_MICROMIPS_LO16: howto manager. (line 411)
|
| +* BFD_RELOC_MICROMIPS_SCN_DISP: howto manager. (line 444)
|
| +* BFD_RELOC_MICROMIPS_SUB: howto manager. (line 427)
|
| +* BFD_RELOC_MICROMIPS_TLS_DTPREL_HI16: howto manager. (line 458)
|
| +* BFD_RELOC_MICROMIPS_TLS_DTPREL_LO16: howto manager. (line 460)
|
| +* BFD_RELOC_MICROMIPS_TLS_GD: howto manager. (line 454)
|
| +* BFD_RELOC_MICROMIPS_TLS_GOTTPREL: howto manager. (line 462)
|
| +* BFD_RELOC_MICROMIPS_TLS_LDM: howto manager. (line 456)
|
| +* BFD_RELOC_MICROMIPS_TLS_TPREL_HI16: howto manager. (line 466)
|
| +* BFD_RELOC_MICROMIPS_TLS_TPREL_LO16: howto manager. (line 468)
|
| +* BFD_RELOC_MIPS16_CALL16: howto manager. (line 374)
|
| +* BFD_RELOC_MIPS16_GOT16: howto manager. (line 373)
|
| +* BFD_RELOC_MIPS16_GPREL: howto manager. (line 349)
|
| +* BFD_RELOC_MIPS16_HI16: howto manager. (line 378)
|
| +* BFD_RELOC_MIPS16_HI16_S: howto manager. (line 381)
|
| +* BFD_RELOC_MIPS16_JMP: howto manager. (line 346)
|
| +* BFD_RELOC_MIPS16_LO16: howto manager. (line 387)
|
| +* BFD_RELOC_MIPS16_TLS_DTPREL_HI16: howto manager. (line 392)
|
| +* BFD_RELOC_MIPS16_TLS_DTPREL_LO16: howto manager. (line 393)
|
| +* BFD_RELOC_MIPS16_TLS_GD: howto manager. (line 390)
|
| +* BFD_RELOC_MIPS16_TLS_GOTTPREL: howto manager. (line 394)
|
| +* BFD_RELOC_MIPS16_TLS_LDM: howto manager. (line 391)
|
| +* BFD_RELOC_MIPS16_TLS_TPREL_HI16: howto manager. (line 395)
|
| +* BFD_RELOC_MIPS16_TLS_TPREL_LO16: howto manager. (line 396)
|
| +* BFD_RELOC_MIPS_CALL16: howto manager. (line 416)
|
| +* BFD_RELOC_MIPS_CALL_HI16: howto manager. (line 422)
|
| +* BFD_RELOC_MIPS_CALL_LO16: howto manager. (line 424)
|
| +* BFD_RELOC_MIPS_COPY: howto manager. (line 472)
|
| +* BFD_RELOC_MIPS_DELETE: howto manager. (line 438)
|
| +* BFD_RELOC_MIPS_EH: howto manager. (line 469)
|
| +* BFD_RELOC_MIPS_GOT16: howto manager. (line 414)
|
| +* BFD_RELOC_MIPS_GOT_DISP: howto manager. (line 432)
|
| +* BFD_RELOC_MIPS_GOT_HI16: howto manager. (line 418)
|
| +* BFD_RELOC_MIPS_GOT_LO16: howto manager. (line 420)
|
| +* BFD_RELOC_MIPS_GOT_OFST: howto manager. (line 430)
|
| +* BFD_RELOC_MIPS_GOT_PAGE: howto manager. (line 428)
|
| +* BFD_RELOC_MIPS_HIGHER: howto manager. (line 441)
|
| +* BFD_RELOC_MIPS_HIGHEST: howto manager. (line 439)
|
| +* BFD_RELOC_MIPS_INSERT_A: howto manager. (line 436)
|
| +* BFD_RELOC_MIPS_INSERT_B: howto manager. (line 437)
|
| +* BFD_RELOC_MIPS_JALR: howto manager. (line 447)
|
| +* BFD_RELOC_MIPS_JMP: howto manager. (line 342)
|
| +* BFD_RELOC_MIPS_JUMP_SLOT: howto manager. (line 473)
|
| +* BFD_RELOC_MIPS_LITERAL: howto manager. (line 399)
|
| +* BFD_RELOC_MIPS_REL16: howto manager. (line 445)
|
| +* BFD_RELOC_MIPS_RELGOT: howto manager. (line 446)
|
| +* BFD_RELOC_MIPS_SCN_DISP: howto manager. (line 443)
|
| +* BFD_RELOC_MIPS_SHIFT5: howto manager. (line 434)
|
| +* BFD_RELOC_MIPS_SHIFT6: howto manager. (line 435)
|
| +* BFD_RELOC_MIPS_SUB: howto manager. (line 426)
|
| +* BFD_RELOC_MIPS_TLS_DTPMOD32: howto manager. (line 449)
|
| +* BFD_RELOC_MIPS_TLS_DTPMOD64: howto manager. (line 451)
|
| +* BFD_RELOC_MIPS_TLS_DTPREL32: howto manager. (line 450)
|
| +* BFD_RELOC_MIPS_TLS_DTPREL64: howto manager. (line 452)
|
| +* BFD_RELOC_MIPS_TLS_DTPREL_HI16: howto manager. (line 457)
|
| +* BFD_RELOC_MIPS_TLS_DTPREL_LO16: howto manager. (line 459)
|
| +* BFD_RELOC_MIPS_TLS_GD: howto manager. (line 453)
|
| +* BFD_RELOC_MIPS_TLS_GOTTPREL: howto manager. (line 461)
|
| +* BFD_RELOC_MIPS_TLS_LDM: howto manager. (line 455)
|
| +* BFD_RELOC_MIPS_TLS_TPREL32: howto manager. (line 463)
|
| +* BFD_RELOC_MIPS_TLS_TPREL64: howto manager. (line 464)
|
| +* BFD_RELOC_MIPS_TLS_TPREL_HI16: howto manager. (line 465)
|
| +* BFD_RELOC_MIPS_TLS_TPREL_LO16: howto manager. (line 467)
|
| +* BFD_RELOC_MMIX_ADDR19: howto manager. (line 1616)
|
| +* BFD_RELOC_MMIX_ADDR27: howto manager. (line 1620)
|
| +* BFD_RELOC_MMIX_BASE_PLUS_OFFSET: howto manager. (line 1632)
|
| +* BFD_RELOC_MMIX_CBRANCH: howto manager. (line 1596)
|
| +* BFD_RELOC_MMIX_CBRANCH_1: howto manager. (line 1598)
|
| +* BFD_RELOC_MMIX_CBRANCH_2: howto manager. (line 1599)
|
| +* BFD_RELOC_MMIX_CBRANCH_3: howto manager. (line 1600)
|
| +* BFD_RELOC_MMIX_CBRANCH_J: howto manager. (line 1597)
|
| +* BFD_RELOC_MMIX_GETA: howto manager. (line 1590)
|
| +* BFD_RELOC_MMIX_GETA_1: howto manager. (line 1591)
|
| +* BFD_RELOC_MMIX_GETA_2: howto manager. (line 1592)
|
| +* BFD_RELOC_MMIX_GETA_3: howto manager. (line 1593)
|
| +* BFD_RELOC_MMIX_JMP: howto manager. (line 1610)
|
| +* BFD_RELOC_MMIX_JMP_1: howto manager. (line 1611)
|
| +* BFD_RELOC_MMIX_JMP_2: howto manager. (line 1612)
|
| +* BFD_RELOC_MMIX_JMP_3: howto manager. (line 1613)
|
| +* BFD_RELOC_MMIX_LOCAL: howto manager. (line 1636)
|
| +* BFD_RELOC_MMIX_PUSHJ: howto manager. (line 1603)
|
| +* BFD_RELOC_MMIX_PUSHJ_1: howto manager. (line 1604)
|
| +* BFD_RELOC_MMIX_PUSHJ_2: howto manager. (line 1605)
|
| +* BFD_RELOC_MMIX_PUSHJ_3: howto manager. (line 1606)
|
| +* BFD_RELOC_MMIX_PUSHJ_STUBBABLE: howto manager. (line 1607)
|
| +* BFD_RELOC_MMIX_REG: howto manager. (line 1628)
|
| +* BFD_RELOC_MMIX_REG_OR_BYTE: howto manager. (line 1624)
|
| +* BFD_RELOC_MN10300_16_PCREL: howto manager. (line 571)
|
| +* BFD_RELOC_MN10300_32_PCREL: howto manager. (line 567)
|
| +* BFD_RELOC_MN10300_ALIGN: howto manager. (line 552)
|
| +* BFD_RELOC_MN10300_COPY: howto manager. (line 535)
|
| +* BFD_RELOC_MN10300_GLOB_DAT: howto manager. (line 538)
|
| +* BFD_RELOC_MN10300_GOT16: howto manager. (line 531)
|
| +* BFD_RELOC_MN10300_GOT24: howto manager. (line 527)
|
| +* BFD_RELOC_MN10300_GOT32: howto manager. (line 523)
|
| +* BFD_RELOC_MN10300_GOTOFF24: howto manager. (line 520)
|
| +* BFD_RELOC_MN10300_JMP_SLOT: howto manager. (line 541)
|
| +* BFD_RELOC_MN10300_RELATIVE: howto manager. (line 544)
|
| +* BFD_RELOC_MN10300_SYM_DIFF: howto manager. (line 547)
|
| +* BFD_RELOC_MN10300_TLS_DTPMOD: howto manager. (line 562)
|
| +* BFD_RELOC_MN10300_TLS_DTPOFF: howto manager. (line 563)
|
| +* BFD_RELOC_MN10300_TLS_GD: howto manager. (line 556)
|
| +* BFD_RELOC_MN10300_TLS_GOTIE: howto manager. (line 559)
|
| +* BFD_RELOC_MN10300_TLS_IE: howto manager. (line 560)
|
| +* BFD_RELOC_MN10300_TLS_LD: howto manager. (line 557)
|
| +* BFD_RELOC_MN10300_TLS_LDO: howto manager. (line 558)
|
| +* BFD_RELOC_MN10300_TLS_LE: howto manager. (line 561)
|
| +* BFD_RELOC_MN10300_TLS_TPOFF: howto manager. (line 564)
|
| +* BFD_RELOC_MOXIE_10_PCREL: howto manager. (line 476)
|
| +* BFD_RELOC_MSP430_10_PCREL: howto manager. (line 2448)
|
| +* BFD_RELOC_MSP430_16: howto manager. (line 2450)
|
| +* BFD_RELOC_MSP430_16_BYTE: howto manager. (line 2452)
|
| +* BFD_RELOC_MSP430_16_PCREL: howto manager. (line 2449)
|
| +* BFD_RELOC_MSP430_16_PCREL_BYTE: howto manager. (line 2451)
|
| +* BFD_RELOC_MSP430_2X_PCREL: howto manager. (line 2453)
|
| +* BFD_RELOC_MSP430_ABS8: howto manager. (line 2455)
|
| +* BFD_RELOC_MSP430_ABS_HI16: howto manager. (line 2467)
|
| +* BFD_RELOC_MSP430_PREL31: howto manager. (line 2468)
|
| +* BFD_RELOC_MSP430_RL_PCREL: howto manager. (line 2454)
|
| +* BFD_RELOC_MSP430_SYM_DIFF: howto manager. (line 2469)
|
| +* BFD_RELOC_MSP430X_ABS16: howto manager. (line 2466)
|
| +* BFD_RELOC_MSP430X_ABS20_ADR_DST: howto manager. (line 2463)
|
| +* BFD_RELOC_MSP430X_ABS20_ADR_SRC: howto manager. (line 2462)
|
| +* BFD_RELOC_MSP430X_ABS20_EXT_DST: howto manager. (line 2460)
|
| +* BFD_RELOC_MSP430X_ABS20_EXT_ODST: howto manager. (line 2461)
|
| +* BFD_RELOC_MSP430X_ABS20_EXT_SRC: howto manager. (line 2459)
|
| +* BFD_RELOC_MSP430X_PCR16: howto manager. (line 2464)
|
| +* BFD_RELOC_MSP430X_PCR20_CALL: howto manager. (line 2465)
|
| +* BFD_RELOC_MSP430X_PCR20_EXT_DST: howto manager. (line 2457)
|
| +* BFD_RELOC_MSP430X_PCR20_EXT_ODST: howto manager. (line 2458)
|
| +* BFD_RELOC_MSP430X_PCR20_EXT_SRC: howto manager. (line 2456)
|
| +* BFD_RELOC_MT_GNU_VTENTRY: howto manager. (line 2442)
|
| +* BFD_RELOC_MT_GNU_VTINHERIT: howto manager. (line 2439)
|
| +* BFD_RELOC_MT_HI16: howto manager. (line 2433)
|
| +* BFD_RELOC_MT_LO16: howto manager. (line 2436)
|
| +* BFD_RELOC_MT_PC16: howto manager. (line 2430)
|
| +* BFD_RELOC_MT_PCINSN8: howto manager. (line 2445)
|
| +* BFD_RELOC_NIOS2_ALIGN: howto manager. (line 2486)
|
| +* BFD_RELOC_NIOS2_CACHE_OPX: howto manager. (line 2476)
|
| +* BFD_RELOC_NIOS2_CALL16: howto manager. (line 2488)
|
| +* BFD_RELOC_NIOS2_CALL26: howto manager. (line 2474)
|
| +* BFD_RELOC_NIOS2_CALLR: howto manager. (line 2485)
|
| +* BFD_RELOC_NIOS2_CJMP: howto manager. (line 2484)
|
| +* BFD_RELOC_NIOS2_COPY: howto manager. (line 2501)
|
| +* BFD_RELOC_NIOS2_GLOB_DAT: howto manager. (line 2502)
|
| +* BFD_RELOC_NIOS2_GOT16: howto manager. (line 2487)
|
| +* BFD_RELOC_NIOS2_GOTOFF: howto manager. (line 2505)
|
| +* BFD_RELOC_NIOS2_GOTOFF_HA: howto manager. (line 2490)
|
| +* BFD_RELOC_NIOS2_GOTOFF_LO: howto manager. (line 2489)
|
| +* BFD_RELOC_NIOS2_GPREL: howto manager. (line 2482)
|
| +* BFD_RELOC_NIOS2_HI16: howto manager. (line 2479)
|
| +* BFD_RELOC_NIOS2_HIADJ16: howto manager. (line 2481)
|
| +* BFD_RELOC_NIOS2_IMM5: howto manager. (line 2475)
|
| +* BFD_RELOC_NIOS2_IMM6: howto manager. (line 2477)
|
| +* BFD_RELOC_NIOS2_IMM8: howto manager. (line 2478)
|
| +* BFD_RELOC_NIOS2_JUMP_SLOT: howto manager. (line 2503)
|
| +* BFD_RELOC_NIOS2_LO16: howto manager. (line 2480)
|
| +* BFD_RELOC_NIOS2_PCREL_HA: howto manager. (line 2492)
|
| +* BFD_RELOC_NIOS2_PCREL_LO: howto manager. (line 2491)
|
| +* BFD_RELOC_NIOS2_RELATIVE: howto manager. (line 2504)
|
| +* BFD_RELOC_NIOS2_S16: howto manager. (line 2472)
|
| +* BFD_RELOC_NIOS2_TLS_DTPMOD: howto manager. (line 2498)
|
| +* BFD_RELOC_NIOS2_TLS_DTPREL: howto manager. (line 2499)
|
| +* BFD_RELOC_NIOS2_TLS_GD16: howto manager. (line 2493)
|
| +* BFD_RELOC_NIOS2_TLS_IE16: howto manager. (line 2496)
|
| +* BFD_RELOC_NIOS2_TLS_LDM16: howto manager. (line 2494)
|
| +* BFD_RELOC_NIOS2_TLS_LDO16: howto manager. (line 2495)
|
| +* BFD_RELOC_NIOS2_TLS_LE16: howto manager. (line 2497)
|
| +* BFD_RELOC_NIOS2_TLS_TPREL: howto manager. (line 2500)
|
| +* BFD_RELOC_NIOS2_U16: howto manager. (line 2473)
|
| +* BFD_RELOC_NIOS2_UJMP: howto manager. (line 2483)
|
| +* BFD_RELOC_NONE: howto manager. (line 135)
|
| +* BFD_RELOC_NS32K_DISP_16: howto manager. (line 639)
|
| +* BFD_RELOC_NS32K_DISP_16_PCREL: howto manager. (line 642)
|
| +* BFD_RELOC_NS32K_DISP_32: howto manager. (line 640)
|
| +* BFD_RELOC_NS32K_DISP_32_PCREL: howto manager. (line 643)
|
| +* BFD_RELOC_NS32K_DISP_8: howto manager. (line 638)
|
| +* BFD_RELOC_NS32K_DISP_8_PCREL: howto manager. (line 641)
|
| +* BFD_RELOC_NS32K_IMM_16: howto manager. (line 633)
|
| +* BFD_RELOC_NS32K_IMM_16_PCREL: howto manager. (line 636)
|
| +* BFD_RELOC_NS32K_IMM_32: howto manager. (line 634)
|
| +* BFD_RELOC_NS32K_IMM_32_PCREL: howto manager. (line 637)
|
| +* BFD_RELOC_NS32K_IMM_8: howto manager. (line 632)
|
| +* BFD_RELOC_NS32K_IMM_8_PCREL: howto manager. (line 635)
|
| +* BFD_RELOC_OPENRISC_ABS_26: howto manager. (line 2398)
|
| +* BFD_RELOC_OPENRISC_REL_26: howto manager. (line 2399)
|
| +* BFD_RELOC_PDP11_DISP_6_PCREL: howto manager. (line 647)
|
| +* BFD_RELOC_PDP11_DISP_8_PCREL: howto manager. (line 646)
|
| +* BFD_RELOC_PJ_CODE_DIR16: howto manager. (line 652)
|
| +* BFD_RELOC_PJ_CODE_DIR32: howto manager. (line 653)
|
| +* BFD_RELOC_PJ_CODE_HI16: howto manager. (line 650)
|
| +* BFD_RELOC_PJ_CODE_LO16: howto manager. (line 651)
|
| +* BFD_RELOC_PJ_CODE_REL16: howto manager. (line 654)
|
| +* BFD_RELOC_PJ_CODE_REL32: howto manager. (line 655)
|
| +* BFD_RELOC_PPC64_ADDR16_DS: howto manager. (line 717)
|
| +* BFD_RELOC_PPC64_ADDR16_HIGH: howto manager. (line 728)
|
| +* BFD_RELOC_PPC64_ADDR16_HIGHA: howto manager. (line 729)
|
| +* BFD_RELOC_PPC64_ADDR16_LO_DS: howto manager. (line 718)
|
| +* BFD_RELOC_PPC64_DTPREL16_DS: howto manager. (line 768)
|
| +* BFD_RELOC_PPC64_DTPREL16_HIGH: howto manager. (line 776)
|
| +* BFD_RELOC_PPC64_DTPREL16_HIGHA: howto manager. (line 777)
|
| +* BFD_RELOC_PPC64_DTPREL16_HIGHER: howto manager. (line 770)
|
| +* BFD_RELOC_PPC64_DTPREL16_HIGHERA: howto manager. (line 771)
|
| +* BFD_RELOC_PPC64_DTPREL16_HIGHEST: howto manager. (line 772)
|
| +* BFD_RELOC_PPC64_DTPREL16_HIGHESTA: howto manager. (line 773)
|
| +* BFD_RELOC_PPC64_DTPREL16_LO_DS: howto manager. (line 769)
|
| +* BFD_RELOC_PPC64_GOT16_DS: howto manager. (line 719)
|
| +* BFD_RELOC_PPC64_GOT16_LO_DS: howto manager. (line 720)
|
| +* BFD_RELOC_PPC64_HIGHER: howto manager. (line 705)
|
| +* BFD_RELOC_PPC64_HIGHER_S: howto manager. (line 706)
|
| +* BFD_RELOC_PPC64_HIGHEST: howto manager. (line 707)
|
| +* BFD_RELOC_PPC64_HIGHEST_S: howto manager. (line 708)
|
| +* BFD_RELOC_PPC64_PLT16_LO_DS: howto manager. (line 721)
|
| +* BFD_RELOC_PPC64_PLTGOT16: howto manager. (line 713)
|
| +* BFD_RELOC_PPC64_PLTGOT16_DS: howto manager. (line 726)
|
| +* BFD_RELOC_PPC64_PLTGOT16_HA: howto manager. (line 716)
|
| +* BFD_RELOC_PPC64_PLTGOT16_HI: howto manager. (line 715)
|
| +* BFD_RELOC_PPC64_PLTGOT16_LO: howto manager. (line 714)
|
| +* BFD_RELOC_PPC64_PLTGOT16_LO_DS: howto manager. (line 727)
|
| +* BFD_RELOC_PPC64_SECTOFF_DS: howto manager. (line 722)
|
| +* BFD_RELOC_PPC64_SECTOFF_LO_DS: howto manager. (line 723)
|
| +* BFD_RELOC_PPC64_TOC: howto manager. (line 712)
|
| +* BFD_RELOC_PPC64_TOC16_DS: howto manager. (line 724)
|
| +* BFD_RELOC_PPC64_TOC16_HA: howto manager. (line 711)
|
| +* BFD_RELOC_PPC64_TOC16_HI: howto manager. (line 710)
|
| +* BFD_RELOC_PPC64_TOC16_LO: howto manager. (line 709)
|
| +* BFD_RELOC_PPC64_TOC16_LO_DS: howto manager. (line 725)
|
| +* BFD_RELOC_PPC64_TPREL16_DS: howto manager. (line 762)
|
| +* BFD_RELOC_PPC64_TPREL16_HIGH: howto manager. (line 774)
|
| +* BFD_RELOC_PPC64_TPREL16_HIGHA: howto manager. (line 775)
|
| +* BFD_RELOC_PPC64_TPREL16_HIGHER: howto manager. (line 764)
|
| +* BFD_RELOC_PPC64_TPREL16_HIGHERA: howto manager. (line 765)
|
| +* BFD_RELOC_PPC64_TPREL16_HIGHEST: howto manager. (line 766)
|
| +* BFD_RELOC_PPC64_TPREL16_HIGHESTA: howto manager. (line 767)
|
| +* BFD_RELOC_PPC64_TPREL16_LO_DS: howto manager. (line 763)
|
| +* BFD_RELOC_PPC_B16: howto manager. (line 661)
|
| +* BFD_RELOC_PPC_B16_BRNTAKEN: howto manager. (line 663)
|
| +* BFD_RELOC_PPC_B16_BRTAKEN: howto manager. (line 662)
|
| +* BFD_RELOC_PPC_B26: howto manager. (line 658)
|
| +* BFD_RELOC_PPC_BA16: howto manager. (line 664)
|
| +* BFD_RELOC_PPC_BA16_BRNTAKEN: howto manager. (line 666)
|
| +* BFD_RELOC_PPC_BA16_BRTAKEN: howto manager. (line 665)
|
| +* BFD_RELOC_PPC_BA26: howto manager. (line 659)
|
| +* BFD_RELOC_PPC_COPY: howto manager. (line 667)
|
| +* BFD_RELOC_PPC_DTPMOD: howto manager. (line 735)
|
| +* BFD_RELOC_PPC_DTPREL: howto manager. (line 745)
|
| +* BFD_RELOC_PPC_DTPREL16: howto manager. (line 741)
|
| +* BFD_RELOC_PPC_DTPREL16_HA: howto manager. (line 744)
|
| +* BFD_RELOC_PPC_DTPREL16_HI: howto manager. (line 743)
|
| +* BFD_RELOC_PPC_DTPREL16_LO: howto manager. (line 742)
|
| +* BFD_RELOC_PPC_EMB_BIT_FLD: howto manager. (line 686)
|
| +* BFD_RELOC_PPC_EMB_MRKREF: howto manager. (line 681)
|
| +* BFD_RELOC_PPC_EMB_NADDR16: howto manager. (line 673)
|
| +* BFD_RELOC_PPC_EMB_NADDR16_HA: howto manager. (line 676)
|
| +* BFD_RELOC_PPC_EMB_NADDR16_HI: howto manager. (line 675)
|
| +* BFD_RELOC_PPC_EMB_NADDR16_LO: howto manager. (line 674)
|
| +* BFD_RELOC_PPC_EMB_NADDR32: howto manager. (line 672)
|
| +* BFD_RELOC_PPC_EMB_RELSDA: howto manager. (line 687)
|
| +* BFD_RELOC_PPC_EMB_RELSEC16: howto manager. (line 682)
|
| +* BFD_RELOC_PPC_EMB_RELST_HA: howto manager. (line 685)
|
| +* BFD_RELOC_PPC_EMB_RELST_HI: howto manager. (line 684)
|
| +* BFD_RELOC_PPC_EMB_RELST_LO: howto manager. (line 683)
|
| +* BFD_RELOC_PPC_EMB_SDA21: howto manager. (line 680)
|
| +* BFD_RELOC_PPC_EMB_SDA2I16: howto manager. (line 678)
|
| +* BFD_RELOC_PPC_EMB_SDA2REL: howto manager. (line 679)
|
| +* BFD_RELOC_PPC_EMB_SDAI16: howto manager. (line 677)
|
| +* BFD_RELOC_PPC_GLOB_DAT: howto manager. (line 668)
|
| +* BFD_RELOC_PPC_GOT_DTPREL16: howto manager. (line 758)
|
| +* BFD_RELOC_PPC_GOT_DTPREL16_HA: howto manager. (line 761)
|
| +* BFD_RELOC_PPC_GOT_DTPREL16_HI: howto manager. (line 760)
|
| +* BFD_RELOC_PPC_GOT_DTPREL16_LO: howto manager. (line 759)
|
| +* BFD_RELOC_PPC_GOT_TLSGD16: howto manager. (line 746)
|
| +* BFD_RELOC_PPC_GOT_TLSGD16_HA: howto manager. (line 749)
|
| +* BFD_RELOC_PPC_GOT_TLSGD16_HI: howto manager. (line 748)
|
| +* BFD_RELOC_PPC_GOT_TLSGD16_LO: howto manager. (line 747)
|
| +* BFD_RELOC_PPC_GOT_TLSLD16: howto manager. (line 750)
|
| +* BFD_RELOC_PPC_GOT_TLSLD16_HA: howto manager. (line 753)
|
| +* BFD_RELOC_PPC_GOT_TLSLD16_HI: howto manager. (line 752)
|
| +* BFD_RELOC_PPC_GOT_TLSLD16_LO: howto manager. (line 751)
|
| +* BFD_RELOC_PPC_GOT_TPREL16: howto manager. (line 754)
|
| +* BFD_RELOC_PPC_GOT_TPREL16_HA: howto manager. (line 757)
|
| +* BFD_RELOC_PPC_GOT_TPREL16_HI: howto manager. (line 756)
|
| +* BFD_RELOC_PPC_GOT_TPREL16_LO: howto manager. (line 755)
|
| +* BFD_RELOC_PPC_JMP_SLOT: howto manager. (line 669)
|
| +* BFD_RELOC_PPC_LOCAL24PC: howto manager. (line 671)
|
| +* BFD_RELOC_PPC_RELATIVE: howto manager. (line 670)
|
| +* BFD_RELOC_PPC_TLS: howto manager. (line 732)
|
| +* BFD_RELOC_PPC_TLSGD: howto manager. (line 733)
|
| +* BFD_RELOC_PPC_TLSLD: howto manager. (line 734)
|
| +* BFD_RELOC_PPC_TOC16: howto manager. (line 660)
|
| +* BFD_RELOC_PPC_TPREL: howto manager. (line 740)
|
| +* BFD_RELOC_PPC_TPREL16: howto manager. (line 736)
|
| +* BFD_RELOC_PPC_TPREL16_HA: howto manager. (line 739)
|
| +* BFD_RELOC_PPC_TPREL16_HI: howto manager. (line 738)
|
| +* BFD_RELOC_PPC_TPREL16_LO: howto manager. (line 737)
|
| +* BFD_RELOC_PPC_VLE_HA16A: howto manager. (line 695)
|
| +* BFD_RELOC_PPC_VLE_HA16D: howto manager. (line 696)
|
| +* BFD_RELOC_PPC_VLE_HI16A: howto manager. (line 693)
|
| +* BFD_RELOC_PPC_VLE_HI16D: howto manager. (line 694)
|
| +* BFD_RELOC_PPC_VLE_LO16A: howto manager. (line 691)
|
| +* BFD_RELOC_PPC_VLE_LO16D: howto manager. (line 692)
|
| +* BFD_RELOC_PPC_VLE_REL15: howto manager. (line 689)
|
| +* BFD_RELOC_PPC_VLE_REL24: howto manager. (line 690)
|
| +* BFD_RELOC_PPC_VLE_REL8: howto manager. (line 688)
|
| +* BFD_RELOC_PPC_VLE_SDA21: howto manager. (line 697)
|
| +* BFD_RELOC_PPC_VLE_SDA21_LO: howto manager. (line 698)
|
| +* BFD_RELOC_PPC_VLE_SDAREL_HA16A: howto manager. (line 703)
|
| +* BFD_RELOC_PPC_VLE_SDAREL_HA16D: howto manager. (line 704)
|
| +* BFD_RELOC_PPC_VLE_SDAREL_HI16A: howto manager. (line 701)
|
| +* BFD_RELOC_PPC_VLE_SDAREL_HI16D: howto manager. (line 702)
|
| +* BFD_RELOC_PPC_VLE_SDAREL_LO16A: howto manager. (line 699)
|
| +* BFD_RELOC_PPC_VLE_SDAREL_LO16D: howto manager. (line 700)
|
| +* BFD_RELOC_RELC: howto manager. (line 2416)
|
| +* BFD_RELOC_RL78_16_OP: howto manager. (line 1759)
|
| +* BFD_RELOC_RL78_16U: howto manager. (line 1763)
|
| +* BFD_RELOC_RL78_24_OP: howto manager. (line 1760)
|
| +* BFD_RELOC_RL78_24U: howto manager. (line 1764)
|
| +* BFD_RELOC_RL78_32_OP: howto manager. (line 1761)
|
| +* BFD_RELOC_RL78_8U: howto manager. (line 1762)
|
| +* BFD_RELOC_RL78_ABS16: howto manager. (line 1776)
|
| +* BFD_RELOC_RL78_ABS16_REV: howto manager. (line 1777)
|
| +* BFD_RELOC_RL78_ABS16U: howto manager. (line 1780)
|
| +* BFD_RELOC_RL78_ABS16UL: howto manager. (line 1782)
|
| +* BFD_RELOC_RL78_ABS16UW: howto manager. (line 1781)
|
| +* BFD_RELOC_RL78_ABS32: howto manager. (line 1778)
|
| +* BFD_RELOC_RL78_ABS32_REV: howto manager. (line 1779)
|
| +* BFD_RELOC_RL78_ABS8: howto manager. (line 1775)
|
| +* BFD_RELOC_RL78_CODE: howto manager. (line 1787)
|
| +* BFD_RELOC_RL78_DIFF: howto manager. (line 1766)
|
| +* BFD_RELOC_RL78_DIR3U_PCREL: howto manager. (line 1765)
|
| +* BFD_RELOC_RL78_GPRELB: howto manager. (line 1767)
|
| +* BFD_RELOC_RL78_GPRELL: howto manager. (line 1769)
|
| +* BFD_RELOC_RL78_GPRELW: howto manager. (line 1768)
|
| +* BFD_RELOC_RL78_HI16: howto manager. (line 1784)
|
| +* BFD_RELOC_RL78_HI8: howto manager. (line 1785)
|
| +* BFD_RELOC_RL78_LO16: howto manager. (line 1786)
|
| +* BFD_RELOC_RL78_NEG16: howto manager. (line 1756)
|
| +* BFD_RELOC_RL78_NEG24: howto manager. (line 1757)
|
| +* BFD_RELOC_RL78_NEG32: howto manager. (line 1758)
|
| +* BFD_RELOC_RL78_NEG8: howto manager. (line 1755)
|
| +* BFD_RELOC_RL78_OP_AND: howto manager. (line 1773)
|
| +* BFD_RELOC_RL78_OP_NEG: howto manager. (line 1772)
|
| +* BFD_RELOC_RL78_OP_SHRA: howto manager. (line 1774)
|
| +* BFD_RELOC_RL78_OP_SUBTRACT: howto manager. (line 1771)
|
| +* BFD_RELOC_RL78_RELAX: howto manager. (line 1783)
|
| +* BFD_RELOC_RL78_SYM: howto manager. (line 1770)
|
| +* BFD_RELOC_RVA: howto manager. (line 104)
|
| +* BFD_RELOC_RX_16_OP: howto manager. (line 1794)
|
| +* BFD_RELOC_RX_16U: howto manager. (line 1798)
|
| +* BFD_RELOC_RX_24_OP: howto manager. (line 1795)
|
| +* BFD_RELOC_RX_24U: howto manager. (line 1799)
|
| +* BFD_RELOC_RX_32_OP: howto manager. (line 1796)
|
| +* BFD_RELOC_RX_8U: howto manager. (line 1797)
|
| +* BFD_RELOC_RX_ABS16: howto manager. (line 1809)
|
| +* BFD_RELOC_RX_ABS16_REV: howto manager. (line 1810)
|
| +* BFD_RELOC_RX_ABS16U: howto manager. (line 1813)
|
| +* BFD_RELOC_RX_ABS16UL: howto manager. (line 1815)
|
| +* BFD_RELOC_RX_ABS16UW: howto manager. (line 1814)
|
| +* BFD_RELOC_RX_ABS32: howto manager. (line 1811)
|
| +* BFD_RELOC_RX_ABS32_REV: howto manager. (line 1812)
|
| +* BFD_RELOC_RX_ABS8: howto manager. (line 1808)
|
| +* BFD_RELOC_RX_DIFF: howto manager. (line 1801)
|
| +* BFD_RELOC_RX_DIR3U_PCREL: howto manager. (line 1800)
|
| +* BFD_RELOC_RX_GPRELB: howto manager. (line 1802)
|
| +* BFD_RELOC_RX_GPRELL: howto manager. (line 1804)
|
| +* BFD_RELOC_RX_GPRELW: howto manager. (line 1803)
|
| +* BFD_RELOC_RX_NEG16: howto manager. (line 1791)
|
| +* BFD_RELOC_RX_NEG24: howto manager. (line 1792)
|
| +* BFD_RELOC_RX_NEG32: howto manager. (line 1793)
|
| +* BFD_RELOC_RX_NEG8: howto manager. (line 1790)
|
| +* BFD_RELOC_RX_OP_NEG: howto manager. (line 1807)
|
| +* BFD_RELOC_RX_OP_SUBTRACT: howto manager. (line 1806)
|
| +* BFD_RELOC_RX_RELAX: howto manager. (line 1816)
|
| +* BFD_RELOC_RX_SYM: howto manager. (line 1805)
|
| +* BFD_RELOC_SCORE16_BRANCH: howto manager. (line 1959)
|
| +* BFD_RELOC_SCORE16_JMP: howto manager. (line 1956)
|
| +* BFD_RELOC_SCORE_BCMP: howto manager. (line 1962)
|
| +* BFD_RELOC_SCORE_BRANCH: howto manager. (line 1947)
|
| +* BFD_RELOC_SCORE_CALL15: howto manager. (line 1967)
|
| +* BFD_RELOC_SCORE_DUMMY2: howto manager. (line 1943)
|
| +* BFD_RELOC_SCORE_DUMMY_HI16: howto manager. (line 1968)
|
| +* BFD_RELOC_SCORE_GOT15: howto manager. (line 1965)
|
| +* BFD_RELOC_SCORE_GOT_LO16: howto manager. (line 1966)
|
| +* BFD_RELOC_SCORE_GPREL15: howto manager. (line 1940)
|
| +* BFD_RELOC_SCORE_IMM30: howto manager. (line 1950)
|
| +* BFD_RELOC_SCORE_IMM32: howto manager. (line 1953)
|
| +* BFD_RELOC_SCORE_JMP: howto manager. (line 1944)
|
| +* BFD_RELOC_SH_ALIGN: howto manager. (line 971)
|
| +* BFD_RELOC_SH_CODE: howto manager. (line 972)
|
| +* BFD_RELOC_SH_COPY: howto manager. (line 977)
|
| +* BFD_RELOC_SH_COPY64: howto manager. (line 1002)
|
| +* BFD_RELOC_SH_COUNT: howto manager. (line 970)
|
| +* BFD_RELOC_SH_DATA: howto manager. (line 973)
|
| +* BFD_RELOC_SH_DISP12: howto manager. (line 953)
|
| +* BFD_RELOC_SH_DISP12BY2: howto manager. (line 954)
|
| +* BFD_RELOC_SH_DISP12BY4: howto manager. (line 955)
|
| +* BFD_RELOC_SH_DISP12BY8: howto manager. (line 956)
|
| +* BFD_RELOC_SH_DISP20: howto manager. (line 957)
|
| +* BFD_RELOC_SH_DISP20BY8: howto manager. (line 958)
|
| +* BFD_RELOC_SH_FUNCDESC: howto manager. (line 1045)
|
| +* BFD_RELOC_SH_GLOB_DAT: howto manager. (line 978)
|
| +* BFD_RELOC_SH_GLOB_DAT64: howto manager. (line 1003)
|
| +* BFD_RELOC_SH_GOT10BY4: howto manager. (line 1006)
|
| +* BFD_RELOC_SH_GOT10BY8: howto manager. (line 1007)
|
| +* BFD_RELOC_SH_GOT20: howto manager. (line 1039)
|
| +* BFD_RELOC_SH_GOT_HI16: howto manager. (line 985)
|
| +* BFD_RELOC_SH_GOT_LOW16: howto manager. (line 982)
|
| +* BFD_RELOC_SH_GOT_MEDHI16: howto manager. (line 984)
|
| +* BFD_RELOC_SH_GOT_MEDLOW16: howto manager. (line 983)
|
| +* BFD_RELOC_SH_GOTFUNCDESC: howto manager. (line 1041)
|
| +* BFD_RELOC_SH_GOTFUNCDESC20: howto manager. (line 1042)
|
| +* BFD_RELOC_SH_GOTOFF20: howto manager. (line 1040)
|
| +* BFD_RELOC_SH_GOTOFF_HI16: howto manager. (line 997)
|
| +* BFD_RELOC_SH_GOTOFF_LOW16: howto manager. (line 994)
|
| +* BFD_RELOC_SH_GOTOFF_MEDHI16: howto manager. (line 996)
|
| +* BFD_RELOC_SH_GOTOFF_MEDLOW16: howto manager. (line 995)
|
| +* BFD_RELOC_SH_GOTOFFFUNCDESC: howto manager. (line 1043)
|
| +* BFD_RELOC_SH_GOTOFFFUNCDESC20: howto manager. (line 1044)
|
| +* BFD_RELOC_SH_GOTPC: howto manager. (line 981)
|
| +* BFD_RELOC_SH_GOTPC_HI16: howto manager. (line 1001)
|
| +* BFD_RELOC_SH_GOTPC_LOW16: howto manager. (line 998)
|
| +* BFD_RELOC_SH_GOTPC_MEDHI16: howto manager. (line 1000)
|
| +* BFD_RELOC_SH_GOTPC_MEDLOW16: howto manager. (line 999)
|
| +* BFD_RELOC_SH_GOTPLT10BY4: howto manager. (line 1008)
|
| +* BFD_RELOC_SH_GOTPLT10BY8: howto manager. (line 1009)
|
| +* BFD_RELOC_SH_GOTPLT32: howto manager. (line 1010)
|
| +* BFD_RELOC_SH_GOTPLT_HI16: howto manager. (line 989)
|
| +* BFD_RELOC_SH_GOTPLT_LOW16: howto manager. (line 986)
|
| +* BFD_RELOC_SH_GOTPLT_MEDHI16: howto manager. (line 988)
|
| +* BFD_RELOC_SH_GOTPLT_MEDLOW16: howto manager. (line 987)
|
| +* BFD_RELOC_SH_IMM3: howto manager. (line 951)
|
| +* BFD_RELOC_SH_IMM3U: howto manager. (line 952)
|
| +* BFD_RELOC_SH_IMM4: howto manager. (line 959)
|
| +* BFD_RELOC_SH_IMM4BY2: howto manager. (line 960)
|
| +* BFD_RELOC_SH_IMM4BY4: howto manager. (line 961)
|
| +* BFD_RELOC_SH_IMM8: howto manager. (line 962)
|
| +* BFD_RELOC_SH_IMM8BY2: howto manager. (line 963)
|
| +* BFD_RELOC_SH_IMM8BY4: howto manager. (line 964)
|
| +* BFD_RELOC_SH_IMM_HI16: howto manager. (line 1028)
|
| +* BFD_RELOC_SH_IMM_HI16_PCREL: howto manager. (line 1029)
|
| +* BFD_RELOC_SH_IMM_LOW16: howto manager. (line 1022)
|
| +* BFD_RELOC_SH_IMM_LOW16_PCREL: howto manager. (line 1023)
|
| +* BFD_RELOC_SH_IMM_MEDHI16: howto manager. (line 1026)
|
| +* BFD_RELOC_SH_IMM_MEDHI16_PCREL: howto manager. (line 1027)
|
| +* BFD_RELOC_SH_IMM_MEDLOW16: howto manager. (line 1024)
|
| +* BFD_RELOC_SH_IMM_MEDLOW16_PCREL: howto manager. (line 1025)
|
| +* BFD_RELOC_SH_IMMS10: howto manager. (line 1016)
|
| +* BFD_RELOC_SH_IMMS10BY2: howto manager. (line 1017)
|
| +* BFD_RELOC_SH_IMMS10BY4: howto manager. (line 1018)
|
| +* BFD_RELOC_SH_IMMS10BY8: howto manager. (line 1019)
|
| +* BFD_RELOC_SH_IMMS16: howto manager. (line 1020)
|
| +* BFD_RELOC_SH_IMMS6: howto manager. (line 1013)
|
| +* BFD_RELOC_SH_IMMS6BY32: howto manager. (line 1014)
|
| +* BFD_RELOC_SH_IMMU16: howto manager. (line 1021)
|
| +* BFD_RELOC_SH_IMMU5: howto manager. (line 1012)
|
| +* BFD_RELOC_SH_IMMU6: howto manager. (line 1015)
|
| +* BFD_RELOC_SH_JMP_SLOT: howto manager. (line 979)
|
| +* BFD_RELOC_SH_JMP_SLOT64: howto manager. (line 1004)
|
| +* BFD_RELOC_SH_LABEL: howto manager. (line 974)
|
| +* BFD_RELOC_SH_LOOP_END: howto manager. (line 976)
|
| +* BFD_RELOC_SH_LOOP_START: howto manager. (line 975)
|
| +* BFD_RELOC_SH_PCDISP12BY2: howto manager. (line 950)
|
| +* BFD_RELOC_SH_PCDISP8BY2: howto manager. (line 949)
|
| +* BFD_RELOC_SH_PCRELIMM8BY2: howto manager. (line 965)
|
| +* BFD_RELOC_SH_PCRELIMM8BY4: howto manager. (line 966)
|
| +* BFD_RELOC_SH_PLT_HI16: howto manager. (line 993)
|
| +* BFD_RELOC_SH_PLT_LOW16: howto manager. (line 990)
|
| +* BFD_RELOC_SH_PLT_MEDHI16: howto manager. (line 992)
|
| +* BFD_RELOC_SH_PLT_MEDLOW16: howto manager. (line 991)
|
| +* BFD_RELOC_SH_PT_16: howto manager. (line 1030)
|
| +* BFD_RELOC_SH_RELATIVE: howto manager. (line 980)
|
| +* BFD_RELOC_SH_RELATIVE64: howto manager. (line 1005)
|
| +* BFD_RELOC_SH_SHMEDIA_CODE: howto manager. (line 1011)
|
| +* BFD_RELOC_SH_SWITCH16: howto manager. (line 967)
|
| +* BFD_RELOC_SH_SWITCH32: howto manager. (line 968)
|
| +* BFD_RELOC_SH_TLS_DTPMOD32: howto manager. (line 1036)
|
| +* BFD_RELOC_SH_TLS_DTPOFF32: howto manager. (line 1037)
|
| +* BFD_RELOC_SH_TLS_GD_32: howto manager. (line 1031)
|
| +* BFD_RELOC_SH_TLS_IE_32: howto manager. (line 1034)
|
| +* BFD_RELOC_SH_TLS_LD_32: howto manager. (line 1032)
|
| +* BFD_RELOC_SH_TLS_LDO_32: howto manager. (line 1033)
|
| +* BFD_RELOC_SH_TLS_LE_32: howto manager. (line 1035)
|
| +* BFD_RELOC_SH_TLS_TPOFF32: howto manager. (line 1038)
|
| +* BFD_RELOC_SH_USES: howto manager. (line 969)
|
| +* BFD_RELOC_SIZE32: howto manager. (line 74)
|
| +* BFD_RELOC_SIZE64: howto manager. (line 75)
|
| +* BFD_RELOC_SPARC13: howto manager. (line 138)
|
| +* BFD_RELOC_SPARC22: howto manager. (line 137)
|
| +* BFD_RELOC_SPARC_10: howto manager. (line 167)
|
| +* BFD_RELOC_SPARC_11: howto manager. (line 168)
|
| +* BFD_RELOC_SPARC_5: howto manager. (line 180)
|
| +* BFD_RELOC_SPARC_6: howto manager. (line 179)
|
| +* BFD_RELOC_SPARC_64: howto manager. (line 166)
|
| +* BFD_RELOC_SPARC_7: howto manager. (line 178)
|
| +* BFD_RELOC_SPARC_BASE13: howto manager. (line 162)
|
| +* BFD_RELOC_SPARC_BASE22: howto manager. (line 163)
|
| +* BFD_RELOC_SPARC_COPY: howto manager. (line 145)
|
| +* BFD_RELOC_SPARC_DISP64: howto manager. (line 181)
|
| +* BFD_RELOC_SPARC_GLOB_DAT: howto manager. (line 146)
|
| +* BFD_RELOC_SPARC_GOT10: howto manager. (line 139)
|
| +* BFD_RELOC_SPARC_GOT13: howto manager. (line 140)
|
| +* BFD_RELOC_SPARC_GOT22: howto manager. (line 141)
|
| +* BFD_RELOC_SPARC_GOTDATA_HIX22: howto manager. (line 152)
|
| +* BFD_RELOC_SPARC_GOTDATA_LOX10: howto manager. (line 153)
|
| +* BFD_RELOC_SPARC_GOTDATA_OP: howto manager. (line 156)
|
| +* BFD_RELOC_SPARC_GOTDATA_OP_HIX22: howto manager. (line 154)
|
| +* BFD_RELOC_SPARC_GOTDATA_OP_LOX10: howto manager. (line 155)
|
| +* BFD_RELOC_SPARC_H34: howto manager. (line 190)
|
| +* BFD_RELOC_SPARC_H44: howto manager. (line 186)
|
| +* BFD_RELOC_SPARC_HH22: howto manager. (line 170)
|
| +* BFD_RELOC_SPARC_HIX22: howto manager. (line 184)
|
| +* BFD_RELOC_SPARC_HM10: howto manager. (line 171)
|
| +* BFD_RELOC_SPARC_IRELATIVE: howto manager. (line 158)
|
| +* BFD_RELOC_SPARC_JMP_IREL: howto manager. (line 157)
|
| +* BFD_RELOC_SPARC_JMP_SLOT: howto manager. (line 147)
|
| +* BFD_RELOC_SPARC_L44: howto manager. (line 188)
|
| +* BFD_RELOC_SPARC_LM22: howto manager. (line 172)
|
| +* BFD_RELOC_SPARC_LOX10: howto manager. (line 185)
|
| +* BFD_RELOC_SPARC_M44: howto manager. (line 187)
|
| +* BFD_RELOC_SPARC_OLO10: howto manager. (line 169)
|
| +* BFD_RELOC_SPARC_PC10: howto manager. (line 142)
|
| +* BFD_RELOC_SPARC_PC22: howto manager. (line 143)
|
| +* BFD_RELOC_SPARC_PC_HH22: howto manager. (line 173)
|
| +* BFD_RELOC_SPARC_PC_HM10: howto manager. (line 174)
|
| +* BFD_RELOC_SPARC_PC_LM22: howto manager. (line 175)
|
| +* BFD_RELOC_SPARC_PLT32: howto manager. (line 182)
|
| +* BFD_RELOC_SPARC_PLT64: howto manager. (line 183)
|
| +* BFD_RELOC_SPARC_REGISTER: howto manager. (line 189)
|
| +* BFD_RELOC_SPARC_RELATIVE: howto manager. (line 148)
|
| +* BFD_RELOC_SPARC_REV32: howto manager. (line 196)
|
| +* BFD_RELOC_SPARC_SIZE32: howto manager. (line 191)
|
| +* BFD_RELOC_SPARC_SIZE64: howto manager. (line 192)
|
| +* BFD_RELOC_SPARC_TLS_DTPMOD32: howto manager. (line 217)
|
| +* BFD_RELOC_SPARC_TLS_DTPMOD64: howto manager. (line 218)
|
| +* BFD_RELOC_SPARC_TLS_DTPOFF32: howto manager. (line 219)
|
| +* BFD_RELOC_SPARC_TLS_DTPOFF64: howto manager. (line 220)
|
| +* BFD_RELOC_SPARC_TLS_GD_ADD: howto manager. (line 201)
|
| +* BFD_RELOC_SPARC_TLS_GD_CALL: howto manager. (line 202)
|
| +* BFD_RELOC_SPARC_TLS_GD_HI22: howto manager. (line 199)
|
| +* BFD_RELOC_SPARC_TLS_GD_LO10: howto manager. (line 200)
|
| +* BFD_RELOC_SPARC_TLS_IE_ADD: howto manager. (line 214)
|
| +* BFD_RELOC_SPARC_TLS_IE_HI22: howto manager. (line 210)
|
| +* BFD_RELOC_SPARC_TLS_IE_LD: howto manager. (line 212)
|
| +* BFD_RELOC_SPARC_TLS_IE_LDX: howto manager. (line 213)
|
| +* BFD_RELOC_SPARC_TLS_IE_LO10: howto manager. (line 211)
|
| +* BFD_RELOC_SPARC_TLS_LDM_ADD: howto manager. (line 205)
|
| +* BFD_RELOC_SPARC_TLS_LDM_CALL: howto manager. (line 206)
|
| +* BFD_RELOC_SPARC_TLS_LDM_HI22: howto manager. (line 203)
|
| +* BFD_RELOC_SPARC_TLS_LDM_LO10: howto manager. (line 204)
|
| +* BFD_RELOC_SPARC_TLS_LDO_ADD: howto manager. (line 209)
|
| +* BFD_RELOC_SPARC_TLS_LDO_HIX22: howto manager. (line 207)
|
| +* BFD_RELOC_SPARC_TLS_LDO_LOX10: howto manager. (line 208)
|
| +* BFD_RELOC_SPARC_TLS_LE_HIX22: howto manager. (line 215)
|
| +* BFD_RELOC_SPARC_TLS_LE_LOX10: howto manager. (line 216)
|
| +* BFD_RELOC_SPARC_TLS_TPOFF32: howto manager. (line 221)
|
| +* BFD_RELOC_SPARC_TLS_TPOFF64: howto manager. (line 222)
|
| +* BFD_RELOC_SPARC_UA16: howto manager. (line 149)
|
| +* BFD_RELOC_SPARC_UA32: howto manager. (line 150)
|
| +* BFD_RELOC_SPARC_UA64: howto manager. (line 151)
|
| +* BFD_RELOC_SPARC_WDISP10: howto manager. (line 193)
|
| +* BFD_RELOC_SPARC_WDISP16: howto manager. (line 176)
|
| +* BFD_RELOC_SPARC_WDISP19: howto manager. (line 177)
|
| +* BFD_RELOC_SPARC_WDISP22: howto manager. (line 136)
|
| +* BFD_RELOC_SPARC_WPLT30: howto manager. (line 144)
|
| +* BFD_RELOC_SPU_ADD_PIC: howto manager. (line 239)
|
| +* BFD_RELOC_SPU_HI16: howto manager. (line 236)
|
| +* BFD_RELOC_SPU_IMM10: howto manager. (line 227)
|
| +* BFD_RELOC_SPU_IMM10W: howto manager. (line 228)
|
| +* BFD_RELOC_SPU_IMM16: howto manager. (line 229)
|
| +* BFD_RELOC_SPU_IMM16W: howto manager. (line 230)
|
| +* BFD_RELOC_SPU_IMM18: howto manager. (line 231)
|
| +* BFD_RELOC_SPU_IMM7: howto manager. (line 225)
|
| +* BFD_RELOC_SPU_IMM8: howto manager. (line 226)
|
| +* BFD_RELOC_SPU_LO16: howto manager. (line 235)
|
| +* BFD_RELOC_SPU_PCREL16: howto manager. (line 234)
|
| +* BFD_RELOC_SPU_PCREL9a: howto manager. (line 232)
|
| +* BFD_RELOC_SPU_PCREL9b: howto manager. (line 233)
|
| +* BFD_RELOC_SPU_PPU32: howto manager. (line 237)
|
| +* BFD_RELOC_SPU_PPU64: howto manager. (line 238)
|
| +* BFD_RELOC_THUMB_PCREL_BLX: howto manager. (line 798)
|
| +* BFD_RELOC_THUMB_PCREL_BRANCH12: howto manager. (line 812)
|
| +* BFD_RELOC_THUMB_PCREL_BRANCH20: howto manager. (line 813)
|
| +* BFD_RELOC_THUMB_PCREL_BRANCH23: howto manager. (line 814)
|
| +* BFD_RELOC_THUMB_PCREL_BRANCH25: howto manager. (line 815)
|
| +* BFD_RELOC_THUMB_PCREL_BRANCH7: howto manager. (line 810)
|
| +* BFD_RELOC_THUMB_PCREL_BRANCH9: howto manager. (line 811)
|
| +* BFD_RELOC_TIC30_LDP: howto manager. (line 1430)
|
| +* BFD_RELOC_TIC54X_16_OF_23: howto manager. (line 1448)
|
| +* BFD_RELOC_TIC54X_23: howto manager. (line 1445)
|
| +* BFD_RELOC_TIC54X_MS7_OF_23: howto manager. (line 1453)
|
| +* BFD_RELOC_TIC54X_PARTLS7: howto manager. (line 1435)
|
| +* BFD_RELOC_TIC54X_PARTMS9: howto manager. (line 1440)
|
| +* BFD_RELOC_TILEGX_BROFF_X1: howto manager. (line 3132)
|
| +* BFD_RELOC_TILEGX_COPY: howto manager. (line 3128)
|
| +* BFD_RELOC_TILEGX_DEST_IMM8_X1: howto manager. (line 3139)
|
| +* BFD_RELOC_TILEGX_GLOB_DAT: howto manager. (line 3129)
|
| +* BFD_RELOC_TILEGX_HW0: howto manager. (line 3121)
|
| +* BFD_RELOC_TILEGX_HW0_LAST: howto manager. (line 3125)
|
| +* BFD_RELOC_TILEGX_HW1: howto manager. (line 3122)
|
| +* BFD_RELOC_TILEGX_HW1_LAST: howto manager. (line 3126)
|
| +* BFD_RELOC_TILEGX_HW2: howto manager. (line 3123)
|
| +* BFD_RELOC_TILEGX_HW2_LAST: howto manager. (line 3127)
|
| +* BFD_RELOC_TILEGX_HW3: howto manager. (line 3124)
|
| +* BFD_RELOC_TILEGX_IMM16_X0_HW0: howto manager. (line 3148)
|
| +* BFD_RELOC_TILEGX_IMM16_X0_HW0_GOT: howto manager. (line 3176)
|
| +* BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST: howto manager. (line 3156)
|
| +* BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_GOT: howto manager. (line 3184)
|
| +* BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_PCREL: howto manager. (line 3170)
|
| +* BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_PLT_PCREL: howto manager.
|
| + (line 3204)
|
| +* BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_GD: howto manager. (line 3198)
|
| +* BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_IE: howto manager. (line 3210)
|
| +* BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_LE: howto manager. (line 3194)
|
| +* BFD_RELOC_TILEGX_IMM16_X0_HW0_PCREL: howto manager. (line 3162)
|
| +* BFD_RELOC_TILEGX_IMM16_X0_HW0_PLT_PCREL: howto manager. (line 3178)
|
| +* BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_GD: howto manager. (line 3190)
|
| +* BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_IE: howto manager. (line 3202)
|
| +* BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_LE: howto manager. (line 3192)
|
| +* BFD_RELOC_TILEGX_IMM16_X0_HW1: howto manager. (line 3150)
|
| +* BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST: howto manager. (line 3158)
|
| +* BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_GOT: howto manager. (line 3186)
|
| +* BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_PCREL: howto manager. (line 3172)
|
| +* BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_PLT_PCREL: howto manager.
|
| + (line 3206)
|
| +* BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_GD: howto manager. (line 3200)
|
| +* BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_IE: howto manager. (line 3212)
|
| +* BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_LE: howto manager. (line 3196)
|
| +* BFD_RELOC_TILEGX_IMM16_X0_HW1_PCREL: howto manager. (line 3164)
|
| +* BFD_RELOC_TILEGX_IMM16_X0_HW1_PLT_PCREL: howto manager. (line 3180)
|
| +* BFD_RELOC_TILEGX_IMM16_X0_HW2: howto manager. (line 3152)
|
| +* BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST: howto manager. (line 3160)
|
| +* BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST_PCREL: howto manager. (line 3174)
|
| +* BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST_PLT_PCREL: howto manager.
|
| + (line 3208)
|
| +* BFD_RELOC_TILEGX_IMM16_X0_HW2_PCREL: howto manager. (line 3166)
|
| +* BFD_RELOC_TILEGX_IMM16_X0_HW2_PLT_PCREL: howto manager. (line 3182)
|
| +* BFD_RELOC_TILEGX_IMM16_X0_HW3: howto manager. (line 3154)
|
| +* BFD_RELOC_TILEGX_IMM16_X0_HW3_PCREL: howto manager. (line 3168)
|
| +* BFD_RELOC_TILEGX_IMM16_X0_HW3_PLT_PCREL: howto manager. (line 3188)
|
| +* BFD_RELOC_TILEGX_IMM16_X1_HW0: howto manager. (line 3149)
|
| +* BFD_RELOC_TILEGX_IMM16_X1_HW0_GOT: howto manager. (line 3177)
|
| +* BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST: howto manager. (line 3157)
|
| +* BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_GOT: howto manager. (line 3185)
|
| +* BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_PCREL: howto manager. (line 3171)
|
| +* BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_PLT_PCREL: howto manager.
|
| + (line 3205)
|
| +* BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_GD: howto manager. (line 3199)
|
| +* BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_IE: howto manager. (line 3211)
|
| +* BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_LE: howto manager. (line 3195)
|
| +* BFD_RELOC_TILEGX_IMM16_X1_HW0_PCREL: howto manager. (line 3163)
|
| +* BFD_RELOC_TILEGX_IMM16_X1_HW0_PLT_PCREL: howto manager. (line 3179)
|
| +* BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_GD: howto manager. (line 3191)
|
| +* BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_IE: howto manager. (line 3203)
|
| +* BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_LE: howto manager. (line 3193)
|
| +* BFD_RELOC_TILEGX_IMM16_X1_HW1: howto manager. (line 3151)
|
| +* BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST: howto manager. (line 3159)
|
| +* BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_GOT: howto manager. (line 3187)
|
| +* BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_PCREL: howto manager. (line 3173)
|
| +* BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_PLT_PCREL: howto manager.
|
| + (line 3207)
|
| +* BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_GD: howto manager. (line 3201)
|
| +* BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_IE: howto manager. (line 3213)
|
| +* BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_LE: howto manager. (line 3197)
|
| +* BFD_RELOC_TILEGX_IMM16_X1_HW1_PCREL: howto manager. (line 3165)
|
| +* BFD_RELOC_TILEGX_IMM16_X1_HW1_PLT_PCREL: howto manager. (line 3181)
|
| +* BFD_RELOC_TILEGX_IMM16_X1_HW2: howto manager. (line 3153)
|
| +* BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST: howto manager. (line 3161)
|
| +* BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST_PCREL: howto manager. (line 3175)
|
| +* BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST_PLT_PCREL: howto manager.
|
| + (line 3209)
|
| +* BFD_RELOC_TILEGX_IMM16_X1_HW2_PCREL: howto manager. (line 3167)
|
| +* BFD_RELOC_TILEGX_IMM16_X1_HW2_PLT_PCREL: howto manager. (line 3183)
|
| +* BFD_RELOC_TILEGX_IMM16_X1_HW3: howto manager. (line 3155)
|
| +* BFD_RELOC_TILEGX_IMM16_X1_HW3_PCREL: howto manager. (line 3169)
|
| +* BFD_RELOC_TILEGX_IMM16_X1_HW3_PLT_PCREL: howto manager. (line 3189)
|
| +* BFD_RELOC_TILEGX_IMM8_X0: howto manager. (line 3135)
|
| +* BFD_RELOC_TILEGX_IMM8_X0_TLS_ADD: howto manager. (line 3226)
|
| +* BFD_RELOC_TILEGX_IMM8_X0_TLS_GD_ADD: howto manager. (line 3221)
|
| +* BFD_RELOC_TILEGX_IMM8_X1: howto manager. (line 3137)
|
| +* BFD_RELOC_TILEGX_IMM8_X1_TLS_ADD: howto manager. (line 3227)
|
| +* BFD_RELOC_TILEGX_IMM8_X1_TLS_GD_ADD: howto manager. (line 3222)
|
| +* BFD_RELOC_TILEGX_IMM8_Y0: howto manager. (line 3136)
|
| +* BFD_RELOC_TILEGX_IMM8_Y0_TLS_ADD: howto manager. (line 3228)
|
| +* BFD_RELOC_TILEGX_IMM8_Y0_TLS_GD_ADD: howto manager. (line 3223)
|
| +* BFD_RELOC_TILEGX_IMM8_Y1: howto manager. (line 3138)
|
| +* BFD_RELOC_TILEGX_IMM8_Y1_TLS_ADD: howto manager. (line 3229)
|
| +* BFD_RELOC_TILEGX_IMM8_Y1_TLS_GD_ADD: howto manager. (line 3224)
|
| +* BFD_RELOC_TILEGX_JMP_SLOT: howto manager. (line 3130)
|
| +* BFD_RELOC_TILEGX_JUMPOFF_X1: howto manager. (line 3133)
|
| +* BFD_RELOC_TILEGX_JUMPOFF_X1_PLT: howto manager. (line 3134)
|
| +* BFD_RELOC_TILEGX_MF_IMM14_X1: howto manager. (line 3141)
|
| +* BFD_RELOC_TILEGX_MMEND_X0: howto manager. (line 3143)
|
| +* BFD_RELOC_TILEGX_MMSTART_X0: howto manager. (line 3142)
|
| +* BFD_RELOC_TILEGX_MT_IMM14_X1: howto manager. (line 3140)
|
| +* BFD_RELOC_TILEGX_RELATIVE: howto manager. (line 3131)
|
| +* BFD_RELOC_TILEGX_SHAMT_X0: howto manager. (line 3144)
|
| +* BFD_RELOC_TILEGX_SHAMT_X1: howto manager. (line 3145)
|
| +* BFD_RELOC_TILEGX_SHAMT_Y0: howto manager. (line 3146)
|
| +* BFD_RELOC_TILEGX_SHAMT_Y1: howto manager. (line 3147)
|
| +* BFD_RELOC_TILEGX_TLS_DTPMOD32: howto manager. (line 3217)
|
| +* BFD_RELOC_TILEGX_TLS_DTPMOD64: howto manager. (line 3214)
|
| +* BFD_RELOC_TILEGX_TLS_DTPOFF32: howto manager. (line 3218)
|
| +* BFD_RELOC_TILEGX_TLS_DTPOFF64: howto manager. (line 3215)
|
| +* BFD_RELOC_TILEGX_TLS_GD_CALL: howto manager. (line 3220)
|
| +* BFD_RELOC_TILEGX_TLS_IE_LOAD: howto manager. (line 3225)
|
| +* BFD_RELOC_TILEGX_TLS_TPOFF32: howto manager. (line 3219)
|
| +* BFD_RELOC_TILEGX_TLS_TPOFF64: howto manager. (line 3216)
|
| +* BFD_RELOC_TILEPRO_BROFF_X1: howto manager. (line 3044)
|
| +* BFD_RELOC_TILEPRO_COPY: howto manager. (line 3040)
|
| +* BFD_RELOC_TILEPRO_DEST_IMM8_X1: howto manager. (line 3051)
|
| +* BFD_RELOC_TILEPRO_GLOB_DAT: howto manager. (line 3041)
|
| +* BFD_RELOC_TILEPRO_IMM16_X0: howto manager. (line 3054)
|
| +* BFD_RELOC_TILEPRO_IMM16_X0_GOT: howto manager. (line 3070)
|
| +* BFD_RELOC_TILEPRO_IMM16_X0_GOT_HA: howto manager. (line 3076)
|
| +* BFD_RELOC_TILEPRO_IMM16_X0_GOT_HI: howto manager. (line 3074)
|
| +* BFD_RELOC_TILEPRO_IMM16_X0_GOT_LO: howto manager. (line 3072)
|
| +* BFD_RELOC_TILEPRO_IMM16_X0_HA: howto manager. (line 3060)
|
| +* BFD_RELOC_TILEPRO_IMM16_X0_HA_PCREL: howto manager. (line 3068)
|
| +* BFD_RELOC_TILEPRO_IMM16_X0_HI: howto manager. (line 3058)
|
| +* BFD_RELOC_TILEPRO_IMM16_X0_HI_PCREL: howto manager. (line 3066)
|
| +* BFD_RELOC_TILEPRO_IMM16_X0_LO: howto manager. (line 3056)
|
| +* BFD_RELOC_TILEPRO_IMM16_X0_LO_PCREL: howto manager. (line 3064)
|
| +* BFD_RELOC_TILEPRO_IMM16_X0_PCREL: howto manager. (line 3062)
|
| +* BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD: howto manager. (line 3092)
|
| +* BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_HA: howto manager. (line 3098)
|
| +* BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_HI: howto manager. (line 3096)
|
| +* BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_LO: howto manager. (line 3094)
|
| +* BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE: howto manager. (line 3100)
|
| +* BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE_HA: howto manager. (line 3106)
|
| +* BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE_HI: howto manager. (line 3104)
|
| +* BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE_LO: howto manager. (line 3102)
|
| +* BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE: howto manager. (line 3111)
|
| +* BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE_HA: howto manager. (line 3117)
|
| +* BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE_HI: howto manager. (line 3115)
|
| +* BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE_LO: howto manager. (line 3113)
|
| +* BFD_RELOC_TILEPRO_IMM16_X1: howto manager. (line 3055)
|
| +* BFD_RELOC_TILEPRO_IMM16_X1_GOT: howto manager. (line 3071)
|
| +* BFD_RELOC_TILEPRO_IMM16_X1_GOT_HA: howto manager. (line 3077)
|
| +* BFD_RELOC_TILEPRO_IMM16_X1_GOT_HI: howto manager. (line 3075)
|
| +* BFD_RELOC_TILEPRO_IMM16_X1_GOT_LO: howto manager. (line 3073)
|
| +* BFD_RELOC_TILEPRO_IMM16_X1_HA: howto manager. (line 3061)
|
| +* BFD_RELOC_TILEPRO_IMM16_X1_HA_PCREL: howto manager. (line 3069)
|
| +* BFD_RELOC_TILEPRO_IMM16_X1_HI: howto manager. (line 3059)
|
| +* BFD_RELOC_TILEPRO_IMM16_X1_HI_PCREL: howto manager. (line 3067)
|
| +* BFD_RELOC_TILEPRO_IMM16_X1_LO: howto manager. (line 3057)
|
| +* BFD_RELOC_TILEPRO_IMM16_X1_LO_PCREL: howto manager. (line 3065)
|
| +* BFD_RELOC_TILEPRO_IMM16_X1_PCREL: howto manager. (line 3063)
|
| +* BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD: howto manager. (line 3093)
|
| +* BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD_HA: howto manager. (line 3099)
|
| +* BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD_HI: howto manager. (line 3097)
|
| +* BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD_LO: howto manager. (line 3095)
|
| +* BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE: howto manager. (line 3101)
|
| +* BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE_HA: howto manager. (line 3107)
|
| +* BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE_HI: howto manager. (line 3105)
|
| +* BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE_LO: howto manager. (line 3103)
|
| +* BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE: howto manager. (line 3112)
|
| +* BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE_HA: howto manager. (line 3118)
|
| +* BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE_HI: howto manager. (line 3116)
|
| +* BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE_LO: howto manager. (line 3114)
|
| +* BFD_RELOC_TILEPRO_IMM8_X0: howto manager. (line 3047)
|
| +* BFD_RELOC_TILEPRO_IMM8_X0_TLS_GD_ADD: howto manager. (line 3087)
|
| +* BFD_RELOC_TILEPRO_IMM8_X1: howto manager. (line 3049)
|
| +* BFD_RELOC_TILEPRO_IMM8_X1_TLS_GD_ADD: howto manager. (line 3088)
|
| +* BFD_RELOC_TILEPRO_IMM8_Y0: howto manager. (line 3048)
|
| +* BFD_RELOC_TILEPRO_IMM8_Y0_TLS_GD_ADD: howto manager. (line 3089)
|
| +* BFD_RELOC_TILEPRO_IMM8_Y1: howto manager. (line 3050)
|
| +* BFD_RELOC_TILEPRO_IMM8_Y1_TLS_GD_ADD: howto manager. (line 3090)
|
| +* BFD_RELOC_TILEPRO_JMP_SLOT: howto manager. (line 3042)
|
| +* BFD_RELOC_TILEPRO_JOFFLONG_X1: howto manager. (line 3045)
|
| +* BFD_RELOC_TILEPRO_JOFFLONG_X1_PLT: howto manager. (line 3046)
|
| +* BFD_RELOC_TILEPRO_MF_IMM15_X1: howto manager. (line 3053)
|
| +* BFD_RELOC_TILEPRO_MMEND_X0: howto manager. (line 3079)
|
| +* BFD_RELOC_TILEPRO_MMEND_X1: howto manager. (line 3081)
|
| +* BFD_RELOC_TILEPRO_MMSTART_X0: howto manager. (line 3078)
|
| +* BFD_RELOC_TILEPRO_MMSTART_X1: howto manager. (line 3080)
|
| +* BFD_RELOC_TILEPRO_MT_IMM15_X1: howto manager. (line 3052)
|
| +* BFD_RELOC_TILEPRO_RELATIVE: howto manager. (line 3043)
|
| +* BFD_RELOC_TILEPRO_SHAMT_X0: howto manager. (line 3082)
|
| +* BFD_RELOC_TILEPRO_SHAMT_X1: howto manager. (line 3083)
|
| +* BFD_RELOC_TILEPRO_SHAMT_Y0: howto manager. (line 3084)
|
| +* BFD_RELOC_TILEPRO_SHAMT_Y1: howto manager. (line 3085)
|
| +* BFD_RELOC_TILEPRO_TLS_DTPMOD32: howto manager. (line 3108)
|
| +* BFD_RELOC_TILEPRO_TLS_DTPOFF32: howto manager. (line 3109)
|
| +* BFD_RELOC_TILEPRO_TLS_GD_CALL: howto manager. (line 3086)
|
| +* BFD_RELOC_TILEPRO_TLS_IE_LOAD: howto manager. (line 3091)
|
| +* BFD_RELOC_TILEPRO_TLS_TPOFF32: howto manager. (line 3110)
|
| +* bfd_reloc_type_lookup: howto manager. (line 3255)
|
| +* BFD_RELOC_V850_16_GOT: howto manager. (line 1394)
|
| +* BFD_RELOC_V850_16_GOTOFF: howto manager. (line 1418)
|
| +* BFD_RELOC_V850_16_PCREL: howto manager. (line 1364)
|
| +* BFD_RELOC_V850_16_S1: howto manager. (line 1382)
|
| +* BFD_RELOC_V850_16_SPLIT_OFFSET: howto manager. (line 1379)
|
| +* BFD_RELOC_V850_17_PCREL: howto manager. (line 1367)
|
| +* BFD_RELOC_V850_22_PCREL: howto manager. (line 1299)
|
| +* BFD_RELOC_V850_22_PLT_PCREL: howto manager. (line 1400)
|
| +* BFD_RELOC_V850_23: howto manager. (line 1370)
|
| +* BFD_RELOC_V850_32_ABS: howto manager. (line 1376)
|
| +* BFD_RELOC_V850_32_GOT: howto manager. (line 1397)
|
| +* BFD_RELOC_V850_32_GOTOFF: howto manager. (line 1421)
|
| +* BFD_RELOC_V850_32_GOTPCREL: howto manager. (line 1391)
|
| +* BFD_RELOC_V850_32_PCREL: howto manager. (line 1373)
|
| +* BFD_RELOC_V850_32_PLT_PCREL: howto manager. (line 1403)
|
| +* BFD_RELOC_V850_9_PCREL: howto manager. (line 1296)
|
| +* BFD_RELOC_V850_ALIGN: howto manager. (line 1357)
|
| +* BFD_RELOC_V850_CALLT_15_16_OFFSET: howto manager. (line 1388)
|
| +* BFD_RELOC_V850_CALLT_16_16_OFFSET: howto manager. (line 1348)
|
| +* BFD_RELOC_V850_CALLT_6_7_OFFSET: howto manager. (line 1345)
|
| +* BFD_RELOC_V850_CODE: howto manager. (line 1424)
|
| +* BFD_RELOC_V850_COPY: howto manager. (line 1406)
|
| +* BFD_RELOC_V850_DATA: howto manager. (line 1427)
|
| +* BFD_RELOC_V850_GLOB_DAT: howto manager. (line 1409)
|
| +* BFD_RELOC_V850_JMP_SLOT: howto manager. (line 1412)
|
| +* BFD_RELOC_V850_LO16_S1: howto manager. (line 1385)
|
| +* BFD_RELOC_V850_LO16_SPLIT_OFFSET: howto manager. (line 1360)
|
| +* BFD_RELOC_V850_LONGCALL: howto manager. (line 1351)
|
| +* BFD_RELOC_V850_LONGJUMP: howto manager. (line 1354)
|
| +* BFD_RELOC_V850_RELATIVE: howto manager. (line 1415)
|
| +* BFD_RELOC_V850_SDA_15_16_OFFSET: howto manager. (line 1305)
|
| +* BFD_RELOC_V850_SDA_16_16_OFFSET: howto manager. (line 1302)
|
| +* BFD_RELOC_V850_SDA_16_16_SPLIT_OFFSET: howto manager. (line 1337)
|
| +* BFD_RELOC_V850_TDA_16_16_OFFSET: howto manager. (line 1327)
|
| +* BFD_RELOC_V850_TDA_4_4_OFFSET: howto manager. (line 1334)
|
| +* BFD_RELOC_V850_TDA_4_5_OFFSET: howto manager. (line 1330)
|
| +* BFD_RELOC_V850_TDA_6_8_OFFSET: howto manager. (line 1316)
|
| +* BFD_RELOC_V850_TDA_7_7_OFFSET: howto manager. (line 1324)
|
| +* BFD_RELOC_V850_TDA_7_8_OFFSET: howto manager. (line 1320)
|
| +* BFD_RELOC_V850_ZDA_15_16_OFFSET: howto manager. (line 1312)
|
| +* BFD_RELOC_V850_ZDA_16_16_OFFSET: howto manager. (line 1309)
|
| +* BFD_RELOC_V850_ZDA_16_16_SPLIT_OFFSET: howto manager. (line 1341)
|
| +* BFD_RELOC_VAX_GLOB_DAT: howto manager. (line 2425)
|
| +* BFD_RELOC_VAX_JMP_SLOT: howto manager. (line 2426)
|
| +* BFD_RELOC_VAX_RELATIVE: howto manager. (line 2427)
|
| +* BFD_RELOC_VPE4KMATH_DATA: howto manager. (line 2001)
|
| +* BFD_RELOC_VPE4KMATH_INSN: howto manager. (line 2002)
|
| +* BFD_RELOC_VTABLE_ENTRY: howto manager. (line 2006)
|
| +* BFD_RELOC_VTABLE_INHERIT: howto manager. (line 2005)
|
| +* BFD_RELOC_X86_64_32S: howto manager. (line 608)
|
| +* BFD_RELOC_X86_64_COPY: howto manager. (line 603)
|
| +* BFD_RELOC_X86_64_DTPMOD64: howto manager. (line 609)
|
| +* BFD_RELOC_X86_64_DTPOFF32: howto manager. (line 614)
|
| +* BFD_RELOC_X86_64_DTPOFF64: howto manager. (line 610)
|
| +* BFD_RELOC_X86_64_GLOB_DAT: howto manager. (line 604)
|
| +* BFD_RELOC_X86_64_GOT32: howto manager. (line 601)
|
| +* BFD_RELOC_X86_64_GOT64: howto manager. (line 619)
|
| +* BFD_RELOC_X86_64_GOTOFF64: howto manager. (line 617)
|
| +* BFD_RELOC_X86_64_GOTPC32: howto manager. (line 618)
|
| +* BFD_RELOC_X86_64_GOTPC32_TLSDESC: howto manager. (line 624)
|
| +* BFD_RELOC_X86_64_GOTPC64: howto manager. (line 621)
|
| +* BFD_RELOC_X86_64_GOTPCREL: howto manager. (line 607)
|
| +* BFD_RELOC_X86_64_GOTPCREL64: howto manager. (line 620)
|
| +* BFD_RELOC_X86_64_GOTPLT64: howto manager. (line 622)
|
| +* BFD_RELOC_X86_64_GOTTPOFF: howto manager. (line 615)
|
| +* BFD_RELOC_X86_64_IRELATIVE: howto manager. (line 627)
|
| +* BFD_RELOC_X86_64_JUMP_SLOT: howto manager. (line 605)
|
| +* BFD_RELOC_X86_64_PC32_BND: howto manager. (line 628)
|
| +* BFD_RELOC_X86_64_PLT32: howto manager. (line 602)
|
| +* BFD_RELOC_X86_64_PLT32_BND: howto manager. (line 629)
|
| +* BFD_RELOC_X86_64_PLTOFF64: howto manager. (line 623)
|
| +* BFD_RELOC_X86_64_RELATIVE: howto manager. (line 606)
|
| +* BFD_RELOC_X86_64_TLSDESC: howto manager. (line 626)
|
| +* BFD_RELOC_X86_64_TLSDESC_CALL: howto manager. (line 625)
|
| +* BFD_RELOC_X86_64_TLSGD: howto manager. (line 612)
|
| +* BFD_RELOC_X86_64_TLSLD: howto manager. (line 613)
|
| +* BFD_RELOC_X86_64_TPOFF32: howto manager. (line 616)
|
| +* BFD_RELOC_X86_64_TPOFF64: howto manager. (line 611)
|
| +* BFD_RELOC_XC16X_PAG: howto manager. (line 2419)
|
| +* BFD_RELOC_XC16X_POF: howto manager. (line 2420)
|
| +* BFD_RELOC_XC16X_SEG: howto manager. (line 2421)
|
| +* BFD_RELOC_XC16X_SOF: howto manager. (line 2422)
|
| +* BFD_RELOC_XGATE_24: howto manager. (line 2164)
|
| +* BFD_RELOC_XGATE_GPAGE: howto manager. (line 2161)
|
| +* BFD_RELOC_XGATE_IMM3: howto manager. (line 2181)
|
| +* BFD_RELOC_XGATE_IMM4: howto manager. (line 2184)
|
| +* BFD_RELOC_XGATE_IMM5: howto manager. (line 2187)
|
| +* BFD_RELOC_XGATE_IMM8_HI: howto manager. (line 2177)
|
| +* BFD_RELOC_XGATE_IMM8_LO: howto manager. (line 2173)
|
| +* BFD_RELOC_XGATE_LO16: howto manager. (line 2157)
|
| +* BFD_RELOC_XGATE_PCREL_10: howto manager. (line 2170)
|
| +* BFD_RELOC_XGATE_PCREL_9: howto manager. (line 2167)
|
| +* BFD_RELOC_XGATE_RL_GROUP: howto manager. (line 2152)
|
| +* BFD_RELOC_XGATE_RL_JUMP: howto manager. (line 2148)
|
| +* BFD_RELOC_XSTORMY16_12: howto manager. (line 2411)
|
| +* BFD_RELOC_XSTORMY16_24: howto manager. (line 2412)
|
| +* BFD_RELOC_XSTORMY16_FPTR16: howto manager. (line 2413)
|
| +* BFD_RELOC_XSTORMY16_REL_12: howto manager. (line 2410)
|
| +* BFD_RELOC_XTENSA_ASM_EXPAND: howto manager. (line 2582)
|
| +* BFD_RELOC_XTENSA_ASM_SIMPLIFY: howto manager. (line 2587)
|
| +* BFD_RELOC_XTENSA_DIFF16: howto manager. (line 2529)
|
| +* BFD_RELOC_XTENSA_DIFF32: howto manager. (line 2530)
|
| +* BFD_RELOC_XTENSA_DIFF8: howto manager. (line 2528)
|
| +* BFD_RELOC_XTENSA_GLOB_DAT: howto manager. (line 2518)
|
| +* BFD_RELOC_XTENSA_JMP_SLOT: howto manager. (line 2519)
|
| +* BFD_RELOC_XTENSA_OP0: howto manager. (line 2576)
|
| +* BFD_RELOC_XTENSA_OP1: howto manager. (line 2577)
|
| +* BFD_RELOC_XTENSA_OP2: howto manager. (line 2578)
|
| +* BFD_RELOC_XTENSA_PLT: howto manager. (line 2523)
|
| +* BFD_RELOC_XTENSA_RELATIVE: howto manager. (line 2520)
|
| +* BFD_RELOC_XTENSA_RTLD: howto manager. (line 2513)
|
| +* BFD_RELOC_XTENSA_SLOT0_ALT: howto manager. (line 2558)
|
| +* BFD_RELOC_XTENSA_SLOT0_OP: howto manager. (line 2538)
|
| +* BFD_RELOC_XTENSA_SLOT10_ALT: howto manager. (line 2568)
|
| +* BFD_RELOC_XTENSA_SLOT10_OP: howto manager. (line 2548)
|
| +* BFD_RELOC_XTENSA_SLOT11_ALT: howto manager. (line 2569)
|
| +* BFD_RELOC_XTENSA_SLOT11_OP: howto manager. (line 2549)
|
| +* BFD_RELOC_XTENSA_SLOT12_ALT: howto manager. (line 2570)
|
| +* BFD_RELOC_XTENSA_SLOT12_OP: howto manager. (line 2550)
|
| +* BFD_RELOC_XTENSA_SLOT13_ALT: howto manager. (line 2571)
|
| +* BFD_RELOC_XTENSA_SLOT13_OP: howto manager. (line 2551)
|
| +* BFD_RELOC_XTENSA_SLOT14_ALT: howto manager. (line 2572)
|
| +* BFD_RELOC_XTENSA_SLOT14_OP: howto manager. (line 2552)
|
| +* BFD_RELOC_XTENSA_SLOT1_ALT: howto manager. (line 2559)
|
| +* BFD_RELOC_XTENSA_SLOT1_OP: howto manager. (line 2539)
|
| +* BFD_RELOC_XTENSA_SLOT2_ALT: howto manager. (line 2560)
|
| +* BFD_RELOC_XTENSA_SLOT2_OP: howto manager. (line 2540)
|
| +* BFD_RELOC_XTENSA_SLOT3_ALT: howto manager. (line 2561)
|
| +* BFD_RELOC_XTENSA_SLOT3_OP: howto manager. (line 2541)
|
| +* BFD_RELOC_XTENSA_SLOT4_ALT: howto manager. (line 2562)
|
| +* BFD_RELOC_XTENSA_SLOT4_OP: howto manager. (line 2542)
|
| +* BFD_RELOC_XTENSA_SLOT5_ALT: howto manager. (line 2563)
|
| +* BFD_RELOC_XTENSA_SLOT5_OP: howto manager. (line 2543)
|
| +* BFD_RELOC_XTENSA_SLOT6_ALT: howto manager. (line 2564)
|
| +* BFD_RELOC_XTENSA_SLOT6_OP: howto manager. (line 2544)
|
| +* BFD_RELOC_XTENSA_SLOT7_ALT: howto manager. (line 2565)
|
| +* BFD_RELOC_XTENSA_SLOT7_OP: howto manager. (line 2545)
|
| +* BFD_RELOC_XTENSA_SLOT8_ALT: howto manager. (line 2566)
|
| +* BFD_RELOC_XTENSA_SLOT8_OP: howto manager. (line 2546)
|
| +* BFD_RELOC_XTENSA_SLOT9_ALT: howto manager. (line 2567)
|
| +* BFD_RELOC_XTENSA_SLOT9_OP: howto manager. (line 2547)
|
| +* BFD_RELOC_XTENSA_TLS_ARG: howto manager. (line 2597)
|
| +* BFD_RELOC_XTENSA_TLS_CALL: howto manager. (line 2598)
|
| +* BFD_RELOC_XTENSA_TLS_DTPOFF: howto manager. (line 2594)
|
| +* BFD_RELOC_XTENSA_TLS_FUNC: howto manager. (line 2596)
|
| +* BFD_RELOC_XTENSA_TLS_TPOFF: howto manager. (line 2595)
|
| +* BFD_RELOC_XTENSA_TLSDESC_ARG: howto manager. (line 2593)
|
| +* BFD_RELOC_XTENSA_TLSDESC_FN: howto manager. (line 2592)
|
| +* BFD_RELOC_Z80_DISP8: howto manager. (line 2601)
|
| +* BFD_RELOC_Z8K_CALLR: howto manager. (line 2607)
|
| +* BFD_RELOC_Z8K_DISP7: howto manager. (line 2604)
|
| +* BFD_RELOC_Z8K_IMM4L: howto manager. (line 2610)
|
| * bfd_rename_section: section prototypes. (line 169)
|
| -* bfd_scan_arch: Architectures. (line 477)
|
| -* bfd_scan_vma: BFD front end. (line 567)
|
| -* bfd_seach_for_target: bfd_target. (line 520)
|
| +* bfd_scan_arch: Architectures. (line 500)
|
| +* bfd_scan_vma: Miscellaneous. (line 124)
|
| +* bfd_seach_for_target: bfd_target. (line 524)
|
| * 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 199)
|
| -* bfd_set_arch_info: Architectures. (line 518)
|
| -* bfd_set_archive_head: Archives. (line 69)
|
| -* bfd_set_assert_handler: BFD front end. (line 429)
|
| -* bfd_set_default_target: bfd_target. (line 459)
|
| -* bfd_set_error: BFD front end. (line 345)
|
| -* bfd_set_error_handler: BFD front end. (line 387)
|
| -* bfd_set_error_program_name: BFD front end. (line 396)
|
| -* bfd_set_file_flags: BFD front end. (line 487)
|
| +* bfd_set_arch_info: Architectures. (line 541)
|
| +* bfd_set_archive_head: Archives. (line 75)
|
| +* bfd_set_assert_handler: Error reporting. (line 141)
|
| +* bfd_set_default_target: bfd_target. (line 463)
|
| +* bfd_set_error: Error reporting. (line 57)
|
| +* bfd_set_error_handler: Error reporting. (line 99)
|
| +* bfd_set_error_program_name: Error reporting. (line 108)
|
| +* bfd_set_file_flags: Miscellaneous. (line 44)
|
| * bfd_set_format: Formats. (line 68)
|
| -* bfd_set_gp_size: BFD front end. (line 557)
|
| -* bfd_set_private_flags: BFD front end. (line 634)
|
| -* bfd_set_reloc: BFD front end. (line 477)
|
| +* bfd_set_gp_size: Miscellaneous. (line 114)
|
| +* bfd_set_private_flags: Miscellaneous. (line 191)
|
| +* bfd_set_reloc: Miscellaneous. (line 34)
|
| * bfd_set_section_contents: section prototypes. (line 230)
|
| * bfd_set_section_flags: section prototypes. (line 154)
|
| * bfd_set_section_size: section prototypes. (line 216)
|
| -* bfd_set_start_address: BFD front end. (line 536)
|
| +* bfd_set_start_address: Miscellaneous. (line 93)
|
| * bfd_set_symtab: symbol handling functions.
|
| (line 60)
|
| * bfd_symbol_info: symbol handling functions.
|
| (line 130)
|
| -* bfd_target_list: bfd_target. (line 511)
|
| +* bfd_target_list: bfd_target. (line 515)
|
| * bfd_write_bigendian_4byte_int: Internal. (line 13)
|
| * bfd_zalloc: Opening and Closing.
|
| (line 236)
|
| * bfd_zalloc2: Opening and Closing.
|
| (line 245)
|
| -* coff_symbol_type: coff. (line 244)
|
| +* coff_symbol_type: coff. (line 245)
|
| * core_file_matches_executable_p: Core Files. (line 39)
|
| * find_separate_debug_file: Opening and Closing.
|
| - (line 287)
|
| + (line 311)
|
| * generic_core_file_matches_executable_p: Core Files. (line 49)
|
| -* get_debug_link_info: Opening and Closing.
|
| - (line 268)
|
| * Hash tables: Hash Tables. (line 6)
|
| * internal object-file format: Canonical format. (line 11)
|
| * Linker: Linker Functions. (line 6)
|
| -* Other functions: BFD front end. (line 649)
|
| +* Other functions: Miscellaneous. (line 206)
|
| +* separate_alt_debug_file_exists: Opening and Closing.
|
| + (line 302)
|
| * separate_debug_file_exists: Opening and Closing.
|
| - (line 278)
|
| -* struct bfd_iovec: BFD front end. (line 855)
|
| + (line 293)
|
| +* struct bfd_iovec: Miscellaneous. (line 370)
|
| * target vector (_bfd_final_link): Performing the Final Link.
|
| (line 6)
|
| * target vector (_bfd_link_add_symbols): Adding Symbols to the Hash Table.
|
| @@ -12449,67 +13176,70 @@ BFD Index
|
|
|
|
|
| Tag Table:
|
| -Node: Top1089
|
| -Node: Overview1428
|
| -Node: History2479
|
| -Node: How It Works3425
|
| -Node: What BFD Version 2 Can Do4968
|
| -Node: BFD information loss6283
|
| -Node: Canonical format8815
|
| -Node: BFD front end13187
|
| -Node: Memory Usage47266
|
| -Node: Initialization48494
|
| -Node: Sections48953
|
| -Node: Section Input49436
|
| -Node: Section Output50801
|
| -Node: typedef asection53287
|
| -Node: section prototypes78494
|
| -Node: Symbols88750
|
| -Node: Reading Symbols90345
|
| -Node: Writing Symbols91452
|
| -Node: Mini Symbols93193
|
| -Node: typedef asymbol94167
|
| -Node: symbol handling functions100226
|
| -Node: Archives105568
|
| -Node: Formats109294
|
| -Node: Relocations112242
|
| -Node: typedef arelent112969
|
| -Node: howto manager128605
|
| -Node: Core Files219224
|
| -Node: Targets221262
|
| -Node: bfd_target223232
|
| -Node: Architectures246197
|
| -Node: Opening and Closing271999
|
| -Node: Internal283518
|
| -Node: File Caching289863
|
| -Node: Linker Functions291777
|
| -Node: Creating a Linker Hash Table293450
|
| -Node: Adding Symbols to the Hash Table295188
|
| -Node: Differing file formats296088
|
| -Node: Adding symbols from an object file297813
|
| -Node: Adding symbols from an archive299964
|
| -Node: Performing the Final Link302893
|
| -Node: Information provided by the linker304135
|
| -Node: Relocating the section contents305289
|
| -Node: Writing the symbol table307040
|
| -Node: Hash Tables311426
|
| -Node: Creating and Freeing a Hash Table312624
|
| -Node: Looking Up or Entering a String313874
|
| -Node: Traversing a Hash Table315127
|
| -Node: Deriving a New Hash Table Type315916
|
| -Node: Define the Derived Structures316982
|
| -Node: Write the Derived Creation Routine318063
|
| -Node: Write Other Derived Routines320687
|
| -Node: BFD back ends322002
|
| -Node: What to Put Where322272
|
| -Node: aout322452
|
| -Node: coff328770
|
| -Node: elf357203
|
| -Node: mmo357604
|
| -Node: File layout358532
|
| -Node: Symbol-table364179
|
| -Node: mmo section mapping367948
|
| -Node: GNU Free Documentation License371600
|
| -Node: BFD Index396683
|
| +Node: Top1061
|
| +Node: Overview1400
|
| +Node: History2451
|
| +Node: How It Works3397
|
| +Node: What BFD Version 2 Can Do4940
|
| +Node: BFD information loss6255
|
| +Node: Canonical format8787
|
| +Node: BFD front end13159
|
| +Node: typedef bfd13583
|
| +Node: Error reporting24301
|
| +Node: Miscellaneous29168
|
| +Node: Memory Usage46311
|
| +Node: Initialization47539
|
| +Node: Sections47998
|
| +Node: Section Input48481
|
| +Node: Section Output49846
|
| +Node: typedef asection52332
|
| +Node: section prototypes77564
|
| +Node: Symbols87821
|
| +Node: Reading Symbols89416
|
| +Node: Writing Symbols90523
|
| +Node: Mini Symbols92264
|
| +Node: typedef asymbol93238
|
| +Node: symbol handling functions99297
|
| +Node: Archives104639
|
| +Node: Formats108668
|
| +Node: Relocations111616
|
| +Node: typedef arelent112343
|
| +Node: howto manager127979
|
| +Node: Core Files234627
|
| +Node: Targets236665
|
| +Node: bfd_target238635
|
| +Node: Architectures261857
|
| +Node: Opening and Closing288731
|
| +Node: Internal302154
|
| +Node: File Caching308499
|
| +Node: Linker Functions310413
|
| +Node: Creating a Linker Hash Table312086
|
| +Node: Adding Symbols to the Hash Table313824
|
| +Node: Differing file formats314724
|
| +Node: Adding symbols from an object file316449
|
| +Node: Adding symbols from an archive318600
|
| +Node: Performing the Final Link321529
|
| +Node: Information provided by the linker322771
|
| +Node: Relocating the section contents323925
|
| +Node: Writing the symbol table325676
|
| +Node: Hash Tables330060
|
| +Node: Creating and Freeing a Hash Table331258
|
| +Node: Looking Up or Entering a String332508
|
| +Node: Traversing a Hash Table333761
|
| +Node: Deriving a New Hash Table Type334550
|
| +Node: Define the Derived Structures335616
|
| +Node: Write the Derived Creation Routine336697
|
| +Node: Write Other Derived Routines339321
|
| +Node: BFD back ends340636
|
| +Node: What to Put Where340906
|
| +Node: aout341086
|
| +Node: coff347404
|
| +Node: elf375841
|
| +Node: mmo376242
|
| +Node: File layout377170
|
| +Node: Symbol-table382817
|
| +Node: mmo section mapping386586
|
| +Node: GNU Free Documentation License390238
|
| +Node: BFD Index415321
|
|
|
| End Tag Table
|
|
|