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

Side by Side Diff: bfd/doc/bfd.info

Issue 11969036: Merge GDB 7.5.1 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@master
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « bfd/doc/archures.texi ('k') | bfd/doc/bfdt.texi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 This is bfd.info, produced by makeinfo version 4.8 from bfd.texinfo. 1 This is bfd.info, produced by makeinfo version 4.8 from bfd.texinfo.
2 2
3 INFO-DIR-SECTION Software development 3 INFO-DIR-SECTION Software development
4 START-INFO-DIR-ENTRY 4 START-INFO-DIR-ENTRY
5 * Bfd: (bfd). The Binary File Descriptor library. 5 * Bfd: (bfd). The Binary File Descriptor library.
6 END-INFO-DIR-ENTRY 6 END-INFO-DIR-ENTRY
7 7
8 This file documents the BFD library. 8 This file documents the BFD library.
9 9
10 Copyright (C) 1991, 2000, 2001, 2003, 2006, 2007, 2008 Free Software 10 Copyright (C) 1991, 2000, 2001, 2003, 2006, 2007, 2008 Free Software
(...skipping 692 matching lines...) Expand 10 before | Expand all | Expand 10 after
703 must not be changed after it is passed to this function. 703 must not be changed after it is passed to this function.
704 704
705 2.2.2.3 `bfd_get_error_handler' 705 2.2.2.3 `bfd_get_error_handler'
706 ............................... 706 ...............................
707 707
708 *Synopsis* 708 *Synopsis*
709 bfd_error_handler_type bfd_get_error_handler (void); 709 bfd_error_handler_type bfd_get_error_handler (void);
710 *Description* 710 *Description*
711 Return the BFD error handler function. 711 Return the BFD error handler function.
712 712
713 2.2.3 BFD assert handler
714 ------------------------
715
716 If BFD finds an internal inconsistency, the bfd assert handler is
717 called with information on the BFD version, BFD source file and line.
718 If this happens, most programs linked against BFD are expected to want
719 to exit with an error, or mark the current BFD operation as failed, so
720 it is recommended to override the default handler, which just calls
721 _bfd_error_handler and continues.
722
723
724 typedef void (*bfd_assert_handler_type) (const char *bfd_formatmsg,
725 const char *bfd_version,
726 const char *bfd_file,
727 int bfd_line);
728
729 2.2.3.1 `bfd_set_assert_handler'
730 ................................
731
732 *Synopsis*
733 bfd_assert_handler_type bfd_set_assert_handler (bfd_assert_handler_type);
734 *Description*
735 Set the BFD assert handler function. Returns the previous function.
736
737 2.2.3.2 `bfd_get_assert_handler'
738 ................................
739
740 *Synopsis*
741 bfd_assert_handler_type bfd_get_assert_handler (void);
742 *Description*
743 Return the BFD assert handler function.
744
713 2.3 Miscellaneous 745 2.3 Miscellaneous
714 ================= 746 =================
715 747
716 2.3.1 Miscellaneous functions 748 2.3.1 Miscellaneous functions
717 ----------------------------- 749 -----------------------------
718 750
719 2.3.1.1 `bfd_get_reloc_upper_bound' 751 2.3.1.1 `bfd_get_reloc_upper_bound'
720 ................................... 752 ...................................
721 753
722 *Synopsis* 754 *Synopsis*
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
950 982
951 #define bfd_set_arch_mach(abfd, arch, mach)\ 983 #define bfd_set_arch_mach(abfd, arch, mach)\
952 BFD_SEND ( abfd, _bfd_set_arch_mach, (abfd, arch, mach)) 984 BFD_SEND ( abfd, _bfd_set_arch_mach, (abfd, arch, mach))
953 985
954 #define bfd_relax_section(abfd, section, link_info, again) \ 986 #define bfd_relax_section(abfd, section, link_info, again) \
955 BFD_SEND (abfd, _bfd_relax_section, (abfd, section, link_info, again )) 987 BFD_SEND (abfd, _bfd_relax_section, (abfd, section, link_info, again ))
956 988
957 #define bfd_gc_sections(abfd, link_info) \ 989 #define bfd_gc_sections(abfd, link_info) \
958 BFD_SEND (abfd, _bfd_gc_sections, (abfd, link_info)) 990 BFD_SEND (abfd, _bfd_gc_sections, (abfd, link_info))
959 991
960 #define bfd_lookup_section_flags(link_info, flag_info) \ 992 #define bfd_lookup_section_flags(link_info, flag_info, section) \
961 BFD_SEND (abfd, _bfd_lookup_section_flags, (link_info, flag_info)) 993 BFD_SEND (abfd, _bfd_lookup_section_flags, (link_info, flag_info, se ction))
962 994
963 #define bfd_merge_sections(abfd, link_info) \ 995 #define bfd_merge_sections(abfd, link_info) \
964 BFD_SEND (abfd, _bfd_merge_sections, (abfd, link_info)) 996 BFD_SEND (abfd, _bfd_merge_sections, (abfd, link_info))
965 997
966 #define bfd_is_group_section(abfd, sec) \ 998 #define bfd_is_group_section(abfd, sec) \
967 BFD_SEND (abfd, _bfd_is_group_section, (abfd, sec)) 999 BFD_SEND (abfd, _bfd_is_group_section, (abfd, sec))
968 1000
969 #define bfd_discard_group(abfd, sec) \ 1001 #define bfd_discard_group(abfd, sec) \
970 BFD_SEND (abfd, _bfd_discard_group, (abfd, sec)) 1002 BFD_SEND (abfd, _bfd_discard_group, (abfd, sec))
971 1003
(...skipping 645 matching lines...) Expand 10 before | Expand all | Expand 10 after
1617 #define COMPRESS_SECTION_DONE 1 1649 #define COMPRESS_SECTION_DONE 1
1618 #define DECOMPRESS_SECTION_SIZED 2 1650 #define DECOMPRESS_SECTION_SIZED 2
1619 1651
1620 /* The following flags are used by the ELF linker. */ 1652 /* The following flags are used by the ELF linker. */
1621 1653
1622 /* Mark sections which have been allocated to segments. */ 1654 /* Mark sections which have been allocated to segments. */
1623 unsigned int segment_mark : 1; 1655 unsigned int segment_mark : 1;
1624 1656
1625 /* Type of sec_info information. */ 1657 /* Type of sec_info information. */
1626 unsigned int sec_info_type:3; 1658 unsigned int sec_info_type:3;
1627 #define ELF_INFO_TYPE_NONE 0 1659 #define SEC_INFO_TYPE_NONE 0
1628 #define ELF_INFO_TYPE_STABS 1 1660 #define SEC_INFO_TYPE_STABS 1
1629 #define ELF_INFO_TYPE_MERGE 2 1661 #define SEC_INFO_TYPE_MERGE 2
1630 #define ELF_INFO_TYPE_EH_FRAME 3 1662 #define SEC_INFO_TYPE_EH_FRAME 3
1631 #define ELF_INFO_TYPE_JUST_SYMS 4 1663 #define SEC_INFO_TYPE_JUST_SYMS 4
1632 1664
1633 /* Nonzero if this section uses RELA relocations, rather than REL. */ 1665 /* Nonzero if this section uses RELA relocations, rather than REL. */
1634 unsigned int use_rela_p:1; 1666 unsigned int use_rela_p:1;
1635 1667
1636 /* Bits used by various backends. The generic code doesn't touch 1668 /* Bits used by various backends. The generic code doesn't touch
1637 these fields. */ 1669 these fields. */
1638 1670
1639 unsigned int sec_flg0:1; 1671 unsigned int sec_flg0:1;
1640 unsigned int sec_flg1:1; 1672 unsigned int sec_flg1:1;
1641 unsigned int sec_flg2:1; 1673 unsigned int sec_flg2:1;
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
1751 1783
1752 void *used_by_bfd; 1784 void *used_by_bfd;
1753 1785
1754 /* If this is a constructor section then here is a list of the 1786 /* If this is a constructor section then here is a list of the
1755 relocations created to relocate items within it. */ 1787 relocations created to relocate items within it. */
1756 struct relent_chain *constructor_chain; 1788 struct relent_chain *constructor_chain;
1757 1789
1758 /* The BFD which owns the section. */ 1790 /* The BFD which owns the section. */
1759 bfd *owner; 1791 bfd *owner;
1760 1792
1761 /* INPUT_SECTION_FLAGS if specified in the linker script. */
1762 struct flag_info *section_flag_info;
1763
1764 /* A symbol which points at this section only. */ 1793 /* A symbol which points at this section only. */
1765 struct bfd_symbol *symbol; 1794 struct bfd_symbol *symbol;
1766 struct bfd_symbol **symbol_ptr_ptr; 1795 struct bfd_symbol **symbol_ptr_ptr;
1767 1796
1768 /* Early in the link process, map_head and map_tail are used to build 1797 /* Early in the link process, map_head and map_tail are used to build
1769 a list of input sections attached to an output section. Later, 1798 a list of input sections attached to an output section. Later,
1770 output sections use these fields for a list of bfd_link_order 1799 output sections use these fields for a list of bfd_link_order
1771 structs. */ 1800 structs. */
1772 union { 1801 union {
1773 struct bfd_link_order *link_order; 1802 struct bfd_link_order *link_order;
1774 struct bfd_section *s; 1803 struct bfd_section *s;
1775 } map_head, map_tail; 1804 } map_head, map_tail;
1776 } asection; 1805 } asection;
1777 1806
1778 /* Relax table contains information about instructions which can 1807 /* Relax table contains information about instructions which can
1779 be removed by relaxation -- replacing a long address with a 1808 be removed by relaxation -- replacing a long address with a
1780 short address. */ 1809 short address. */
1781 struct relax_table { 1810 struct relax_table {
1782 /* Address where bytes may be deleted. */ 1811 /* Address where bytes may be deleted. */
1783 bfd_vma addr; 1812 bfd_vma addr;
1784 1813
1785 /* Number of bytes to be deleted. */ 1814 /* Number of bytes to be deleted. */
1786 int size; 1815 int size;
1787 }; 1816 };
1788 1817
1789 /* These sections are global, and are managed by BFD. The application 1818 /* These sections are global, and are managed by BFD. The application
1790 and target back end are not permitted to change the values in 1819 and target back end are not permitted to change the values in
1791 these sections. New code should use the section_ptr macros rather 1820 these sections. */
1792 than referring directly to the const sections. The const sections 1821 extern asection std_section[4];
1793 may eventually vanish. */ 1822
1794 #define BFD_ABS_SECTION_NAME "*ABS*" 1823 #define BFD_ABS_SECTION_NAME "*ABS*"
1795 #define BFD_UND_SECTION_NAME "*UND*" 1824 #define BFD_UND_SECTION_NAME "*UND*"
1796 #define BFD_COM_SECTION_NAME "*COM*" 1825 #define BFD_COM_SECTION_NAME "*COM*"
1797 #define BFD_IND_SECTION_NAME "*IND*" 1826 #define BFD_IND_SECTION_NAME "*IND*"
1798 1827
1799 /* The absolute section. */ 1828 /* Pointer to the common section. */
1800 extern asection bfd_abs_section; 1829 #define bfd_com_section_ptr (&std_section[0])
1801 #define bfd_abs_section_ptr ((asection *) &bfd_abs_section) 1830 /* Pointer to the undefined section. */
1831 #define bfd_und_section_ptr (&std_section[1])
1832 /* Pointer to the absolute section. */
1833 #define bfd_abs_section_ptr (&std_section[2])
1834 /* Pointer to the indirect section. */
1835 #define bfd_ind_section_ptr (&std_section[3])
1836
1837 #define bfd_is_und_section(sec) ((sec) == bfd_und_section_ptr)
1802 #define bfd_is_abs_section(sec) ((sec) == bfd_abs_section_ptr) 1838 #define bfd_is_abs_section(sec) ((sec) == bfd_abs_section_ptr)
1803 /* Pointer to the undefined section. */
1804 extern asection bfd_und_section;
1805 #define bfd_und_section_ptr ((asection *) &bfd_und_section)
1806 #define bfd_is_und_section(sec) ((sec) == bfd_und_section_ptr)
1807 /* Pointer to the common section. */
1808 extern asection bfd_com_section;
1809 #define bfd_com_section_ptr ((asection *) &bfd_com_section)
1810 /* Pointer to the indirect section. */
1811 extern asection bfd_ind_section;
1812 #define bfd_ind_section_ptr ((asection *) &bfd_ind_section)
1813 #define bfd_is_ind_section(sec) ((sec) == bfd_ind_section_ptr) 1839 #define bfd_is_ind_section(sec) ((sec) == bfd_ind_section_ptr)
1814 1840
1815 #define bfd_is_const_section(SEC) \ 1841 #define bfd_is_const_section(SEC) \
1816 ( ((SEC) == bfd_abs_section_ptr) \ 1842 ( ((SEC) == bfd_abs_section_ptr) \
1817 || ((SEC) == bfd_und_section_ptr) \ 1843 || ((SEC) == bfd_und_section_ptr) \
1818 || ((SEC) == bfd_com_section_ptr) \ 1844 || ((SEC) == bfd_com_section_ptr) \
1819 || ((SEC) == bfd_ind_section_ptr)) 1845 || ((SEC) == bfd_ind_section_ptr))
1820 1846
1821 /* Macros to handle insertion and deletion of a bfd's sections. These 1847 /* Macros to handle insertion and deletion of a bfd's sections. These
1822 only handle the list pointers, ie. do not adjust section_count, 1848 only handle the list pointers, ie. do not adjust section_count,
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
1917 \ 1943 \
1918 /* segment_mark, sec_info_type, use_rela_p, */ \ 1944 /* segment_mark, sec_info_type, use_rela_p, */ \
1919 0, 0, 0, \ 1945 0, 0, 0, \
1920 \ 1946 \
1921 /* sec_flg0, sec_flg1, sec_flg2, sec_flg3, sec_flg4, sec_flg5, */ \ 1947 /* sec_flg0, sec_flg1, sec_flg2, sec_flg3, sec_flg4, sec_flg5, */ \
1922 0, 0, 0, 0, 0, 0, \ 1948 0, 0, 0, 0, 0, 0, \
1923 \ 1949 \
1924 /* vma, lma, size, rawsize, compressed_size, relax, relax_count, */ \ 1950 /* vma, lma, size, rawsize, compressed_size, relax, relax_count, */ \
1925 0, 0, 0, 0, 0, 0, 0, \ 1951 0, 0, 0, 0, 0, 0, 0, \
1926 \ 1952 \
1927 /* output_offset, output_section, alignment_power, */ \ 1953 /* output_offset, output_section, alignment_power, */ \
1928 0, (struct bfd_section *) &SEC, 0, \ 1954 0, &SEC, 0, \
1929 \ 1955 \
1930 /* relocation, orelocation, reloc_count, filepos, rel_filepos, */ \ 1956 /* relocation, orelocation, reloc_count, filepos, rel_filepos, */ \
1931 NULL, NULL, 0, 0, 0, \ 1957 NULL, NULL, 0, 0, 0, \
1932 \ 1958 \
1933 /* line_filepos, userdata, contents, lineno, lineno_count, */ \ 1959 /* line_filepos, userdata, contents, lineno, lineno_count, */ \
1934 0, NULL, NULL, NULL, 0, \ 1960 0, NULL, NULL, NULL, 0, \
1935 \ 1961 \
1936 /* entsize, kept_section, moving_line_filepos, */ \ 1962 /* entsize, kept_section, moving_line_filepos, */ \
1937 0, NULL, 0, \ 1963 0, NULL, 0, \
1938 \ 1964 \
1939 /* target_index, used_by_bfd, constructor_chain, owner, */ \ 1965 /* target_index, used_by_bfd, constructor_chain, owner, */ \
1940 0, NULL, NULL, NULL, \ 1966 0, NULL, NULL, NULL, \
1941 \ 1967 \
1942 /* flag_info, */ \
1943 NULL, \
1944 \
1945 /* symbol, symbol_ptr_ptr, */ \ 1968 /* symbol, symbol_ptr_ptr, */ \
1946 (struct bfd_symbol *) SYM, &SEC.symbol, \ 1969 (struct bfd_symbol *) SYM, &SEC.symbol, \
1947 \ 1970 \
1948 /* map_head, map_tail */ \ 1971 /* map_head, map_tail */ \
1949 { NULL }, { NULL } \ 1972 { NULL }, { NULL } \
1950 } 1973 }
1951 1974
1952  1975 
1953 File: bfd.info, Node: section prototypes, Prev: typedef asection, Up: Section s 1976 File: bfd.info, Node: section prototypes, Prev: typedef asection, Up: Section s
1954 1977
(...skipping 10 matching lines...) Expand all
1965 *Description* 1988 *Description*
1966 Clears the section list, and also resets the section count and hash 1989 Clears the section list, and also resets the section count and hash
1967 table entries. 1990 table entries.
1968 1991
1969 2.6.5.2 `bfd_get_section_by_name' 1992 2.6.5.2 `bfd_get_section_by_name'
1970 ................................. 1993 .................................
1971 1994
1972 *Synopsis* 1995 *Synopsis*
1973 asection *bfd_get_section_by_name (bfd *abfd, const char *name); 1996 asection *bfd_get_section_by_name (bfd *abfd, const char *name);
1974 *Description* 1997 *Description*
1975 Run through ABFD and return the one of the `asection's whose name 1998 Return the most recently created section attached to ABFD named NAME.
1976 matches NAME, otherwise `NULL'. *Note Sections::, for more information. 1999 Return NULL if no such section exists.
1977 2000
1978 This should only be used in special cases; the normal way to process 2001 2.6.5.3 `bfd_get_next_section_by_name'
1979 all sections of a given name is to use `bfd_map_over_sections' and 2002 ......................................
1980 `strcmp' on the name (or better yet, base it on the section flags or
1981 something else) for each section.
1982 2003
1983 2.6.5.3 `bfd_get_section_by_name_if' 2004 *Synopsis*
2005 asection *bfd_get_next_section_by_name (asection *sec);
2006 *Description*
2007 Given SEC is a section returned by `bfd_get_section_by_name', return
2008 the next most recently created section attached to the same BFD with
2009 the same name. Return NULL if no such section exists.
2010
2011 2.6.5.4 `bfd_get_linker_section'
2012 ................................
2013
2014 *Synopsis*
2015 asection *bfd_get_linker_section (bfd *abfd, const char *name);
2016 *Description*
2017 Return the linker created section attached to ABFD named NAME. Return
2018 NULL if no such section exists.
2019
2020 2.6.5.5 `bfd_get_section_by_name_if'
1984 .................................... 2021 ....................................
1985 2022
1986 *Synopsis* 2023 *Synopsis*
1987 asection *bfd_get_section_by_name_if 2024 asection *bfd_get_section_by_name_if
1988 (bfd *abfd, 2025 (bfd *abfd,
1989 const char *name, 2026 const char *name,
1990 bfd_boolean (*func) (bfd *abfd, asection *sect, void *obj), 2027 bfd_boolean (*func) (bfd *abfd, asection *sect, void *obj),
1991 void *obj); 2028 void *obj);
1992 *Description* 2029 *Description*
1993 Call the provided function FUNC for each section attached to the BFD 2030 Call the provided function FUNC for each section attached to the BFD
1994 ABFD whose name matches NAME, passing OBJ as an argument. The function 2031 ABFD whose name matches NAME, passing OBJ as an argument. The function
1995 will be called as if by 2032 will be called as if by
1996 2033
1997 func (abfd, the_section, obj); 2034 func (abfd, the_section, obj);
1998 2035
1999 It returns the first section for which FUNC returns true, otherwise 2036 It returns the first section for which FUNC returns true, otherwise
2000 `NULL'. 2037 `NULL'.
2001 2038
2002 2.6.5.4 `bfd_get_unique_section_name' 2039 2.6.5.6 `bfd_get_unique_section_name'
2003 ..................................... 2040 .....................................
2004 2041
2005 *Synopsis* 2042 *Synopsis*
2006 char *bfd_get_unique_section_name 2043 char *bfd_get_unique_section_name
2007 (bfd *abfd, const char *templat, int *count); 2044 (bfd *abfd, const char *templat, int *count);
2008 *Description* 2045 *Description*
2009 Invent a section name that is unique in ABFD by tacking a dot and a 2046 Invent a section name that is unique in ABFD by tacking a dot and a
2010 digit suffix onto the original TEMPLAT. If COUNT is non-NULL, then it 2047 digit suffix onto the original TEMPLAT. If COUNT is non-NULL, then it
2011 specifies the first number tried as a suffix to generate a unique name. 2048 specifies the first number tried as a suffix to generate a unique name.
2012 The value pointed to by COUNT will be incremented in this case. 2049 The value pointed to by COUNT will be incremented in this case.
2013 2050
2014 2.6.5.5 `bfd_make_section_old_way' 2051 2.6.5.7 `bfd_make_section_old_way'
2015 .................................. 2052 ..................................
2016 2053
2017 *Synopsis* 2054 *Synopsis*
2018 asection *bfd_make_section_old_way (bfd *abfd, const char *name); 2055 asection *bfd_make_section_old_way (bfd *abfd, const char *name);
2019 *Description* 2056 *Description*
2020 Create a new empty section called NAME and attach it to the end of the 2057 Create a new empty section called NAME and attach it to the end of the
2021 chain of sections for the BFD ABFD. An attempt to create a section with 2058 chain of sections for the BFD ABFD. An attempt to create a section with
2022 a name which is already in use returns its pointer without changing the 2059 a name which is already in use returns its pointer without changing the
2023 section chain. 2060 section chain.
2024 2061
2025 It has the funny name since this is the way it used to be before it 2062 It has the funny name since this is the way it used to be before it
2026 was rewritten.... 2063 was rewritten....
2027 2064
2028 Possible errors are: 2065 Possible errors are:
2029 * `bfd_error_invalid_operation' - If output has already started for 2066 * `bfd_error_invalid_operation' - If output has already started for
2030 this BFD. 2067 this BFD.
2031 2068
2032 * `bfd_error_no_memory' - If memory allocation fails. 2069 * `bfd_error_no_memory' - If memory allocation fails.
2033 2070
2034 2.6.5.6 `bfd_make_section_anyway_with_flags' 2071 2.6.5.8 `bfd_make_section_anyway_with_flags'
2035 ............................................ 2072 ............................................
2036 2073
2037 *Synopsis* 2074 *Synopsis*
2038 asection *bfd_make_section_anyway_with_flags 2075 asection *bfd_make_section_anyway_with_flags
2039 (bfd *abfd, const char *name, flagword flags); 2076 (bfd *abfd, const char *name, flagword flags);
2040 *Description* 2077 *Description*
2041 Create a new empty section called NAME and attach it to the end of the 2078 Create a new empty section called NAME and attach it to the end of the
2042 chain of sections for ABFD. Create a new section even if there is 2079 chain of sections for ABFD. Create a new section even if there is
2043 already a section with that name. Also set the attributes of the new 2080 already a section with that name. Also set the attributes of the new
2044 section to the value FLAGS. 2081 section to the value FLAGS.
2045 2082
2046 Return `NULL' and set `bfd_error' on error; possible errors are: 2083 Return `NULL' and set `bfd_error' on error; possible errors are:
2047 * `bfd_error_invalid_operation' - If output has already started for 2084 * `bfd_error_invalid_operation' - If output has already started for
2048 ABFD. 2085 ABFD.
2049 2086
2050 * `bfd_error_no_memory' - If memory allocation fails. 2087 * `bfd_error_no_memory' - If memory allocation fails.
2051 2088
2052 2.6.5.7 `bfd_make_section_anyway' 2089 2.6.5.9 `bfd_make_section_anyway'
2053 ................................. 2090 .................................
2054 2091
2055 *Synopsis* 2092 *Synopsis*
2056 asection *bfd_make_section_anyway (bfd *abfd, const char *name); 2093 asection *bfd_make_section_anyway (bfd *abfd, const char *name);
2057 *Description* 2094 *Description*
2058 Create a new empty section called NAME and attach it to the end of the 2095 Create a new empty section called NAME and attach it to the end of the
2059 chain of sections for ABFD. Create a new section even if there is 2096 chain of sections for ABFD. Create a new section even if there is
2060 already a section with that name. 2097 already a section with that name.
2061 2098
2062 Return `NULL' and set `bfd_error' on error; possible errors are: 2099 Return `NULL' and set `bfd_error' on error; possible errors are:
2063 * `bfd_error_invalid_operation' - If output has already started for 2100 * `bfd_error_invalid_operation' - If output has already started for
2064 ABFD. 2101 ABFD.
2065 2102
2066 * `bfd_error_no_memory' - If memory allocation fails. 2103 * `bfd_error_no_memory' - If memory allocation fails.
2067 2104
2068 2.6.5.8 `bfd_make_section_with_flags' 2105 2.6.5.10 `bfd_make_section_with_flags'
2069 ..................................... 2106 ......................................
2070 2107
2071 *Synopsis* 2108 *Synopsis*
2072 asection *bfd_make_section_with_flags 2109 asection *bfd_make_section_with_flags
2073 (bfd *, const char *name, flagword flags); 2110 (bfd *, const char *name, flagword flags);
2074 *Description* 2111 *Description*
2075 Like `bfd_make_section_anyway', but return `NULL' (without calling 2112 Like `bfd_make_section_anyway', but return `NULL' (without calling
2076 bfd_set_error ()) without changing the section chain if there is 2113 bfd_set_error ()) without changing the section chain if there is
2077 already a section named NAME. Also set the attributes of the new 2114 already a section named NAME. Also set the attributes of the new
2078 section to the value FLAGS. If there is an error, return `NULL' and set 2115 section to the value FLAGS. If there is an error, return `NULL' and set
2079 `bfd_error'. 2116 `bfd_error'.
2080 2117
2081 2.6.5.9 `bfd_make_section' 2118 2.6.5.11 `bfd_make_section'
2082 .......................... 2119 ...........................
2083 2120
2084 *Synopsis* 2121 *Synopsis*
2085 asection *bfd_make_section (bfd *, const char *name); 2122 asection *bfd_make_section (bfd *, const char *name);
2086 *Description* 2123 *Description*
2087 Like `bfd_make_section_anyway', but return `NULL' (without calling 2124 Like `bfd_make_section_anyway', but return `NULL' (without calling
2088 bfd_set_error ()) without changing the section chain if there is 2125 bfd_set_error ()) without changing the section chain if there is
2089 already a section named NAME. If there is an error, return `NULL' and 2126 already a section named NAME. If there is an error, return `NULL' and
2090 set `bfd_error'. 2127 set `bfd_error'.
2091 2128
2092 2.6.5.10 `bfd_set_section_flags' 2129 2.6.5.12 `bfd_set_section_flags'
2093 ................................ 2130 ................................
2094 2131
2095 *Synopsis* 2132 *Synopsis*
2096 bfd_boolean bfd_set_section_flags 2133 bfd_boolean bfd_set_section_flags
2097 (bfd *abfd, asection *sec, flagword flags); 2134 (bfd *abfd, asection *sec, flagword flags);
2098 *Description* 2135 *Description*
2099 Set the attributes of the section SEC in the BFD ABFD to the value 2136 Set the attributes of the section SEC in the BFD ABFD to the value
2100 FLAGS. Return `TRUE' on success, `FALSE' on error. Possible error 2137 FLAGS. Return `TRUE' on success, `FALSE' on error. Possible error
2101 returns are: 2138 returns are:
2102 2139
2103 * `bfd_error_invalid_operation' - The section cannot have one or 2140 * `bfd_error_invalid_operation' - The section cannot have one or
2104 more of the attributes requested. For example, a .bss section in 2141 more of the attributes requested. For example, a .bss section in
2105 `a.out' may not have the `SEC_HAS_CONTENTS' field set. 2142 `a.out' may not have the `SEC_HAS_CONTENTS' field set.
2106 2143
2107 2.6.5.11 `bfd_rename_section' 2144 2.6.5.13 `bfd_rename_section'
2108 ............................. 2145 .............................
2109 2146
2110 *Synopsis* 2147 *Synopsis*
2111 void bfd_rename_section 2148 void bfd_rename_section
2112 (bfd *abfd, asection *sec, const char *newname); 2149 (bfd *abfd, asection *sec, const char *newname);
2113 *Description* 2150 *Description*
2114 Rename section SEC in ABFD to NEWNAME. 2151 Rename section SEC in ABFD to NEWNAME.
2115 2152
2116 2.6.5.12 `bfd_map_over_sections' 2153 2.6.5.14 `bfd_map_over_sections'
2117 ................................ 2154 ................................
2118 2155
2119 *Synopsis* 2156 *Synopsis*
2120 void bfd_map_over_sections 2157 void bfd_map_over_sections
2121 (bfd *abfd, 2158 (bfd *abfd,
2122 void (*func) (bfd *abfd, asection *sect, void *obj), 2159 void (*func) (bfd *abfd, asection *sect, void *obj),
2123 void *obj); 2160 void *obj);
2124 *Description* 2161 *Description*
2125 Call the provided function FUNC for each section attached to the BFD 2162 Call the provided function FUNC for each section attached to the BFD
2126 ABFD, passing OBJ as an argument. The function will be called as if by 2163 ABFD, passing OBJ as an argument. The function will be called as if by
2127 2164
2128 func (abfd, the_section, obj); 2165 func (abfd, the_section, obj);
2129 2166
2130 This is the preferred method for iterating over sections; an 2167 This is the preferred method for iterating over sections; an
2131 alternative would be to use a loop: 2168 alternative would be to use a loop:
2132 2169
2133 section *p; 2170 section *p;
2134 for (p = abfd->sections; p != NULL; p = p->next) 2171 for (p = abfd->sections; p != NULL; p = p->next)
2135 func (abfd, p, ...) 2172 func (abfd, p, ...)
2136 2173
2137 2.6.5.13 `bfd_sections_find_if' 2174 2.6.5.15 `bfd_sections_find_if'
2138 ............................... 2175 ...............................
2139 2176
2140 *Synopsis* 2177 *Synopsis*
2141 asection *bfd_sections_find_if 2178 asection *bfd_sections_find_if
2142 (bfd *abfd, 2179 (bfd *abfd,
2143 bfd_boolean (*operation) (bfd *abfd, asection *sect, void *obj), 2180 bfd_boolean (*operation) (bfd *abfd, asection *sect, void *obj),
2144 void *obj); 2181 void *obj);
2145 *Description* 2182 *Description*
2146 Call the provided function OPERATION for each section attached to the 2183 Call the provided function OPERATION for each section attached to the
2147 BFD ABFD, passing OBJ as an argument. The function will be called as if 2184 BFD ABFD, passing OBJ as an argument. The function will be called as if
2148 by 2185 by
2149 2186
2150 operation (abfd, the_section, obj); 2187 operation (abfd, the_section, obj);
2151 2188
2152 It returns the first section for which OPERATION returns true. 2189 It returns the first section for which OPERATION returns true.
2153 2190
2154 2.6.5.14 `bfd_set_section_size' 2191 2.6.5.16 `bfd_set_section_size'
2155 ............................... 2192 ...............................
2156 2193
2157 *Synopsis* 2194 *Synopsis*
2158 bfd_boolean bfd_set_section_size 2195 bfd_boolean bfd_set_section_size
2159 (bfd *abfd, asection *sec, bfd_size_type val); 2196 (bfd *abfd, asection *sec, bfd_size_type val);
2160 *Description* 2197 *Description*
2161 Set SEC to the size VAL. If the operation is ok, then `TRUE' is 2198 Set SEC to the size VAL. If the operation is ok, then `TRUE' is
2162 returned, else `FALSE'. 2199 returned, else `FALSE'.
2163 2200
2164 Possible error returns: 2201 Possible error returns:
2165 * `bfd_error_invalid_operation' - Writing has started to the BFD, so 2202 * `bfd_error_invalid_operation' - Writing has started to the BFD, so
2166 setting the size is invalid. 2203 setting the size is invalid.
2167 2204
2168 2.6.5.15 `bfd_set_section_contents' 2205 2.6.5.17 `bfd_set_section_contents'
2169 ................................... 2206 ...................................
2170 2207
2171 *Synopsis* 2208 *Synopsis*
2172 bfd_boolean bfd_set_section_contents 2209 bfd_boolean bfd_set_section_contents
2173 (bfd *abfd, asection *section, const void *data, 2210 (bfd *abfd, asection *section, const void *data,
2174 file_ptr offset, bfd_size_type count); 2211 file_ptr offset, bfd_size_type count);
2175 *Description* 2212 *Description*
2176 Sets the contents of the section SECTION in BFD ABFD to the data 2213 Sets the contents of the section SECTION in BFD ABFD to the data
2177 starting in memory at DATA. The data is written to the output section 2214 starting in memory at DATA. The data is written to the output section
2178 starting at offset OFFSET for COUNT octets. 2215 starting at offset OFFSET for COUNT octets.
2179 2216
2180 Normally `TRUE' is returned, else `FALSE'. Possible error returns 2217 Normally `TRUE' is returned, else `FALSE'. Possible error returns
2181 are: 2218 are:
2182 * `bfd_error_no_contents' - The output section does not have the 2219 * `bfd_error_no_contents' - The output section does not have the
2183 `SEC_HAS_CONTENTS' attribute, so nothing can be written to it. 2220 `SEC_HAS_CONTENTS' attribute, so nothing can be written to it.
2184 2221
2185 * and some more too 2222 * and some more too
2186 This routine is front end to the back end function 2223 This routine is front end to the back end function
2187 `_bfd_set_section_contents'. 2224 `_bfd_set_section_contents'.
2188 2225
2189 2.6.5.16 `bfd_get_section_contents' 2226 2.6.5.18 `bfd_get_section_contents'
2190 ................................... 2227 ...................................
2191 2228
2192 *Synopsis* 2229 *Synopsis*
2193 bfd_boolean bfd_get_section_contents 2230 bfd_boolean bfd_get_section_contents
2194 (bfd *abfd, asection *section, void *location, file_ptr offset, 2231 (bfd *abfd, asection *section, void *location, file_ptr offset,
2195 bfd_size_type count); 2232 bfd_size_type count);
2196 *Description* 2233 *Description*
2197 Read data from SECTION in BFD ABFD into memory starting at LOCATION. 2234 Read data from SECTION in BFD ABFD into memory starting at LOCATION.
2198 The data is read at an offset of OFFSET from the start of the input 2235 The data is read at an offset of OFFSET from the start of the input
2199 section, and is read for COUNT bytes. 2236 section, and is read for COUNT bytes.
2200 2237
2201 If the contents of a constructor with the `SEC_CONSTRUCTOR' flag set 2238 If the contents of a constructor with the `SEC_CONSTRUCTOR' flag set
2202 are requested or if the section does not have the `SEC_HAS_CONTENTS' 2239 are requested or if the section does not have the `SEC_HAS_CONTENTS'
2203 flag set, then the LOCATION is filled with zeroes. If no errors occur, 2240 flag set, then the LOCATION is filled with zeroes. If no errors occur,
2204 `TRUE' is returned, else `FALSE'. 2241 `TRUE' is returned, else `FALSE'.
2205 2242
2206 2.6.5.17 `bfd_malloc_and_get_section' 2243 2.6.5.19 `bfd_malloc_and_get_section'
2207 ..................................... 2244 .....................................
2208 2245
2209 *Synopsis* 2246 *Synopsis*
2210 bfd_boolean bfd_malloc_and_get_section 2247 bfd_boolean bfd_malloc_and_get_section
2211 (bfd *abfd, asection *section, bfd_byte **buf); 2248 (bfd *abfd, asection *section, bfd_byte **buf);
2212 *Description* 2249 *Description*
2213 Read all data from SECTION in BFD ABFD into a buffer, *BUF, malloc'd by 2250 Read all data from SECTION in BFD ABFD into a buffer, *BUF, malloc'd by
2214 this function. 2251 this function.
2215 2252
2216 2.6.5.18 `bfd_copy_private_section_data' 2253 2.6.5.20 `bfd_copy_private_section_data'
2217 ........................................ 2254 ........................................
2218 2255
2219 *Synopsis* 2256 *Synopsis*
2220 bfd_boolean bfd_copy_private_section_data 2257 bfd_boolean bfd_copy_private_section_data
2221 (bfd *ibfd, asection *isec, bfd *obfd, asection *osec); 2258 (bfd *ibfd, asection *isec, bfd *obfd, asection *osec);
2222 *Description* 2259 *Description*
2223 Copy private section information from ISEC in the BFD IBFD to the 2260 Copy private section information from ISEC in the BFD IBFD to the
2224 section OSEC in the BFD OBFD. Return `TRUE' on success, `FALSE' on 2261 section OSEC in the BFD OBFD. Return `TRUE' on success, `FALSE' on
2225 error. Possible error returns are: 2262 error. Possible error returns are:
2226 2263
2227 * `bfd_error_no_memory' - Not enough memory exists to create private 2264 * `bfd_error_no_memory' - Not enough memory exists to create private
2228 data for OSEC. 2265 data for OSEC.
2229 2266
2230 #define bfd_copy_private_section_data(ibfd, isection, obfd, osection) \ 2267 #define bfd_copy_private_section_data(ibfd, isection, obfd, osection) \
2231 BFD_SEND (obfd, _bfd_copy_private_section_data, \ 2268 BFD_SEND (obfd, _bfd_copy_private_section_data, \
2232 (ibfd, isection, obfd, osection)) 2269 (ibfd, isection, obfd, osection))
2233 2270
2234 2.6.5.19 `bfd_generic_is_group_section' 2271 2.6.5.21 `bfd_generic_is_group_section'
2235 ....................................... 2272 .......................................
2236 2273
2237 *Synopsis* 2274 *Synopsis*
2238 bfd_boolean bfd_generic_is_group_section (bfd *, const asection *sec); 2275 bfd_boolean bfd_generic_is_group_section (bfd *, const asection *sec);
2239 *Description* 2276 *Description*
2240 Returns TRUE if SEC is a member of a group. 2277 Returns TRUE if SEC is a member of a group.
2241 2278
2242 2.6.5.20 `bfd_generic_discard_group' 2279 2.6.5.22 `bfd_generic_discard_group'
2243 .................................... 2280 ....................................
2244 2281
2245 *Synopsis* 2282 *Synopsis*
2246 bfd_boolean bfd_generic_discard_group (bfd *abfd, asection *group); 2283 bfd_boolean bfd_generic_discard_group (bfd *abfd, asection *group);
2247 *Description* 2284 *Description*
2248 Remove all members of GROUP from the output. 2285 Remove all members of GROUP from the output.
2249 2286
2250  2287 
2251 File: bfd.info, Node: Symbols, Next: Archives, Prev: Sections, Up: BFD front end 2288 File: bfd.info, Node: Symbols, Next: Archives, Prev: Sections, Up: BFD front end
2252 2289
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
2327 2364
2328 Writing of a symbol table is automatic when a BFD open for writing is 2365 Writing of a symbol table is automatic when a BFD open for writing is
2329 closed. The application attaches a vector of pointers to pointers to 2366 closed. The application attaches a vector of pointers to pointers to
2330 symbols to the BFD being written, and fills in the symbol count. The 2367 symbols to the BFD being written, and fills in the symbol count. The
2331 close and cleanup code reads through the table provided and performs 2368 close and cleanup code reads through the table provided and performs
2332 all the necessary operations. The BFD output code must always be 2369 all the necessary operations. The BFD output code must always be
2333 provided with an "owned" symbol: one which has come from another BFD, 2370 provided with an "owned" symbol: one which has come from another BFD,
2334 or one which has been created using `bfd_make_empty_symbol'. Here is an 2371 or one which has been created using `bfd_make_empty_symbol'. Here is an
2335 example showing the creation of a symbol table with only one element: 2372 example showing the creation of a symbol table with only one element:
2336 2373
2374 #include "sysdep.h"
2337 #include "bfd.h" 2375 #include "bfd.h"
2338 int main (void) 2376 int main (void)
2339 { 2377 {
2340 bfd *abfd; 2378 bfd *abfd;
2341 asymbol *ptrs[2]; 2379 asymbol *ptrs[2];
2342 asymbol *new; 2380 asymbol *new;
2343 2381
2344 abfd = bfd_openw ("foo","a.out-sunos-big"); 2382 abfd = bfd_openw ("foo","a.out-sunos-big");
2345 bfd_set_format (abfd, bfd_object); 2383 bfd_set_format (abfd, bfd_object);
2346 new = bfd_make_empty_symbol (abfd); 2384 new = bfd_make_empty_symbol (abfd);
(...skipping 1138 matching lines...) Expand 10 before | Expand all | Expand 10 after
3485 -- : BFD_RELOC_SPARC_5 3523 -- : BFD_RELOC_SPARC_5
3486 -- : BFD_RELOC_SPARC_DISP64 3524 -- : BFD_RELOC_SPARC_DISP64
3487 -- : BFD_RELOC_SPARC_PLT32 3525 -- : BFD_RELOC_SPARC_PLT32
3488 -- : BFD_RELOC_SPARC_PLT64 3526 -- : BFD_RELOC_SPARC_PLT64
3489 -- : BFD_RELOC_SPARC_HIX22 3527 -- : BFD_RELOC_SPARC_HIX22
3490 -- : BFD_RELOC_SPARC_LOX10 3528 -- : BFD_RELOC_SPARC_LOX10
3491 -- : BFD_RELOC_SPARC_H44 3529 -- : BFD_RELOC_SPARC_H44
3492 -- : BFD_RELOC_SPARC_M44 3530 -- : BFD_RELOC_SPARC_M44
3493 -- : BFD_RELOC_SPARC_L44 3531 -- : BFD_RELOC_SPARC_L44
3494 -- : BFD_RELOC_SPARC_REGISTER 3532 -- : BFD_RELOC_SPARC_REGISTER
3533 -- : BFD_RELOC_SPARC_H34
3534 -- : BFD_RELOC_SPARC_SIZE32
3535 -- : BFD_RELOC_SPARC_SIZE64
3536 -- : BFD_RELOC_SPARC_WDISP10
3495 SPARC64 relocations 3537 SPARC64 relocations
3496 3538
3497 -- : BFD_RELOC_SPARC_REV32 3539 -- : BFD_RELOC_SPARC_REV32
3498 SPARC little endian relocation 3540 SPARC little endian relocation
3499 3541
3500 -- : BFD_RELOC_SPARC_TLS_GD_HI22 3542 -- : BFD_RELOC_SPARC_TLS_GD_HI22
3501 -- : BFD_RELOC_SPARC_TLS_GD_LO10 3543 -- : BFD_RELOC_SPARC_TLS_GD_LO10
3502 -- : BFD_RELOC_SPARC_TLS_GD_ADD 3544 -- : BFD_RELOC_SPARC_TLS_GD_ADD
3503 -- : BFD_RELOC_SPARC_TLS_GD_CALL 3545 -- : BFD_RELOC_SPARC_TLS_GD_CALL
3504 -- : BFD_RELOC_SPARC_TLS_LDM_HI22 3546 -- : BFD_RELOC_SPARC_TLS_LDM_HI22
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
3681 3723
3682 -- : BFD_RELOC_MIPS16_HI16_S 3724 -- : BFD_RELOC_MIPS16_HI16_S
3683 MIPS16 high 16 bits of 32-bit value but the low 16 bits will be 3725 MIPS16 high 16 bits of 32-bit value but the low 16 bits will be
3684 sign extended and added to form the final result. If the low 16 3726 sign extended and added to form the final result. If the low 16
3685 bits form a negative number, we need to add one to the high value 3727 bits form a negative number, we need to add one to the high value
3686 to compensate for the borrow when the low bits are added. 3728 to compensate for the borrow when the low bits are added.
3687 3729
3688 -- : BFD_RELOC_MIPS16_LO16 3730 -- : BFD_RELOC_MIPS16_LO16
3689 MIPS16 low 16 bits. 3731 MIPS16 low 16 bits.
3690 3732
3733 -- : BFD_RELOC_MIPS16_TLS_GD
3734 -- : BFD_RELOC_MIPS16_TLS_LDM
3735 -- : BFD_RELOC_MIPS16_TLS_DTPREL_HI16
3736 -- : BFD_RELOC_MIPS16_TLS_DTPREL_LO16
3737 -- : BFD_RELOC_MIPS16_TLS_GOTTPREL
3738 -- : BFD_RELOC_MIPS16_TLS_TPREL_HI16
3739 -- : BFD_RELOC_MIPS16_TLS_TPREL_LO16
3740 MIPS16 TLS relocations
3741
3691 -- : BFD_RELOC_MIPS_LITERAL 3742 -- : BFD_RELOC_MIPS_LITERAL
3692 -- : BFD_RELOC_MICROMIPS_LITERAL 3743 -- : BFD_RELOC_MICROMIPS_LITERAL
3693 Relocation against a MIPS literal section. 3744 Relocation against a MIPS literal section.
3694 3745
3695 -- : BFD_RELOC_MICROMIPS_7_PCREL_S1 3746 -- : BFD_RELOC_MICROMIPS_7_PCREL_S1
3696 -- : BFD_RELOC_MICROMIPS_10_PCREL_S1 3747 -- : BFD_RELOC_MICROMIPS_10_PCREL_S1
3697 -- : BFD_RELOC_MICROMIPS_16_PCREL_S1 3748 -- : BFD_RELOC_MICROMIPS_16_PCREL_S1
3698 microMIPS PC-relative relocations. 3749 microMIPS PC-relative relocations.
3699 3750
3700 -- : BFD_RELOC_MICROMIPS_GPREL16 3751 -- : BFD_RELOC_MICROMIPS_GPREL16
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
3837 3888
3838 -- : BFD_RELOC_MN10300_SYM_DIFF 3889 -- : BFD_RELOC_MN10300_SYM_DIFF
3839 Together with another reloc targeted at the same location, allows 3890 Together with another reloc targeted at the same location, allows
3840 for a value that is the difference of two symbols in the same 3891 for a value that is the difference of two symbols in the same
3841 section. 3892 section.
3842 3893
3843 -- : BFD_RELOC_MN10300_ALIGN 3894 -- : BFD_RELOC_MN10300_ALIGN
3844 The addend of this reloc is an alignment power that must be 3895 The addend of this reloc is an alignment power that must be
3845 honoured at the offset's location, regardless of linker relaxation. 3896 honoured at the offset's location, regardless of linker relaxation.
3846 3897
3898 -- : BFD_RELOC_MN10300_TLS_GD
3899 -- : BFD_RELOC_MN10300_TLS_LD
3900 -- : BFD_RELOC_MN10300_TLS_LDO
3901 -- : BFD_RELOC_MN10300_TLS_GOTIE
3902 -- : BFD_RELOC_MN10300_TLS_IE
3903 -- : BFD_RELOC_MN10300_TLS_LE
3904 -- : BFD_RELOC_MN10300_TLS_DTPMOD
3905 -- : BFD_RELOC_MN10300_TLS_DTPOFF
3906 -- : BFD_RELOC_MN10300_TLS_TPOFF
3907 Various TLS-related relocations.
3908
3909 -- : BFD_RELOC_MN10300_32_PCREL
3910 This is a 32bit pcrel reloc for the mn10300, offset by two bytes
3911 in the instruction.
3912
3913 -- : BFD_RELOC_MN10300_16_PCREL
3914 This is a 16bit pcrel reloc for the mn10300, offset by two bytes
3915 in the instruction.
3916
3847 -- : BFD_RELOC_386_GOT32 3917 -- : BFD_RELOC_386_GOT32
3848 -- : BFD_RELOC_386_PLT32 3918 -- : BFD_RELOC_386_PLT32
3849 -- : BFD_RELOC_386_COPY 3919 -- : BFD_RELOC_386_COPY
3850 -- : BFD_RELOC_386_GLOB_DAT 3920 -- : BFD_RELOC_386_GLOB_DAT
3851 -- : BFD_RELOC_386_JUMP_SLOT 3921 -- : BFD_RELOC_386_JUMP_SLOT
3852 -- : BFD_RELOC_386_RELATIVE 3922 -- : BFD_RELOC_386_RELATIVE
3853 -- : BFD_RELOC_386_GOTOFF 3923 -- : BFD_RELOC_386_GOTOFF
3854 -- : BFD_RELOC_386_GOTPC 3924 -- : BFD_RELOC_386_GOTPC
3855 -- : BFD_RELOC_386_TLS_TPOFF 3925 -- : BFD_RELOC_386_TLS_TPOFF
3856 -- : BFD_RELOC_386_TLS_IE 3926 -- : BFD_RELOC_386_TLS_IE
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
3948 -- : BFD_RELOC_PPC_EMB_SDA2I16 4018 -- : BFD_RELOC_PPC_EMB_SDA2I16
3949 -- : BFD_RELOC_PPC_EMB_SDA2REL 4019 -- : BFD_RELOC_PPC_EMB_SDA2REL
3950 -- : BFD_RELOC_PPC_EMB_SDA21 4020 -- : BFD_RELOC_PPC_EMB_SDA21
3951 -- : BFD_RELOC_PPC_EMB_MRKREF 4021 -- : BFD_RELOC_PPC_EMB_MRKREF
3952 -- : BFD_RELOC_PPC_EMB_RELSEC16 4022 -- : BFD_RELOC_PPC_EMB_RELSEC16
3953 -- : BFD_RELOC_PPC_EMB_RELST_LO 4023 -- : BFD_RELOC_PPC_EMB_RELST_LO
3954 -- : BFD_RELOC_PPC_EMB_RELST_HI 4024 -- : BFD_RELOC_PPC_EMB_RELST_HI
3955 -- : BFD_RELOC_PPC_EMB_RELST_HA 4025 -- : BFD_RELOC_PPC_EMB_RELST_HA
3956 -- : BFD_RELOC_PPC_EMB_BIT_FLD 4026 -- : BFD_RELOC_PPC_EMB_BIT_FLD
3957 -- : BFD_RELOC_PPC_EMB_RELSDA 4027 -- : BFD_RELOC_PPC_EMB_RELSDA
4028 -- : BFD_RELOC_PPC_VLE_REL8
4029 -- : BFD_RELOC_PPC_VLE_REL15
4030 -- : BFD_RELOC_PPC_VLE_REL24
4031 -- : BFD_RELOC_PPC_VLE_LO16A
4032 -- : BFD_RELOC_PPC_VLE_LO16D
4033 -- : BFD_RELOC_PPC_VLE_HI16A
4034 -- : BFD_RELOC_PPC_VLE_HI16D
4035 -- : BFD_RELOC_PPC_VLE_HA16A
4036 -- : BFD_RELOC_PPC_VLE_HA16D
4037 -- : BFD_RELOC_PPC_VLE_SDA21
4038 -- : BFD_RELOC_PPC_VLE_SDA21_LO
4039 -- : BFD_RELOC_PPC_VLE_SDAREL_LO16A
4040 -- : BFD_RELOC_PPC_VLE_SDAREL_LO16D
4041 -- : BFD_RELOC_PPC_VLE_SDAREL_HI16A
4042 -- : BFD_RELOC_PPC_VLE_SDAREL_HI16D
4043 -- : BFD_RELOC_PPC_VLE_SDAREL_HA16A
4044 -- : BFD_RELOC_PPC_VLE_SDAREL_HA16D
3958 -- : BFD_RELOC_PPC64_HIGHER 4045 -- : BFD_RELOC_PPC64_HIGHER
3959 -- : BFD_RELOC_PPC64_HIGHER_S 4046 -- : BFD_RELOC_PPC64_HIGHER_S
3960 -- : BFD_RELOC_PPC64_HIGHEST 4047 -- : BFD_RELOC_PPC64_HIGHEST
3961 -- : BFD_RELOC_PPC64_HIGHEST_S 4048 -- : BFD_RELOC_PPC64_HIGHEST_S
3962 -- : BFD_RELOC_PPC64_TOC16_LO 4049 -- : BFD_RELOC_PPC64_TOC16_LO
3963 -- : BFD_RELOC_PPC64_TOC16_HI 4050 -- : BFD_RELOC_PPC64_TOC16_HI
3964 -- : BFD_RELOC_PPC64_TOC16_HA 4051 -- : BFD_RELOC_PPC64_TOC16_HA
3965 -- : BFD_RELOC_PPC64_TOC 4052 -- : BFD_RELOC_PPC64_TOC
3966 -- : BFD_RELOC_PPC64_PLTGOT16 4053 -- : BFD_RELOC_PPC64_PLTGOT16
3967 -- : BFD_RELOC_PPC64_PLTGOT16_LO 4054 -- : BFD_RELOC_PPC64_PLTGOT16_LO
(...skipping 699 matching lines...) Expand 10 before | Expand all | Expand 10 after
4667 4754
4668 -- : BFD_RELOC_V850_32_GOTOFF 4755 -- : BFD_RELOC_V850_32_GOTOFF
4669 DSO relocations. 4756 DSO relocations.
4670 4757
4671 -- : BFD_RELOC_V850_CODE 4758 -- : BFD_RELOC_V850_CODE
4672 start code. 4759 start code.
4673 4760
4674 -- : BFD_RELOC_V850_DATA 4761 -- : BFD_RELOC_V850_DATA
4675 start data in text. 4762 start data in text.
4676 4763
4677 -- : BFD_RELOC_MN10300_32_PCREL
4678 This is a 32bit pcrel reloc for the mn10300, offset by two bytes
4679 in the instruction.
4680
4681 -- : BFD_RELOC_MN10300_16_PCREL
4682 This is a 16bit pcrel reloc for the mn10300, offset by two bytes
4683 in the instruction.
4684
4685 -- : BFD_RELOC_TIC30_LDP 4764 -- : BFD_RELOC_TIC30_LDP
4686 This is a 8bit DP reloc for the tms320c30, where the most 4765 This is a 8bit DP reloc for the tms320c30, where the most
4687 significant 8 bits of a 24 bit word are placed into the least 4766 significant 8 bits of a 24 bit word are placed into the least
4688 significant 8 bits of the opcode. 4767 significant 8 bits of the opcode.
4689 4768
4690 -- : BFD_RELOC_TIC54X_PARTLS7 4769 -- : BFD_RELOC_TIC54X_PARTLS7
4691 This is a 7bit reloc for the tms320c54x, where the least 4770 This is a 7bit reloc for the tms320c54x, where the least
4692 significant 7 bits of a 16 bit word are placed into the least 4771 significant 7 bits of a 16 bit word are placed into the least
4693 significant 7 bits of the opcode. 4772 significant 7 bits of the opcode.
4694 4773
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
4948 absolute addressing with ldi with overflow check to linktime 5027 absolute addressing with ldi with overflow check to linktime
4949 5028
4950 -- : BFD_RELOC_AVR_6 5029 -- : BFD_RELOC_AVR_6
4951 This is a 6 bit reloc for the AVR that stores offset for ldd/std 5030 This is a 6 bit reloc for the AVR that stores offset for ldd/std
4952 instructions 5031 instructions
4953 5032
4954 -- : BFD_RELOC_AVR_6_ADIW 5033 -- : BFD_RELOC_AVR_6_ADIW
4955 This is a 6 bit reloc for the AVR that stores offset for adiw/sbiw 5034 This is a 6 bit reloc for the AVR that stores offset for adiw/sbiw
4956 instructions 5035 instructions
4957 5036
5037 -- : BFD_RELOC_AVR_8_LO
5038 This is a 8 bit reloc for the AVR that stores bits 0..7 of a symbol
5039 in .byte lo8(symbol)
5040
5041 -- : BFD_RELOC_AVR_8_HI
5042 This is a 8 bit reloc for the AVR that stores bits 8..15 of a
5043 symbol in .byte hi8(symbol)
5044
5045 -- : BFD_RELOC_AVR_8_HLO
5046 This is a 8 bit reloc for the AVR that stores bits 16..23 of a
5047 symbol in .byte hlo8(symbol)
5048
4958 -- : BFD_RELOC_RL78_NEG8 5049 -- : BFD_RELOC_RL78_NEG8
4959 -- : BFD_RELOC_RL78_NEG16 5050 -- : BFD_RELOC_RL78_NEG16
4960 -- : BFD_RELOC_RL78_NEG24 5051 -- : BFD_RELOC_RL78_NEG24
4961 -- : BFD_RELOC_RL78_NEG32 5052 -- : BFD_RELOC_RL78_NEG32
4962 -- : BFD_RELOC_RL78_16_OP 5053 -- : BFD_RELOC_RL78_16_OP
4963 -- : BFD_RELOC_RL78_24_OP 5054 -- : BFD_RELOC_RL78_24_OP
4964 -- : BFD_RELOC_RL78_32_OP 5055 -- : BFD_RELOC_RL78_32_OP
4965 -- : BFD_RELOC_RL78_8U 5056 -- : BFD_RELOC_RL78_8U
4966 -- : BFD_RELOC_RL78_16U 5057 -- : BFD_RELOC_RL78_16U
4967 -- : BFD_RELOC_RL78_24U 5058 -- : BFD_RELOC_RL78_24U
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
5117 -- : BFD_RELOC_390_TLS_DTPOFF 5208 -- : BFD_RELOC_390_TLS_DTPOFF
5118 -- : BFD_RELOC_390_TLS_TPOFF 5209 -- : BFD_RELOC_390_TLS_TPOFF
5119 s390 tls relocations. 5210 s390 tls relocations.
5120 5211
5121 -- : BFD_RELOC_390_20 5212 -- : BFD_RELOC_390_20
5122 -- : BFD_RELOC_390_GOT20 5213 -- : BFD_RELOC_390_GOT20
5123 -- : BFD_RELOC_390_GOTPLT20 5214 -- : BFD_RELOC_390_GOTPLT20
5124 -- : BFD_RELOC_390_TLS_GOTIE20 5215 -- : BFD_RELOC_390_TLS_GOTIE20
5125 Long displacement extension. 5216 Long displacement extension.
5126 5217
5218 -- : BFD_RELOC_390_IRELATIVE
5219 STT_GNU_IFUNC relocation.
5220
5127 -- : BFD_RELOC_SCORE_GPREL15 5221 -- : BFD_RELOC_SCORE_GPREL15
5128 Score relocations Low 16 bit for load/store 5222 Score relocations Low 16 bit for load/store
5129 5223
5130 -- : BFD_RELOC_SCORE_DUMMY2 5224 -- : BFD_RELOC_SCORE_DUMMY2
5131 -- : BFD_RELOC_SCORE_JMP 5225 -- : BFD_RELOC_SCORE_JMP
5132 This is a 24-bit reloc with the right 1 bit assumed to be 0 5226 This is a 24-bit reloc with the right 1 bit assumed to be 0
5133 5227
5134 -- : BFD_RELOC_SCORE_BRANCH 5228 -- : BFD_RELOC_SCORE_BRANCH
5135 This is a 19-bit reloc with the right 1 bit assumed to be 0 5229 This is a 19-bit reloc with the right 1 bit assumed to be 0
5136 5230
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
5325 5419
5326 -- : BFD_RELOC_M68HC11_24 5420 -- : BFD_RELOC_M68HC11_24
5327 Motorola 68HC11 reloc. This is a 24-bit reloc that represents the 5421 Motorola 68HC11 reloc. This is a 24-bit reloc that represents the
5328 address with a 16-bit value and a 8-bit page number. The symbol 5422 address with a 16-bit value and a 8-bit page number. The symbol
5329 address is transformed to follow the 16K memory bank of 68HC12 5423 address is transformed to follow the 16K memory bank of 68HC12
5330 (seen as mapped in the window). 5424 (seen as mapped in the window).
5331 5425
5332 -- : BFD_RELOC_M68HC12_5B 5426 -- : BFD_RELOC_M68HC12_5B
5333 Motorola 68HC12 reloc. This is the 5 bits of a value. 5427 Motorola 68HC12 reloc. This is the 5 bits of a value.
5334 5428
5429 -- : BFD_RELOC_XGATE_RL_JUMP
5430 Freescale XGATE reloc. This reloc marks the beginning of a
5431 bra/jal instruction.
5432
5433 -- : BFD_RELOC_XGATE_RL_GROUP
5434 Freescale XGATE reloc. This reloc marks a group of several
5435 instructions that gcc generates and for which the linker
5436 relaxation pass can modify and/or remove some of them.
5437
5438 -- : BFD_RELOC_XGATE_LO16
5439 Freescale XGATE reloc. This is the 16-bit lower part of an
5440 address. It is used for the '16-bit' instructions.
5441
5442 -- : BFD_RELOC_XGATE_GPAGE
5443 Freescale XGATE reloc.
5444
5445 -- : BFD_RELOC_XGATE_24
5446 Freescale XGATE reloc.
5447
5448 -- : BFD_RELOC_XGATE_PCREL_9
5449 Freescale XGATE reloc. This is a 9-bit pc-relative reloc.
5450
5451 -- : BFD_RELOC_XGATE_PCREL_10
5452 Freescale XGATE reloc. This is a 10-bit pc-relative reloc.
5453
5454 -- : BFD_RELOC_XGATE_IMM8_LO
5455 Freescale XGATE reloc. This is the 16-bit lower part of an
5456 address. It is used for the '16-bit' instructions.
5457
5458 -- : BFD_RELOC_XGATE_IMM8_HI
5459 Freescale XGATE reloc. This is the 16-bit higher part of an
5460 address. It is used for the '16-bit' instructions.
5461
5462 -- : BFD_RELOC_XGATE_IMM3
5463 Freescale XGATE reloc. This is a 3-bit pc-relative reloc.
5464
5465 -- : BFD_RELOC_XGATE_IMM4
5466 Freescale XGATE reloc. This is a 4-bit pc-relative reloc.
5467
5468 -- : BFD_RELOC_XGATE_IMM5
5469 Freescale XGATE reloc. This is a 5-bit pc-relative reloc.
5470
5471 -- : BFD_RELOC_M68HC12_9B
5472 Motorola 68HC12 reloc. This is the 9 bits of a value.
5473
5474 -- : BFD_RELOC_M68HC12_16B
5475 Motorola 68HC12 reloc. This is the 16 bits of a value.
5476
5477 -- : BFD_RELOC_M68HC12_9_PCREL
5478 Motorola 68HC12/XGATE reloc. This is a PCREL9 branch.
5479
5480 -- : BFD_RELOC_M68HC12_10_PCREL
5481 Motorola 68HC12/XGATE reloc. This is a PCREL10 branch.
5482
5483 -- : BFD_RELOC_M68HC12_LO8XG
5484 Motorola 68HC12/XGATE reloc. This is the 8 bit low part of an
5485 absolute address and immediately precedes a matching HI8XG part.
5486
5487 -- : BFD_RELOC_M68HC12_HI8XG
5488 Motorola 68HC12/XGATE reloc. This is the 8 bit high part of an
5489 absolute address and immediately follows a matching LO8XG part.
5490
5335 -- : BFD_RELOC_16C_NUM08 5491 -- : BFD_RELOC_16C_NUM08
5336 -- : BFD_RELOC_16C_NUM08_C 5492 -- : BFD_RELOC_16C_NUM08_C
5337 -- : BFD_RELOC_16C_NUM16 5493 -- : BFD_RELOC_16C_NUM16
5338 -- : BFD_RELOC_16C_NUM16_C 5494 -- : BFD_RELOC_16C_NUM16_C
5339 -- : BFD_RELOC_16C_NUM32 5495 -- : BFD_RELOC_16C_NUM32
5340 -- : BFD_RELOC_16C_NUM32_C 5496 -- : BFD_RELOC_16C_NUM32_C
5341 -- : BFD_RELOC_16C_DISP04 5497 -- : BFD_RELOC_16C_DISP04
5342 -- : BFD_RELOC_16C_DISP04_C 5498 -- : BFD_RELOC_16C_DISP04_C
5343 -- : BFD_RELOC_16C_DISP08 5499 -- : BFD_RELOC_16C_DISP08
5344 -- : BFD_RELOC_16C_DISP08_C 5500 -- : BFD_RELOC_16C_DISP08_C
(...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after
5691 -- : BFD_RELOC_LM32_COPY 5847 -- : BFD_RELOC_LM32_COPY
5692 -- : BFD_RELOC_LM32_GLOB_DAT 5848 -- : BFD_RELOC_LM32_GLOB_DAT
5693 -- : BFD_RELOC_LM32_JMP_SLOT 5849 -- : BFD_RELOC_LM32_JMP_SLOT
5694 -- : BFD_RELOC_LM32_RELATIVE 5850 -- : BFD_RELOC_LM32_RELATIVE
5695 Lattice Mico32 relocations. 5851 Lattice Mico32 relocations.
5696 5852
5697 -- : BFD_RELOC_MACH_O_SECTDIFF 5853 -- : BFD_RELOC_MACH_O_SECTDIFF
5698 Difference between two section addreses. Must be followed by a 5854 Difference between two section addreses. Must be followed by a
5699 BFD_RELOC_MACH_O_PAIR. 5855 BFD_RELOC_MACH_O_PAIR.
5700 5856
5857 -- : BFD_RELOC_MACH_O_LOCAL_SECTDIFF
5858 Like BFD_RELOC_MACH_O_SECTDIFF but with a local symbol.
5859
5701 -- : BFD_RELOC_MACH_O_PAIR 5860 -- : BFD_RELOC_MACH_O_PAIR
5702 Pair of relocation. Contains the first symbol. 5861 Pair of relocation. Contains the first symbol.
5703 5862
5704 -- : BFD_RELOC_MACH_O_X86_64_BRANCH32 5863 -- : BFD_RELOC_MACH_O_X86_64_BRANCH32
5705 -- : BFD_RELOC_MACH_O_X86_64_BRANCH8 5864 -- : BFD_RELOC_MACH_O_X86_64_BRANCH8
5706 PCREL relocations. They are marked as branch to create PLT entry 5865 PCREL relocations. They are marked as branch to create PLT entry
5707 if required. 5866 if required.
5708 5867
5709 -- : BFD_RELOC_MACH_O_X86_64_GOT 5868 -- : BFD_RELOC_MACH_O_X86_64_GOT
5710 Used when referencing a GOT entry. 5869 Used when referencing a GOT entry.
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
5819 -- : BFD_RELOC_TILEPRO_IMM16_X0_GOT_HA 5978 -- : BFD_RELOC_TILEPRO_IMM16_X0_GOT_HA
5820 -- : BFD_RELOC_TILEPRO_IMM16_X1_GOT_HA 5979 -- : BFD_RELOC_TILEPRO_IMM16_X1_GOT_HA
5821 -- : BFD_RELOC_TILEPRO_MMSTART_X0 5980 -- : BFD_RELOC_TILEPRO_MMSTART_X0
5822 -- : BFD_RELOC_TILEPRO_MMEND_X0 5981 -- : BFD_RELOC_TILEPRO_MMEND_X0
5823 -- : BFD_RELOC_TILEPRO_MMSTART_X1 5982 -- : BFD_RELOC_TILEPRO_MMSTART_X1
5824 -- : BFD_RELOC_TILEPRO_MMEND_X1 5983 -- : BFD_RELOC_TILEPRO_MMEND_X1
5825 -- : BFD_RELOC_TILEPRO_SHAMT_X0 5984 -- : BFD_RELOC_TILEPRO_SHAMT_X0
5826 -- : BFD_RELOC_TILEPRO_SHAMT_X1 5985 -- : BFD_RELOC_TILEPRO_SHAMT_X1
5827 -- : BFD_RELOC_TILEPRO_SHAMT_Y0 5986 -- : BFD_RELOC_TILEPRO_SHAMT_Y0
5828 -- : BFD_RELOC_TILEPRO_SHAMT_Y1 5987 -- : BFD_RELOC_TILEPRO_SHAMT_Y1
5988 -- : BFD_RELOC_TILEPRO_TLS_GD_CALL
5989 -- : BFD_RELOC_TILEPRO_IMM8_X0_TLS_GD_ADD
5990 -- : BFD_RELOC_TILEPRO_IMM8_X1_TLS_GD_ADD
5991 -- : BFD_RELOC_TILEPRO_IMM8_Y0_TLS_GD_ADD
5992 -- : BFD_RELOC_TILEPRO_IMM8_Y1_TLS_GD_ADD
5993 -- : BFD_RELOC_TILEPRO_TLS_IE_LOAD
5829 -- : BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD 5994 -- : BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD
5830 -- : BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD 5995 -- : BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD
5831 -- : BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_LO 5996 -- : BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_LO
5832 -- : BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD_LO 5997 -- : BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD_LO
5833 -- : BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_HI 5998 -- : BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_HI
5834 -- : BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD_HI 5999 -- : BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD_HI
5835 -- : BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_HA 6000 -- : BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_HA
5836 -- : BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD_HA 6001 -- : BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD_HA
5837 -- : BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE 6002 -- : BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE
5838 -- : BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE 6003 -- : BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE
5839 -- : BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE_LO 6004 -- : BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE_LO
5840 -- : BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE_LO 6005 -- : BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE_LO
5841 -- : BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE_HI 6006 -- : BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE_HI
5842 -- : BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE_HI 6007 -- : BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE_HI
5843 -- : BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE_HA 6008 -- : BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE_HA
5844 -- : BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE_HA 6009 -- : BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE_HA
5845 -- : BFD_RELOC_TILEPRO_TLS_DTPMOD32 6010 -- : BFD_RELOC_TILEPRO_TLS_DTPMOD32
5846 -- : BFD_RELOC_TILEPRO_TLS_DTPOFF32 6011 -- : BFD_RELOC_TILEPRO_TLS_DTPOFF32
5847 -- : BFD_RELOC_TILEPRO_TLS_TPOFF32 6012 -- : BFD_RELOC_TILEPRO_TLS_TPOFF32
6013 -- : BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE
6014 -- : BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE
6015 -- : BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE_LO
6016 -- : BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE_LO
6017 -- : BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE_HI
6018 -- : BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE_HI
6019 -- : BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE_HA
6020 -- : BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE_HA
5848 Tilera TILEPro Relocations. 6021 Tilera TILEPro Relocations.
5849 6022
5850 -- : BFD_RELOC_TILEGX_HW0 6023 -- : BFD_RELOC_TILEGX_HW0
5851 -- : BFD_RELOC_TILEGX_HW1 6024 -- : BFD_RELOC_TILEGX_HW1
5852 -- : BFD_RELOC_TILEGX_HW2 6025 -- : BFD_RELOC_TILEGX_HW2
5853 -- : BFD_RELOC_TILEGX_HW3 6026 -- : BFD_RELOC_TILEGX_HW3
5854 -- : BFD_RELOC_TILEGX_HW0_LAST 6027 -- : BFD_RELOC_TILEGX_HW0_LAST
5855 -- : BFD_RELOC_TILEGX_HW1_LAST 6028 -- : BFD_RELOC_TILEGX_HW1_LAST
5856 -- : BFD_RELOC_TILEGX_HW2_LAST 6029 -- : BFD_RELOC_TILEGX_HW2_LAST
5857 -- : BFD_RELOC_TILEGX_COPY 6030 -- : BFD_RELOC_TILEGX_COPY
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
5897 -- : BFD_RELOC_TILEGX_IMM16_X0_HW3_PCREL 6070 -- : BFD_RELOC_TILEGX_IMM16_X0_HW3_PCREL
5898 -- : BFD_RELOC_TILEGX_IMM16_X1_HW3_PCREL 6071 -- : BFD_RELOC_TILEGX_IMM16_X1_HW3_PCREL
5899 -- : BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_PCREL 6072 -- : BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_PCREL
5900 -- : BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_PCREL 6073 -- : BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_PCREL
5901 -- : BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_PCREL 6074 -- : BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_PCREL
5902 -- : BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_PCREL 6075 -- : BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_PCREL
5903 -- : BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST_PCREL 6076 -- : BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST_PCREL
5904 -- : BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST_PCREL 6077 -- : BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST_PCREL
5905 -- : BFD_RELOC_TILEGX_IMM16_X0_HW0_GOT 6078 -- : BFD_RELOC_TILEGX_IMM16_X0_HW0_GOT
5906 -- : BFD_RELOC_TILEGX_IMM16_X1_HW0_GOT 6079 -- : BFD_RELOC_TILEGX_IMM16_X1_HW0_GOT
5907 -- : BFD_RELOC_TILEGX_IMM16_X0_HW1_GOT
5908 -- : BFD_RELOC_TILEGX_IMM16_X1_HW1_GOT
5909 -- : BFD_RELOC_TILEGX_IMM16_X0_HW2_GOT
5910 -- : BFD_RELOC_TILEGX_IMM16_X1_HW2_GOT
5911 -- : BFD_RELOC_TILEGX_IMM16_X0_HW3_GOT
5912 -- : BFD_RELOC_TILEGX_IMM16_X1_HW3_GOT
5913 -- : BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_GOT 6080 -- : BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_GOT
5914 -- : BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_GOT 6081 -- : BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_GOT
5915 -- : BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_GOT 6082 -- : BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_GOT
5916 -- : BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_GOT 6083 -- : BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_GOT
5917 -- : BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST_GOT
5918 -- : BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST_GOT
5919 -- : BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_GD 6084 -- : BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_GD
5920 -- : BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_GD 6085 -- : BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_GD
5921 -- : BFD_RELOC_TILEGX_IMM16_X0_HW1_TLS_GD 6086 -- : BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_LE
5922 -- : BFD_RELOC_TILEGX_IMM16_X1_HW1_TLS_GD 6087 -- : BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_LE
5923 -- : BFD_RELOC_TILEGX_IMM16_X0_HW2_TLS_GD 6088 -- : BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_LE
5924 -- : BFD_RELOC_TILEGX_IMM16_X1_HW2_TLS_GD 6089 -- : BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_LE
5925 -- : BFD_RELOC_TILEGX_IMM16_X0_HW3_TLS_GD 6090 -- : BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_LE
5926 -- : BFD_RELOC_TILEGX_IMM16_X1_HW3_TLS_GD 6091 -- : BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_LE
5927 -- : BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_GD 6092 -- : BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_GD
5928 -- : BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_GD 6093 -- : BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_GD
5929 -- : BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_GD 6094 -- : BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_GD
5930 -- : BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_GD 6095 -- : BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_GD
5931 -- : BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST_TLS_GD
5932 -- : BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST_TLS_GD
5933 -- : BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_IE 6096 -- : BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_IE
5934 -- : BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_IE 6097 -- : BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_IE
5935 -- : BFD_RELOC_TILEGX_IMM16_X0_HW1_TLS_IE
5936 -- : BFD_RELOC_TILEGX_IMM16_X1_HW1_TLS_IE
5937 -- : BFD_RELOC_TILEGX_IMM16_X0_HW2_TLS_IE
5938 -- : BFD_RELOC_TILEGX_IMM16_X1_HW2_TLS_IE
5939 -- : BFD_RELOC_TILEGX_IMM16_X0_HW3_TLS_IE
5940 -- : BFD_RELOC_TILEGX_IMM16_X1_HW3_TLS_IE
5941 -- : BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_IE 6098 -- : BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_IE
5942 -- : BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_IE 6099 -- : BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_IE
5943 -- : BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_IE 6100 -- : BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_IE
5944 -- : BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_IE 6101 -- : BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_IE
5945 -- : BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST_TLS_IE
5946 -- : BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST_TLS_IE
5947 -- : BFD_RELOC_TILEGX_TLS_DTPMOD64 6102 -- : BFD_RELOC_TILEGX_TLS_DTPMOD64
5948 -- : BFD_RELOC_TILEGX_TLS_DTPOFF64 6103 -- : BFD_RELOC_TILEGX_TLS_DTPOFF64
5949 -- : BFD_RELOC_TILEGX_TLS_TPOFF64 6104 -- : BFD_RELOC_TILEGX_TLS_TPOFF64
5950 -- : BFD_RELOC_TILEGX_TLS_DTPMOD32 6105 -- : BFD_RELOC_TILEGX_TLS_DTPMOD32
5951 -- : BFD_RELOC_TILEGX_TLS_DTPOFF32 6106 -- : BFD_RELOC_TILEGX_TLS_DTPOFF32
5952 -- : BFD_RELOC_TILEGX_TLS_TPOFF32 6107 -- : BFD_RELOC_TILEGX_TLS_TPOFF32
6108 -- : BFD_RELOC_TILEGX_TLS_GD_CALL
6109 -- : BFD_RELOC_TILEGX_IMM8_X0_TLS_GD_ADD
6110 -- : BFD_RELOC_TILEGX_IMM8_X1_TLS_GD_ADD
6111 -- : BFD_RELOC_TILEGX_IMM8_Y0_TLS_GD_ADD
6112 -- : BFD_RELOC_TILEGX_IMM8_Y1_TLS_GD_ADD
6113 -- : BFD_RELOC_TILEGX_TLS_IE_LOAD
6114 -- : BFD_RELOC_TILEGX_IMM8_X0_TLS_ADD
6115 -- : BFD_RELOC_TILEGX_IMM8_X1_TLS_ADD
6116 -- : BFD_RELOC_TILEGX_IMM8_Y0_TLS_ADD
6117 -- : BFD_RELOC_TILEGX_IMM8_Y1_TLS_ADD
5953 Tilera TILE-Gx Relocations. 6118 Tilera TILE-Gx Relocations.
5954 6119
5955 -- : BFD_RELOC_EPIPHANY_SIMM8 6120 -- : BFD_RELOC_EPIPHANY_SIMM8
5956 Adapteva EPIPHANY - 8 bit signed pc-relative displacement 6121 Adapteva EPIPHANY - 8 bit signed pc-relative displacement
5957 6122
5958 -- : BFD_RELOC_EPIPHANY_SIMM24 6123 -- : BFD_RELOC_EPIPHANY_SIMM24
5959 Adapteva EPIPHANY - 24 bit signed pc-relative displacement 6124 Adapteva EPIPHANY - 24 bit signed pc-relative displacement
5960 6125
5961 -- : BFD_RELOC_EPIPHANY_HIGH 6126 -- : BFD_RELOC_EPIPHANY_HIGH
5962 Adapteva EPIPHANY - 16 most-significant bits of absolute address 6127 Adapteva EPIPHANY - 16 most-significant bits of absolute address
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
6027 bfd_boolean bfd_generic_gc_sections 6192 bfd_boolean bfd_generic_gc_sections
6028 (bfd *, struct bfd_link_info *); 6193 (bfd *, struct bfd_link_info *);
6029 *Description* 6194 *Description*
6030 Provides default handling for relaxing for back ends which don't do 6195 Provides default handling for relaxing for back ends which don't do
6031 section gc - i.e., does nothing. 6196 section gc - i.e., does nothing.
6032 6197
6033 2.10.2.7 `bfd_generic_lookup_section_flags' 6198 2.10.2.7 `bfd_generic_lookup_section_flags'
6034 ........................................... 6199 ...........................................
6035 6200
6036 *Synopsis* 6201 *Synopsis*
6037 void bfd_generic_lookup_section_flags 6202 bfd_boolean bfd_generic_lookup_section_flags
6038 (struct bfd_link_info *, struct flag_info *); 6203 (struct bfd_link_info *, struct flag_info *, asection *);
6039 *Description* 6204 *Description*
6040 Provides default handling for section flags lookup - i.e., does nothing. 6205 Provides default handling for section flags lookup - i.e., does nothing.
6206 Returns FALSE if the section should be omitted, otherwise TRUE.
6041 6207
6042 2.10.2.8 `bfd_generic_merge_sections' 6208 2.10.2.8 `bfd_generic_merge_sections'
6043 ..................................... 6209 .....................................
6044 6210
6045 *Synopsis* 6211 *Synopsis*
6046 bfd_boolean bfd_generic_merge_sections 6212 bfd_boolean bfd_generic_merge_sections
6047 (bfd *, struct bfd_link_info *); 6213 (bfd *, struct bfd_link_info *);
6048 *Description* 6214 *Description*
6049 Provides default handling for SEC_MERGE section merging for back ends 6215 Provides default handling for SEC_MERGE section merging for back ends
6050 which don't have SEC_MERGE support - i.e., does nothing. 6216 which don't have SEC_MERGE support - i.e., does nothing.
(...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after
6574 section of the BFD. */ 6740 section of the BFD. */
6575 bfd_boolean (*_bfd_final_link) (bfd *, struct bfd_link_info *); 6741 bfd_boolean (*_bfd_final_link) (bfd *, struct bfd_link_info *);
6576 6742
6577 /* Should this section be split up into smaller pieces during linking. * / 6743 /* Should this section be split up into smaller pieces during linking. * /
6578 bfd_boolean (*_bfd_link_split_section) (bfd *, struct bfd_section *); 6744 bfd_boolean (*_bfd_link_split_section) (bfd *, struct bfd_section *);
6579 6745
6580 /* Remove sections that are not referenced from the output. */ 6746 /* Remove sections that are not referenced from the output. */
6581 bfd_boolean (*_bfd_gc_sections) (bfd *, struct bfd_link_info *); 6747 bfd_boolean (*_bfd_gc_sections) (bfd *, struct bfd_link_info *);
6582 6748
6583 /* Sets the bitmask of allowed and disallowed section flags. */ 6749 /* Sets the bitmask of allowed and disallowed section flags. */
6584 void (*_bfd_lookup_section_flags) (struct bfd_link_info *, 6750 bfd_boolean (*_bfd_lookup_section_flags) (struct bfd_link_info *,
6585 struct flag_info *); 6751 struct flag_info *,
6752 asection *);
6586 6753
6587 /* Attempt to merge SEC_MERGE sections. */ 6754 /* Attempt to merge SEC_MERGE sections. */
6588 bfd_boolean (*_bfd_merge_sections) (bfd *, struct bfd_link_info *); 6755 bfd_boolean (*_bfd_merge_sections) (bfd *, struct bfd_link_info *);
6589 6756
6590 /* Is this section a member of a group? */ 6757 /* Is this section a member of a group? */
6591 bfd_boolean (*_bfd_is_group_section) (bfd *, const struct bfd_section *); 6758 bfd_boolean (*_bfd_is_group_section) (bfd *, const struct bfd_section *);
6592 6759
6593 /* Discard members of a group. */ 6760 /* Discard members of a group. */
6594 bfd_boolean (*_bfd_discard_group) (bfd *, struct bfd_section *); 6761 bfd_boolean (*_bfd_discard_group) (bfd *, struct bfd_section *);
6595 6762
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after
6915 #define bfd_mach_ppc_630 630 7082 #define bfd_mach_ppc_630 630
6916 #define bfd_mach_ppc_750 750 7083 #define bfd_mach_ppc_750 750
6917 #define bfd_mach_ppc_860 860 7084 #define bfd_mach_ppc_860 860
6918 #define bfd_mach_ppc_a35 35 7085 #define bfd_mach_ppc_a35 35
6919 #define bfd_mach_ppc_rs64ii 642 7086 #define bfd_mach_ppc_rs64ii 642
6920 #define bfd_mach_ppc_rs64iii 643 7087 #define bfd_mach_ppc_rs64iii 643
6921 #define bfd_mach_ppc_7400 7400 7088 #define bfd_mach_ppc_7400 7400
6922 #define bfd_mach_ppc_e500 500 7089 #define bfd_mach_ppc_e500 500
6923 #define bfd_mach_ppc_e500mc 5001 7090 #define bfd_mach_ppc_e500mc 5001
6924 #define bfd_mach_ppc_e500mc64 5005 7091 #define bfd_mach_ppc_e500mc64 5005
7092 #define bfd_mach_ppc_e5500 5006
7093 #define bfd_mach_ppc_e6500 5007
6925 #define bfd_mach_ppc_titan 83 7094 #define bfd_mach_ppc_titan 83
7095 #define bfd_mach_ppc_vle 84
6926 bfd_arch_rs6000, /* IBM RS/6000 */ 7096 bfd_arch_rs6000, /* IBM RS/6000 */
6927 #define bfd_mach_rs6k 6000 7097 #define bfd_mach_rs6k 6000
6928 #define bfd_mach_rs6k_rs1 6001 7098 #define bfd_mach_rs6k_rs1 6001
6929 #define bfd_mach_rs6k_rsc 6003 7099 #define bfd_mach_rs6k_rsc 6003
6930 #define bfd_mach_rs6k_rs2 6002 7100 #define bfd_mach_rs6k_rs2 6002
6931 bfd_arch_hppa, /* HP PA RISC */ 7101 bfd_arch_hppa, /* HP PA RISC */
6932 #define bfd_mach_hppa10 10 7102 #define bfd_mach_hppa10 10
6933 #define bfd_mach_hppa11 11 7103 #define bfd_mach_hppa11 11
6934 #define bfd_mach_hppa20 20 7104 #define bfd_mach_hppa20 20
6935 #define bfd_mach_hppa20w 25 7105 #define bfd_mach_hppa20w 25
6936 bfd_arch_d10v, /* Mitsubishi D10V */ 7106 bfd_arch_d10v, /* Mitsubishi D10V */
6937 #define bfd_mach_d10v 1 7107 #define bfd_mach_d10v 1
6938 #define bfd_mach_d10v_ts2 2 7108 #define bfd_mach_d10v_ts2 2
6939 #define bfd_mach_d10v_ts3 3 7109 #define bfd_mach_d10v_ts3 3
6940 bfd_arch_d30v, /* Mitsubishi D30V */ 7110 bfd_arch_d30v, /* Mitsubishi D30V */
6941 bfd_arch_dlx, /* DLX */ 7111 bfd_arch_dlx, /* DLX */
6942 bfd_arch_m68hc11, /* Motorola 68HC11 */ 7112 bfd_arch_m68hc11, /* Motorola 68HC11 */
6943 bfd_arch_m68hc12, /* Motorola 68HC12 */ 7113 bfd_arch_m68hc12, /* Motorola 68HC12 */
6944 #define bfd_mach_m6812_default 0 7114 #define bfd_mach_m6812_default 0
6945 #define bfd_mach_m6812 1 7115 #define bfd_mach_m6812 1
6946 #define bfd_mach_m6812s 2 7116 #define bfd_mach_m6812s 2
7117 bfd_arch_m9s12x, /* Freescale S12X */
7118 bfd_arch_m9s12xg, /* Freescale XGATE */
6947 bfd_arch_z8k, /* Zilog Z8000 */ 7119 bfd_arch_z8k, /* Zilog Z8000 */
6948 #define bfd_mach_z8001 1 7120 #define bfd_mach_z8001 1
6949 #define bfd_mach_z8002 2 7121 #define bfd_mach_z8002 2
6950 bfd_arch_h8500, /* Renesas H8/500 (formerly Hitachi H8/500) */ 7122 bfd_arch_h8500, /* Renesas H8/500 (formerly Hitachi H8/500) */
6951 bfd_arch_sh, /* Renesas / SuperH SH (formerly Hitachi SH) */ 7123 bfd_arch_sh, /* Renesas / SuperH SH (formerly Hitachi SH) */
6952 #define bfd_mach_sh 1 7124 #define bfd_mach_sh 1
6953 #define bfd_mach_sh2 0x20 7125 #define bfd_mach_sh2 0x20
6954 #define bfd_mach_sh_dsp 0x2d 7126 #define bfd_mach_sh_dsp 0x2d
6955 #define bfd_mach_sh2a 0x2a 7127 #define bfd_mach_sh2a 0x2a
6956 #define bfd_mach_sh2a_nofpu 0x2b 7128 #define bfd_mach_sh2a_nofpu 0x2b
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
7112 #define bfd_mach_msp31 31 7284 #define bfd_mach_msp31 31
7113 #define bfd_mach_msp32 32 7285 #define bfd_mach_msp32 32
7114 #define bfd_mach_msp33 33 7286 #define bfd_mach_msp33 33
7115 #define bfd_mach_msp41 41 7287 #define bfd_mach_msp41 41
7116 #define bfd_mach_msp42 42 7288 #define bfd_mach_msp42 42
7117 #define bfd_mach_msp43 43 7289 #define bfd_mach_msp43 43
7118 #define bfd_mach_msp44 44 7290 #define bfd_mach_msp44 44
7119 bfd_arch_xc16x, /* Infineon's XC16X Series. */ 7291 bfd_arch_xc16x, /* Infineon's XC16X Series. */
7120 #define bfd_mach_xc16x 1 7292 #define bfd_mach_xc16x 1
7121 #define bfd_mach_xc16xl 2 7293 #define bfd_mach_xc16xl 2
7122 #define bfd_mach_xc16xs 3 7294 #define bfd_mach_xc16xs 3
7295 bfd_arch_xgate, /* Freescale XGATE */
7296 #define bfd_mach_xgate 1
7123 bfd_arch_xtensa, /* Tensilica's Xtensa cores. */ 7297 bfd_arch_xtensa, /* Tensilica's Xtensa cores. */
7124 #define bfd_mach_xtensa 1 7298 #define bfd_mach_xtensa 1
7125 bfd_arch_z80, 7299 bfd_arch_z80,
7126 #define bfd_mach_z80strict 1 /* No undocumented opcodes. */ 7300 #define bfd_mach_z80strict 1 /* No undocumented opcodes. */
7127 #define bfd_mach_z80 3 /* With ixl, ixh, iyl, and iyh. */ 7301 #define bfd_mach_z80 3 /* With ixl, ixh, iyl, and iyh. */
7128 #define bfd_mach_z80full 7 /* All undocumented instructions. */ 7302 #define bfd_mach_z80full 7 /* All undocumented instructions. */
7129 #define bfd_mach_r800 11 /* R800: successor with multiplication. */ 7303 #define bfd_mach_r800 11 /* R800: successor with multiplication. */
7130 bfd_arch_lm32, /* Lattice Mico32 */ 7304 bfd_arch_lm32, /* Lattice Mico32 */
7131 #define bfd_mach_lm32 1 7305 #define bfd_mach_lm32 1
7132 bfd_arch_microblaze,/* Xilinx MicroBlaze. */ 7306 bfd_arch_microblaze,/* Xilinx MicroBlaze. */
7133 bfd_arch_tilepro, /* Tilera TILEPro */ 7307 bfd_arch_tilepro, /* Tilera TILEPro */
7134 bfd_arch_tilegx, /* Tilera TILE-Gx */ 7308 bfd_arch_tilegx, /* Tilera TILE-Gx */
7135 #define bfd_mach_tilepro 1 7309 #define bfd_mach_tilepro 1
7136 #define bfd_mach_tilegx 1 7310 #define bfd_mach_tilegx 1
7311 #define bfd_mach_tilegx32 2
7137 bfd_arch_last 7312 bfd_arch_last
7138 }; 7313 };
7139 7314
7140 2.13.2 bfd_arch_info 7315 2.13.2 bfd_arch_info
7141 -------------------- 7316 --------------------
7142 7317
7143 *Description* 7318 *Description*
7144 This structure contains information on architectures for use within BFD. 7319 This structure contains information on architectures for use within BFD.
7145 7320
7146 typedef struct bfd_arch_info 7321 typedef struct bfd_arch_info
7147 { 7322 {
7148 int bits_per_word; 7323 int bits_per_word;
7149 int bits_per_address; 7324 int bits_per_address;
7150 int bits_per_byte; 7325 int bits_per_byte;
7151 enum bfd_architecture arch; 7326 enum bfd_architecture arch;
7152 unsigned long mach; 7327 unsigned long mach;
7153 const char *arch_name; 7328 const char *arch_name;
7154 const char *printable_name; 7329 const char *printable_name;
7155 unsigned int section_align_power; 7330 unsigned int section_align_power;
7156 /* TRUE if this is the default machine for the architecture. 7331 /* TRUE if this is the default machine for the architecture.
7157 The default arch should be the first entry for an arch so that 7332 The default arch should be the first entry for an arch so that
7158 all the entries for that arch can be accessed via `next'. */ 7333 all the entries for that arch can be accessed via `next'. */
7159 bfd_boolean the_default; 7334 bfd_boolean the_default;
7160 const struct bfd_arch_info * (*compatible) 7335 const struct bfd_arch_info * (*compatible)
7161 (const struct bfd_arch_info *a, const struct bfd_arch_info *b); 7336 (const struct bfd_arch_info *a, const struct bfd_arch_info *b);
7162 7337
7163 bfd_boolean (*scan) (const struct bfd_arch_info *, const char *); 7338 bfd_boolean (*scan) (const struct bfd_arch_info *, const char *);
7164 7339
7340 /* Allocate via bfd_malloc and return a fill buffer of size COUNT. If
7341 IS_BIGENDIAN is TRUE, the order of bytes is big endian. If CODE is
7342 TRUE, the buffer contains code. */
7343 void *(*fill) (bfd_size_type count, bfd_boolean is_bigendian,
7344 bfd_boolean code);
7345
7165 const struct bfd_arch_info *next; 7346 const struct bfd_arch_info *next;
7166 } 7347 }
7167 bfd_arch_info_type; 7348 bfd_arch_info_type;
7168 7349
7169 2.13.2.1 `bfd_printable_name' 7350 2.13.2.1 `bfd_printable_name'
7170 ............................. 7351 .............................
7171 7352
7172 *Synopsis* 7353 *Synopsis*
7173 const char *bfd_printable_name (bfd *abfd); 7354 const char *bfd_printable_name (bfd *abfd);
7174 *Description* 7355 *Description*
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
7333 7514
7334 *Synopsis* 7515 *Synopsis*
7335 unsigned int bfd_arch_mach_octets_per_byte 7516 unsigned int bfd_arch_mach_octets_per_byte
7336 (enum bfd_architecture arch, unsigned long machine); 7517 (enum bfd_architecture arch, unsigned long machine);
7337 *Description* 7518 *Description*
7338 See bfd_octets_per_byte. 7519 See bfd_octets_per_byte.
7339 7520
7340 This routine is provided for those cases where a bfd * is not 7521 This routine is provided for those cases where a bfd * is not
7341 available 7522 available
7342 7523
7524 2.13.2.19 `bfd_arch_default_fill'
7525 .................................
7526
7527 *Synopsis*
7528 void *bfd_arch_default_fill (bfd_size_type count,
7529 bfd_boolean is_bigendian,
7530 bfd_boolean code);
7531 *Description*
7532 Allocate via bfd_malloc and return a fill buffer of size COUNT. If
7533 IS_BIGENDIAN is TRUE, the order of bytes is big endian. If CODE is
7534 TRUE, the buffer contains code.
7535
7343  7536 
7344 File: bfd.info, Node: Opening and Closing, Next: Internal, Prev: Architecture s, Up: BFD front end 7537 File: bfd.info, Node: Opening and Closing, Next: Internal, Prev: Architecture s, Up: BFD front end
7345 7538
7346 /* Set to N to open the next N BFDs using an alternate id space. */ 7539 /* Set to N to open the next N BFDs using an alternate id space. */
7347 extern unsigned int bfd_use_reserved_id; 7540 extern unsigned int bfd_use_reserved_id;
7348 7541
7349 2.14 Opening and closing BFDs 7542 2.14 Opening and closing BFDs
7350 ============================= 7543 =============================
7351 7544
7352 2.14.1 Functions for opening and closing 7545 2.14.1 Functions for opening and closing
(...skipping 13 matching lines...) Expand all
7366 7559
7367 Calls `bfd_find_target', so TARGET is interpreted as by that 7560 Calls `bfd_find_target', so TARGET is interpreted as by that
7368 function. 7561 function.
7369 7562
7370 The new BFD is marked as cacheable iff FD is -1. 7563 The new BFD is marked as cacheable iff FD is -1.
7371 7564
7372 If `NULL' is returned then an error has occured. Possible errors 7565 If `NULL' is returned then an error has occured. Possible errors
7373 are `bfd_error_no_memory', `bfd_error_invalid_target' or `system_call' 7566 are `bfd_error_no_memory', `bfd_error_invalid_target' or `system_call'
7374 error. 7567 error.
7375 7568
7569 On error, FD is always closed.
7570
7376 2.14.1.2 `bfd_openr' 7571 2.14.1.2 `bfd_openr'
7377 .................... 7572 ....................
7378 7573
7379 *Synopsis* 7574 *Synopsis*
7380 bfd *bfd_openr (const char *filename, const char *target); 7575 bfd *bfd_openr (const char *filename, const char *target);
7381 *Description* 7576 *Description*
7382 Open the file FILENAME (using `fopen') with the target TARGET. Return 7577 Open the file FILENAME (using `fopen') with the target TARGET. Return
7383 a pointer to the created BFD. 7578 a pointer to the created BFD.
7384 7579
7385 Calls `bfd_find_target', so TARGET is interpreted as by that 7580 Calls `bfd_find_target', so TARGET is interpreted as by that
(...skipping 17 matching lines...) Expand all
7403 BFD (opened as needed, closed as needed to free descriptors for other 7598 BFD (opened as needed, closed as needed to free descriptors for other
7404 opens), with the supplied FD used as an initial file descriptor (but 7599 opens), with the supplied FD used as an initial file descriptor (but
7405 subject to closure at any time), call bfd_set_cacheable(bfd, 1) on the 7600 subject to closure at any time), call bfd_set_cacheable(bfd, 1) on the
7406 returned BFD. The default is to assume no caching; the file descriptor 7601 returned BFD. The default is to assume no caching; the file descriptor
7407 will remain open until `bfd_close', and will not be affected by BFD 7602 will remain open until `bfd_close', and will not be affected by BFD
7408 operations on other files. 7603 operations on other files.
7409 7604
7410 Possible errors are `bfd_error_no_memory', 7605 Possible errors are `bfd_error_no_memory',
7411 `bfd_error_invalid_target' and `bfd_error_system_call'. 7606 `bfd_error_invalid_target' and `bfd_error_system_call'.
7412 7607
7608 On error, FD is closed.
7609
7413 2.14.1.4 `bfd_openstreamr' 7610 2.14.1.4 `bfd_openstreamr'
7414 .......................... 7611 ..........................
7415 7612
7416 *Synopsis* 7613 *Synopsis*
7417 bfd *bfd_openstreamr (const char *, const char *, void *); 7614 bfd *bfd_openstreamr (const char *, const char *, void *);
7418 *Description* 7615 *Description*
7419 Open a BFD for read access on an existing stdio stream. When the BFD 7616 Open a BFD for read access on an existing stdio stream. When the BFD
7420 is passed to `bfd_close', the stream will be closed. 7617 is passed to `bfd_close', the stream will be closed.
7421 7618
7422 2.14.1.5 `bfd_openr_iovec' 7619 2.14.1.5 `bfd_openr_iovec'
(...skipping 2901 matching lines...) Expand 10 before | Expand all | Expand 10 after
10324 * aout_SIZE_mkobject: aout. (line 139) 10521 * aout_SIZE_mkobject: aout. (line 139)
10325 * aout_SIZE_new_section_hook: aout. (line 177) 10522 * aout_SIZE_new_section_hook: aout. (line 177)
10326 * aout_SIZE_set_arch_mach: aout. (line 164) 10523 * aout_SIZE_set_arch_mach: aout. (line 164)
10327 * aout_SIZE_some_aout_object_p: aout. (line 125) 10524 * aout_SIZE_some_aout_object_p: aout. (line 125)
10328 * aout_SIZE_swap_exec_header_in: aout. (line 101) 10525 * aout_SIZE_swap_exec_header_in: aout. (line 101)
10329 * aout_SIZE_swap_exec_header_out: aout. (line 113) 10526 * aout_SIZE_swap_exec_header_out: aout. (line 113)
10330 * arelent_chain: typedef arelent. (line 336) 10527 * arelent_chain: typedef arelent. (line 336)
10331 * BFD: Overview. (line 6) 10528 * BFD: Overview. (line 6)
10332 * BFD canonical format: Canonical format. (line 11) 10529 * BFD canonical format: Canonical format. (line 11)
10333 * bfd_alloc: Opening and Closing. 10530 * bfd_alloc: Opening and Closing.
10334 (line 214) 10531 (line 218)
10335 * bfd_alloc2: Opening and Closing. 10532 * bfd_alloc2: Opening and Closing.
10336 (line 223) 10533 (line 227)
10337 * bfd_alt_mach_code: BFD front end. (line 714) 10534 * bfd_alt_mach_code: BFD front end. (line 746)
10338 * bfd_arch_bits_per_address: Architectures. (line 547) 10535 * bfd_arch_bits_per_address: Architectures. (line 561)
10339 * bfd_arch_bits_per_byte: Architectures. (line 539) 10536 * bfd_arch_bits_per_byte: Architectures. (line 553)
10340 * bfd_arch_get_compatible: Architectures. (line 482) 10537 * bfd_arch_default_fill: Architectures. (line 642)
10341 * bfd_arch_list: Architectures. (line 473) 10538 * bfd_arch_get_compatible: Architectures. (line 496)
10342 * bfd_arch_mach_octets_per_byte: Architectures. (line 616) 10539 * bfd_arch_list: Architectures. (line 487)
10343 * BFD_ARELOC_BFIN_ADD: howto manager. (line 1058) 10540 * bfd_arch_mach_octets_per_byte: Architectures. (line 630)
10344 * BFD_ARELOC_BFIN_ADDR: howto manager. (line 1109) 10541 * BFD_ARELOC_BFIN_ADD: howto manager. (line 1107)
10345 * BFD_ARELOC_BFIN_AND: howto manager. (line 1079) 10542 * BFD_ARELOC_BFIN_ADDR: howto manager. (line 1158)
10346 * BFD_ARELOC_BFIN_COMP: howto manager. (line 1100) 10543 * BFD_ARELOC_BFIN_AND: howto manager. (line 1128)
10347 * BFD_ARELOC_BFIN_CONST: howto manager. (line 1055) 10544 * BFD_ARELOC_BFIN_COMP: howto manager. (line 1149)
10348 * BFD_ARELOC_BFIN_DIV: howto manager. (line 1067) 10545 * BFD_ARELOC_BFIN_CONST: howto manager. (line 1104)
10349 * BFD_ARELOC_BFIN_HWPAGE: howto manager. (line 1106) 10546 * BFD_ARELOC_BFIN_DIV: howto manager. (line 1116)
10350 * BFD_ARELOC_BFIN_LAND: howto manager. (line 1088) 10547 * BFD_ARELOC_BFIN_HWPAGE: howto manager. (line 1155)
10351 * BFD_ARELOC_BFIN_LEN: howto manager. (line 1094) 10548 * BFD_ARELOC_BFIN_LAND: howto manager. (line 1137)
10352 * BFD_ARELOC_BFIN_LOR: howto manager. (line 1091) 10549 * BFD_ARELOC_BFIN_LEN: howto manager. (line 1143)
10353 * BFD_ARELOC_BFIN_LSHIFT: howto manager. (line 1073) 10550 * BFD_ARELOC_BFIN_LOR: howto manager. (line 1140)
10354 * BFD_ARELOC_BFIN_MOD: howto manager. (line 1070) 10551 * BFD_ARELOC_BFIN_LSHIFT: howto manager. (line 1122)
10355 * BFD_ARELOC_BFIN_MULT: howto manager. (line 1064) 10552 * BFD_ARELOC_BFIN_MOD: howto manager. (line 1119)
10356 * BFD_ARELOC_BFIN_NEG: howto manager. (line 1097) 10553 * BFD_ARELOC_BFIN_MULT: howto manager. (line 1113)
10357 * BFD_ARELOC_BFIN_OR: howto manager. (line 1082) 10554 * BFD_ARELOC_BFIN_NEG: howto manager. (line 1146)
10358 * BFD_ARELOC_BFIN_PAGE: howto manager. (line 1103) 10555 * BFD_ARELOC_BFIN_OR: howto manager. (line 1131)
10359 * BFD_ARELOC_BFIN_PUSH: howto manager. (line 1052) 10556 * BFD_ARELOC_BFIN_PAGE: howto manager. (line 1152)
10360 * BFD_ARELOC_BFIN_RSHIFT: howto manager. (line 1076) 10557 * BFD_ARELOC_BFIN_PUSH: howto manager. (line 1101)
10361 * BFD_ARELOC_BFIN_SUB: howto manager. (line 1061) 10558 * BFD_ARELOC_BFIN_RSHIFT: howto manager. (line 1125)
10362 * BFD_ARELOC_BFIN_XOR: howto manager. (line 1085) 10559 * BFD_ARELOC_BFIN_SUB: howto manager. (line 1110)
10560 * BFD_ARELOC_BFIN_XOR: howto manager. (line 1134)
10363 * bfd_cache_close: File Caching. (line 26) 10561 * bfd_cache_close: File Caching. (line 26)
10364 * bfd_cache_close_all: File Caching. (line 39) 10562 * bfd_cache_close_all: File Caching. (line 39)
10365 * bfd_cache_init: File Caching. (line 18) 10563 * bfd_cache_init: File Caching. (line 18)
10366 * bfd_calc_gnu_debuglink_crc32: Opening and Closing. 10564 * bfd_calc_gnu_debuglink_crc32: Opening and Closing.
10367 (line 250) 10565 (line 254)
10368 * bfd_canonicalize_reloc: BFD front end. (line 430) 10566 * bfd_canonicalize_reloc: BFD front end. (line 462)
10369 * bfd_canonicalize_symtab: symbol handling functions. 10567 * bfd_canonicalize_symtab: symbol handling functions.
10370 (line 50) 10568 (line 50)
10371 * bfd_check_format: Formats. (line 21) 10569 * bfd_check_format: Formats. (line 21)
10372 * bfd_check_format_matches: Formats. (line 52) 10570 * bfd_check_format_matches: Formats. (line 52)
10373 * bfd_check_overflow: typedef arelent. (line 348) 10571 * bfd_check_overflow: typedef arelent. (line 348)
10374 * bfd_close: Opening and Closing. 10572 * bfd_close: Opening and Closing.
10375 (line 139) 10573 (line 143)
10376 * bfd_close_all_done: Opening and Closing. 10574 * bfd_close_all_done: Opening and Closing.
10377 (line 157) 10575 (line 161)
10378 * bfd_coff_backend_data: coff. (line 304) 10576 * bfd_coff_backend_data: coff. (line 304)
10379 * bfd_copy_private_bfd_data: BFD front end. (line 569) 10577 * bfd_copy_private_bfd_data: BFD front end. (line 601)
10380 * bfd_copy_private_header_data: BFD front end. (line 551) 10578 * bfd_copy_private_header_data: BFD front end. (line 583)
10381 * bfd_copy_private_section_data: section prototypes. (line 264) 10579 * bfd_copy_private_section_data: section prototypes. (line 278)
10382 * bfd_copy_private_symbol_data: symbol handling functions. 10580 * bfd_copy_private_symbol_data: symbol handling functions.
10383 (line 140) 10581 (line 140)
10384 * bfd_core_file_failing_command: Core Files. (line 12) 10582 * bfd_core_file_failing_command: Core Files. (line 12)
10385 * bfd_core_file_failing_signal: Core Files. (line 21) 10583 * bfd_core_file_failing_signal: Core Files. (line 21)
10386 * bfd_core_file_pid: Core Files. (line 30) 10584 * bfd_core_file_pid: Core Files. (line 30)
10387 * bfd_create: Opening and Closing. 10585 * bfd_create: Opening and Closing.
10388 (line 176) 10586 (line 180)
10389 * bfd_create_gnu_debuglink_section: Opening and Closing. 10587 * bfd_create_gnu_debuglink_section: Opening and Closing.
10390 (line 316) 10588 (line 320)
10391 * bfd_decode_symclass: symbol handling functions. 10589 * bfd_decode_symclass: symbol handling functions.
10392 (line 111) 10590 (line 111)
10393 * bfd_default_arch_struct: Architectures. (line 494) 10591 * bfd_default_arch_struct: Architectures. (line 508)
10394 * bfd_default_compatible: Architectures. (line 556) 10592 * bfd_default_compatible: Architectures. (line 570)
10395 * bfd_default_reloc_type_lookup: howto manager. (line 2682) 10593 * bfd_default_reloc_type_lookup: howto manager. (line 2809)
10396 * bfd_default_scan: Architectures. (line 565) 10594 * bfd_default_scan: Architectures. (line 579)
10397 * bfd_default_set_arch_mach: Architectures. (line 512) 10595 * bfd_default_set_arch_mach: Architectures. (line 526)
10398 * bfd_demangle: BFD front end. (line 812) 10596 * bfd_demangle: BFD front end. (line 844)
10399 * bfd_emul_get_commonpagesize: BFD front end. (line 792) 10597 * bfd_emul_get_commonpagesize: BFD front end. (line 824)
10400 * bfd_emul_get_maxpagesize: BFD front end. (line 772) 10598 * bfd_emul_get_maxpagesize: BFD front end. (line 804)
10401 * bfd_emul_set_commonpagesize: BFD front end. (line 803) 10599 * bfd_emul_set_commonpagesize: BFD front end. (line 835)
10402 * bfd_emul_set_maxpagesize: BFD front end. (line 783) 10600 * bfd_emul_set_maxpagesize: BFD front end. (line 815)
10403 * bfd_errmsg: BFD front end. (line 355) 10601 * bfd_errmsg: BFD front end. (line 355)
10404 * bfd_fdopenr: Opening and Closing. 10602 * bfd_fdopenr: Opening and Closing.
10405 (line 49) 10603 (line 51)
10406 * bfd_fill_in_gnu_debuglink_section: Opening and Closing. 10604 * bfd_fill_in_gnu_debuglink_section: Opening and Closing.
10407 (line 330) 10605 (line 334)
10408 * bfd_find_target: bfd_target. (line 468) 10606 * bfd_find_target: bfd_target. (line 469)
10409 * bfd_find_version_for_sym: Writing the symbol table. 10607 * bfd_find_version_for_sym: Writing the symbol table.
10410 (line 81) 10608 (line 81)
10411 * bfd_follow_gnu_debuglink: Opening and Closing. 10609 * bfd_follow_gnu_debuglink: Opening and Closing.
10412 (line 295) 10610 (line 299)
10413 * bfd_fopen: Opening and Closing. 10611 * bfd_fopen: Opening and Closing.
10414 (line 12) 10612 (line 12)
10415 * bfd_format_string: Formats. (line 79) 10613 * bfd_format_string: Formats. (line 79)
10416 * bfd_generic_define_common_symbol: Writing the symbol table. 10614 * bfd_generic_define_common_symbol: Writing the symbol table.
10417 (line 68) 10615 (line 68)
10418 * bfd_generic_discard_group: section prototypes. (line 290) 10616 * bfd_generic_discard_group: section prototypes. (line 304)
10419 * bfd_generic_gc_sections: howto manager. (line 2713) 10617 * bfd_generic_gc_sections: howto manager. (line 2840)
10420 * bfd_generic_get_relocated_section_contents: howto manager. (line 2742) 10618 * bfd_generic_get_relocated_section_contents: howto manager. (line 2870)
10421 * bfd_generic_is_group_section: section prototypes. (line 282) 10619 * bfd_generic_is_group_section: section prototypes. (line 296)
10422 * bfd_generic_lookup_section_flags: howto manager. (line 2723) 10620 * bfd_generic_lookup_section_flags: howto manager. (line 2850)
10423 * bfd_generic_merge_sections: howto manager. (line 2732) 10621 * bfd_generic_merge_sections: howto manager. (line 2860)
10424 * bfd_generic_relax_section: howto manager. (line 2700) 10622 * bfd_generic_relax_section: howto manager. (line 2827)
10425 * bfd_get_arch: Architectures. (line 523) 10623 * bfd_get_arch: Architectures. (line 537)
10426 * bfd_get_arch_info: Architectures. (line 575) 10624 * bfd_get_arch_info: Architectures. (line 589)
10427 * bfd_get_arch_size: BFD front end. (line 474) 10625 * bfd_get_arch_size: BFD front end. (line 506)
10626 * bfd_get_assert_handler: BFD front end. (line 438)
10428 * bfd_get_error: BFD front end. (line 336) 10627 * bfd_get_error: BFD front end. (line 336)
10429 * bfd_get_error_handler: BFD front end. (line 406) 10628 * bfd_get_error_handler: BFD front end. (line 406)
10430 * bfd_get_gp_size: BFD front end. (line 515) 10629 * bfd_get_gp_size: BFD front end. (line 547)
10431 * bfd_get_mach: Architectures. (line 531) 10630 * bfd_get_linker_section: section prototypes. (line 36)
10432 * bfd_get_mtime: BFD front end. (line 863) 10631 * bfd_get_mach: Architectures. (line 545)
10632 * bfd_get_mtime: BFD front end. (line 895)
10433 * bfd_get_next_mapent: Archives. (line 52) 10633 * bfd_get_next_mapent: Archives. (line 52)
10434 * bfd_get_reloc_code_name: howto manager. (line 2691) 10634 * bfd_get_next_section_by_name: section prototypes. (line 26)
10635 * bfd_get_reloc_code_name: howto manager. (line 2818)
10435 * bfd_get_reloc_size: typedef arelent. (line 327) 10636 * bfd_get_reloc_size: typedef arelent. (line 327)
10436 * bfd_get_reloc_upper_bound: BFD front end. (line 420) 10637 * bfd_get_reloc_upper_bound: BFD front end. (line 452)
10437 * bfd_get_section_by_name: section prototypes. (line 17) 10638 * bfd_get_section_by_name: section prototypes. (line 17)
10438 * bfd_get_section_by_name_if: section prototypes. (line 31) 10639 * bfd_get_section_by_name_if: section prototypes. (line 45)
10439 * bfd_get_section_contents: section prototypes. (line 237) 10640 * bfd_get_section_contents: section prototypes. (line 251)
10440 * bfd_get_sign_extend_vma: BFD front end. (line 487) 10641 * bfd_get_sign_extend_vma: BFD front end. (line 519)
10441 * bfd_get_size <1>: Internal. (line 25) 10642 * bfd_get_size <1>: Internal. (line 25)
10442 * bfd_get_size: BFD front end. (line 872) 10643 * bfd_get_size: BFD front end. (line 904)
10443 * bfd_get_symtab_upper_bound: symbol handling functions. 10644 * bfd_get_symtab_upper_bound: symbol handling functions.
10444 (line 6) 10645 (line 6)
10445 * bfd_get_target_info: bfd_target. (line 484) 10646 * bfd_get_target_info: bfd_target. (line 485)
10446 * bfd_get_unique_section_name: section prototypes. (line 50) 10647 * bfd_get_unique_section_name: section prototypes. (line 64)
10447 * bfd_h_put_size: Internal. (line 97) 10648 * bfd_h_put_size: Internal. (line 97)
10448 * bfd_hash_allocate: Creating and Freeing a Hash Table. 10649 * bfd_hash_allocate: Creating and Freeing a Hash Table.
10449 (line 17) 10650 (line 17)
10450 * bfd_hash_lookup: Looking Up or Entering a String. 10651 * bfd_hash_lookup: Looking Up or Entering a String.
10451 (line 6) 10652 (line 6)
10452 * bfd_hash_newfunc: Creating and Freeing a Hash Table. 10653 * bfd_hash_newfunc: Creating and Freeing a Hash Table.
10453 (line 12) 10654 (line 12)
10454 * bfd_hash_set_default_size: Creating and Freeing a Hash Table. 10655 * bfd_hash_set_default_size: Creating and Freeing a Hash Table.
10455 (line 25) 10656 (line 25)
10456 * bfd_hash_table_free: Creating and Freeing a Hash Table. 10657 * bfd_hash_table_free: Creating and Freeing a Hash Table.
(...skipping 12 matching lines...) Expand all
10469 (line 17) 10670 (line 17)
10470 * bfd_is_local_label_name: symbol handling functions. 10671 * bfd_is_local_label_name: symbol handling functions.
10471 (line 26) 10672 (line 26)
10472 * bfd_is_target_special_symbol: symbol handling functions. 10673 * bfd_is_target_special_symbol: symbol handling functions.
10473 (line 38) 10674 (line 38)
10474 * bfd_is_undefined_symclass: symbol handling functions. 10675 * bfd_is_undefined_symclass: symbol handling functions.
10475 (line 120) 10676 (line 120)
10476 * bfd_link_split_section: Writing the symbol table. 10677 * bfd_link_split_section: Writing the symbol table.
10477 (line 44) 10678 (line 44)
10478 * bfd_log2: Internal. (line 164) 10679 * bfd_log2: Internal. (line 164)
10479 * bfd_lookup_arch: Architectures. (line 583) 10680 * bfd_lookup_arch: Architectures. (line 597)
10480 * bfd_make_debug_symbol: symbol handling functions. 10681 * bfd_make_debug_symbol: symbol handling functions.
10481 (line 102) 10682 (line 102)
10482 * bfd_make_empty_symbol: symbol handling functions. 10683 * bfd_make_empty_symbol: symbol handling functions.
10483 (line 78) 10684 (line 78)
10484 * bfd_make_readable: Opening and Closing. 10685 * bfd_make_readable: Opening and Closing.
10485 (line 200) 10686 (line 204)
10486 * bfd_make_section: section prototypes. (line 129) 10687 * bfd_make_section: section prototypes. (line 143)
10487 * bfd_make_section_anyway: section prototypes. (line 100) 10688 * bfd_make_section_anyway: section prototypes. (line 114)
10488 * bfd_make_section_anyway_with_flags: section prototypes. (line 82) 10689 * bfd_make_section_anyway_with_flags: section prototypes. (line 96)
10489 * bfd_make_section_old_way: section prototypes. (line 62) 10690 * bfd_make_section_old_way: section prototypes. (line 76)
10490 * bfd_make_section_with_flags: section prototypes. (line 116) 10691 * bfd_make_section_with_flags: section prototypes. (line 130)
10491 * bfd_make_writable: Opening and Closing. 10692 * bfd_make_writable: Opening and Closing.
10492 (line 186) 10693 (line 190)
10493 * bfd_malloc_and_get_section: section prototypes. (line 254) 10694 * bfd_malloc_and_get_section: section prototypes. (line 268)
10494 * bfd_map_over_sections: section prototypes. (line 164) 10695 * bfd_map_over_sections: section prototypes. (line 178)
10495 * bfd_merge_private_bfd_data: BFD front end. (line 585) 10696 * bfd_merge_private_bfd_data: BFD front end. (line 617)
10496 * bfd_mmap: BFD front end. (line 901) 10697 * bfd_mmap: BFD front end. (line 933)
10497 * bfd_octets_per_byte: Architectures. (line 606) 10698 * bfd_octets_per_byte: Architectures. (line 620)
10498 * bfd_open_file: File Caching. (line 52) 10699 * bfd_open_file: File Caching. (line 52)
10499 * bfd_openr: Opening and Closing. 10700 * bfd_openr: Opening and Closing.
10500 (line 33) 10701 (line 35)
10501 * bfd_openr_iovec: Opening and Closing. 10702 * bfd_openr_iovec: Opening and Closing.
10502 (line 79) 10703 (line 83)
10503 * bfd_openr_next_archived_file: Archives. (line 78) 10704 * bfd_openr_next_archived_file: Archives. (line 78)
10504 * bfd_openstreamr: Opening and Closing. 10705 * bfd_openstreamr: Opening and Closing.
10505 (line 70) 10706 (line 74)
10506 * bfd_openw: Opening and Closing. 10707 * bfd_openw: Opening and Closing.
10507 (line 127) 10708 (line 131)
10508 * bfd_perform_relocation: typedef arelent. (line 364) 10709 * bfd_perform_relocation: typedef arelent. (line 364)
10509 * bfd_perror: BFD front end. (line 364) 10710 * bfd_perror: BFD front end. (line 364)
10510 * bfd_preserve_finish: BFD front end. (line 762) 10711 * bfd_preserve_finish: BFD front end. (line 794)
10511 * bfd_preserve_restore: BFD front end. (line 752) 10712 * bfd_preserve_restore: BFD front end. (line 784)
10512 * bfd_preserve_save: BFD front end. (line 736) 10713 * bfd_preserve_save: BFD front end. (line 768)
10513 * bfd_print_symbol_vandf: symbol handling functions. 10714 * bfd_print_symbol_vandf: symbol handling functions.
10514 (line 70) 10715 (line 70)
10515 * bfd_printable_arch_mach: Architectures. (line 594) 10716 * bfd_printable_arch_mach: Architectures. (line 608)
10516 * bfd_printable_name: Architectures. (line 454) 10717 * bfd_printable_name: Architectures. (line 468)
10517 * bfd_put_size: Internal. (line 22) 10718 * bfd_put_size: Internal. (line 22)
10518 * BFD_RELOC_12_PCREL: howto manager. (line 39) 10719 * BFD_RELOC_12_PCREL: howto manager. (line 39)
10519 * BFD_RELOC_14: howto manager. (line 31) 10720 * BFD_RELOC_14: howto manager. (line 31)
10520 * BFD_RELOC_16: howto manager. (line 30) 10721 * BFD_RELOC_16: howto manager. (line 30)
10521 * BFD_RELOC_16_BASEREL: howto manager. (line 95) 10722 * BFD_RELOC_16_BASEREL: howto manager. (line 95)
10522 * BFD_RELOC_16_GOT_PCREL: howto manager. (line 52) 10723 * BFD_RELOC_16_GOT_PCREL: howto manager. (line 52)
10523 * BFD_RELOC_16_GOTOFF: howto manager. (line 55) 10724 * BFD_RELOC_16_GOTOFF: howto manager. (line 55)
10524 * BFD_RELOC_16_PCREL: howto manager. (line 38) 10725 * BFD_RELOC_16_PCREL: howto manager. (line 38)
10525 * BFD_RELOC_16_PCREL_S2: howto manager. (line 107) 10726 * BFD_RELOC_16_PCREL_S2: howto manager. (line 107)
10526 * BFD_RELOC_16_PLT_PCREL: howto manager. (line 63) 10727 * BFD_RELOC_16_PLT_PCREL: howto manager. (line 63)
10527 * BFD_RELOC_16_PLTOFF: howto manager. (line 67) 10728 * BFD_RELOC_16_PLTOFF: howto manager. (line 67)
10528 * BFD_RELOC_16C_ABS20: howto manager. (line 2052) 10729 * BFD_RELOC_16C_ABS20: howto manager. (line 2170)
10529 * BFD_RELOC_16C_ABS20_C: howto manager. (line 2053) 10730 * BFD_RELOC_16C_ABS20_C: howto manager. (line 2171)
10530 * BFD_RELOC_16C_ABS24: howto manager. (line 2054) 10731 * BFD_RELOC_16C_ABS24: howto manager. (line 2172)
10531 * BFD_RELOC_16C_ABS24_C: howto manager. (line 2055) 10732 * BFD_RELOC_16C_ABS24_C: howto manager. (line 2173)
10532 * BFD_RELOC_16C_DISP04: howto manager. (line 2032) 10733 * BFD_RELOC_16C_DISP04: howto manager. (line 2150)
10533 * BFD_RELOC_16C_DISP04_C: howto manager. (line 2033) 10734 * BFD_RELOC_16C_DISP04_C: howto manager. (line 2151)
10534 * BFD_RELOC_16C_DISP08: howto manager. (line 2034) 10735 * BFD_RELOC_16C_DISP08: howto manager. (line 2152)
10535 * BFD_RELOC_16C_DISP08_C: howto manager. (line 2035) 10736 * BFD_RELOC_16C_DISP08_C: howto manager. (line 2153)
10536 * BFD_RELOC_16C_DISP16: howto manager. (line 2036) 10737 * BFD_RELOC_16C_DISP16: howto manager. (line 2154)
10537 * BFD_RELOC_16C_DISP16_C: howto manager. (line 2037) 10738 * BFD_RELOC_16C_DISP16_C: howto manager. (line 2155)
10538 * BFD_RELOC_16C_DISP24: howto manager. (line 2038) 10739 * BFD_RELOC_16C_DISP24: howto manager. (line 2156)
10539 * BFD_RELOC_16C_DISP24_C: howto manager. (line 2039) 10740 * BFD_RELOC_16C_DISP24_C: howto manager. (line 2157)
10540 * BFD_RELOC_16C_DISP24a: howto manager. (line 2040) 10741 * BFD_RELOC_16C_DISP24a: howto manager. (line 2158)
10541 * BFD_RELOC_16C_DISP24a_C: howto manager. (line 2041) 10742 * BFD_RELOC_16C_DISP24a_C: howto manager. (line 2159)
10542 * BFD_RELOC_16C_IMM04: howto manager. (line 2056) 10743 * BFD_RELOC_16C_IMM04: howto manager. (line 2174)
10543 * BFD_RELOC_16C_IMM04_C: howto manager. (line 2057) 10744 * BFD_RELOC_16C_IMM04_C: howto manager. (line 2175)
10544 * BFD_RELOC_16C_IMM16: howto manager. (line 2058) 10745 * BFD_RELOC_16C_IMM16: howto manager. (line 2176)
10545 * BFD_RELOC_16C_IMM16_C: howto manager. (line 2059) 10746 * BFD_RELOC_16C_IMM16_C: howto manager. (line 2177)
10546 * BFD_RELOC_16C_IMM20: howto manager. (line 2060) 10747 * BFD_RELOC_16C_IMM20: howto manager. (line 2178)
10547 * BFD_RELOC_16C_IMM20_C: howto manager. (line 2061) 10748 * BFD_RELOC_16C_IMM20_C: howto manager. (line 2179)
10548 * BFD_RELOC_16C_IMM24: howto manager. (line 2062) 10749 * BFD_RELOC_16C_IMM24: howto manager. (line 2180)
10549 * BFD_RELOC_16C_IMM24_C: howto manager. (line 2063) 10750 * BFD_RELOC_16C_IMM24_C: howto manager. (line 2181)
10550 * BFD_RELOC_16C_IMM32: howto manager. (line 2064) 10751 * BFD_RELOC_16C_IMM32: howto manager. (line 2182)
10551 * BFD_RELOC_16C_IMM32_C: howto manager. (line 2065) 10752 * BFD_RELOC_16C_IMM32_C: howto manager. (line 2183)
10552 * BFD_RELOC_16C_NUM08: howto manager. (line 2026) 10753 * BFD_RELOC_16C_NUM08: howto manager. (line 2144)
10553 * BFD_RELOC_16C_NUM08_C: howto manager. (line 2027) 10754 * BFD_RELOC_16C_NUM08_C: howto manager. (line 2145)
10554 * BFD_RELOC_16C_NUM16: howto manager. (line 2028) 10755 * BFD_RELOC_16C_NUM16: howto manager. (line 2146)
10555 * BFD_RELOC_16C_NUM16_C: howto manager. (line 2029) 10756 * BFD_RELOC_16C_NUM16_C: howto manager. (line 2147)
10556 * BFD_RELOC_16C_NUM32: howto manager. (line 2030) 10757 * BFD_RELOC_16C_NUM32: howto manager. (line 2148)
10557 * BFD_RELOC_16C_NUM32_C: howto manager. (line 2031) 10758 * BFD_RELOC_16C_NUM32_C: howto manager. (line 2149)
10558 * BFD_RELOC_16C_REG04: howto manager. (line 2042) 10759 * BFD_RELOC_16C_REG04: howto manager. (line 2160)
10559 * BFD_RELOC_16C_REG04_C: howto manager. (line 2043) 10760 * BFD_RELOC_16C_REG04_C: howto manager. (line 2161)
10560 * BFD_RELOC_16C_REG04a: howto manager. (line 2044) 10761 * BFD_RELOC_16C_REG04a: howto manager. (line 2162)
10561 * BFD_RELOC_16C_REG04a_C: howto manager. (line 2045) 10762 * BFD_RELOC_16C_REG04a_C: howto manager. (line 2163)
10562 * BFD_RELOC_16C_REG14: howto manager. (line 2046) 10763 * BFD_RELOC_16C_REG14: howto manager. (line 2164)
10563 * BFD_RELOC_16C_REG14_C: howto manager. (line 2047) 10764 * BFD_RELOC_16C_REG14_C: howto manager. (line 2165)
10564 * BFD_RELOC_16C_REG16: howto manager. (line 2048) 10765 * BFD_RELOC_16C_REG16: howto manager. (line 2166)
10565 * BFD_RELOC_16C_REG16_C: howto manager. (line 2049) 10766 * BFD_RELOC_16C_REG16_C: howto manager. (line 2167)
10566 * BFD_RELOC_16C_REG20: howto manager. (line 2050) 10767 * BFD_RELOC_16C_REG20: howto manager. (line 2168)
10567 * BFD_RELOC_16C_REG20_C: howto manager. (line 2051) 10768 * BFD_RELOC_16C_REG20_C: howto manager. (line 2169)
10568 * BFD_RELOC_23_PCREL_S2: howto manager. (line 108) 10769 * BFD_RELOC_23_PCREL_S2: howto manager. (line 108)
10569 * BFD_RELOC_24: howto manager. (line 29) 10770 * BFD_RELOC_24: howto manager. (line 29)
10570 * BFD_RELOC_24_PCREL: howto manager. (line 37) 10771 * BFD_RELOC_24_PCREL: howto manager. (line 37)
10571 * BFD_RELOC_24_PLT_PCREL: howto manager. (line 62) 10772 * BFD_RELOC_24_PLT_PCREL: howto manager. (line 62)
10572 * BFD_RELOC_26: howto manager. (line 28) 10773 * BFD_RELOC_26: howto manager. (line 28)
10573 * BFD_RELOC_32: howto manager. (line 27) 10774 * BFD_RELOC_32: howto manager. (line 27)
10574 * BFD_RELOC_32_BASEREL: howto manager. (line 94) 10775 * BFD_RELOC_32_BASEREL: howto manager. (line 94)
10575 * BFD_RELOC_32_GOT_PCREL: howto manager. (line 51) 10776 * BFD_RELOC_32_GOT_PCREL: howto manager. (line 51)
10576 * BFD_RELOC_32_GOTOFF: howto manager. (line 54) 10777 * BFD_RELOC_32_GOTOFF: howto manager. (line 54)
10577 * BFD_RELOC_32_PCREL: howto manager. (line 36) 10778 * BFD_RELOC_32_PCREL: howto manager. (line 36)
10578 * BFD_RELOC_32_PCREL_S2: howto manager. (line 106) 10779 * BFD_RELOC_32_PCREL_S2: howto manager. (line 106)
10579 * BFD_RELOC_32_PLT_PCREL: howto manager. (line 61) 10780 * BFD_RELOC_32_PLT_PCREL: howto manager. (line 61)
10580 * BFD_RELOC_32_PLTOFF: howto manager. (line 66) 10781 * BFD_RELOC_32_PLTOFF: howto manager. (line 66)
10581 * BFD_RELOC_32_SECREL: howto manager. (line 48) 10782 * BFD_RELOC_32_SECREL: howto manager. (line 48)
10582 * BFD_RELOC_386_COPY: howto manager. (line 540) 10783 * BFD_RELOC_386_COPY: howto manager. (line 572)
10583 * BFD_RELOC_386_GLOB_DAT: howto manager. (line 541) 10784 * BFD_RELOC_386_GLOB_DAT: howto manager. (line 573)
10584 * BFD_RELOC_386_GOT32: howto manager. (line 538) 10785 * BFD_RELOC_386_GOT32: howto manager. (line 570)
10585 * BFD_RELOC_386_GOTOFF: howto manager. (line 544) 10786 * BFD_RELOC_386_GOTOFF: howto manager. (line 576)
10586 * BFD_RELOC_386_GOTPC: howto manager. (line 545) 10787 * BFD_RELOC_386_GOTPC: howto manager. (line 577)
10587 * BFD_RELOC_386_IRELATIVE: howto manager. (line 561) 10788 * BFD_RELOC_386_IRELATIVE: howto manager. (line 593)
10588 * BFD_RELOC_386_JUMP_SLOT: howto manager. (line 542) 10789 * BFD_RELOC_386_JUMP_SLOT: howto manager. (line 574)
10589 * BFD_RELOC_386_PLT32: howto manager. (line 539) 10790 * BFD_RELOC_386_PLT32: howto manager. (line 571)
10590 * BFD_RELOC_386_RELATIVE: howto manager. (line 543) 10791 * BFD_RELOC_386_RELATIVE: howto manager. (line 575)
10591 * BFD_RELOC_386_TLS_DESC: howto manager. (line 560) 10792 * BFD_RELOC_386_TLS_DESC: howto manager. (line 592)
10592 * BFD_RELOC_386_TLS_DESC_CALL: howto manager. (line 559) 10793 * BFD_RELOC_386_TLS_DESC_CALL: howto manager. (line 591)
10593 * BFD_RELOC_386_TLS_DTPMOD32: howto manager. (line 555) 10794 * BFD_RELOC_386_TLS_DTPMOD32: howto manager. (line 587)
10594 * BFD_RELOC_386_TLS_DTPOFF32: howto manager. (line 556) 10795 * BFD_RELOC_386_TLS_DTPOFF32: howto manager. (line 588)
10595 * BFD_RELOC_386_TLS_GD: howto manager. (line 550) 10796 * BFD_RELOC_386_TLS_GD: howto manager. (line 582)
10596 * BFD_RELOC_386_TLS_GOTDESC: howto manager. (line 558) 10797 * BFD_RELOC_386_TLS_GOTDESC: howto manager. (line 590)
10597 * BFD_RELOC_386_TLS_GOTIE: howto manager. (line 548) 10798 * BFD_RELOC_386_TLS_GOTIE: howto manager. (line 580)
10598 * BFD_RELOC_386_TLS_IE: howto manager. (line 547) 10799 * BFD_RELOC_386_TLS_IE: howto manager. (line 579)
10599 * BFD_RELOC_386_TLS_IE_32: howto manager. (line 553) 10800 * BFD_RELOC_386_TLS_IE_32: howto manager. (line 585)
10600 * BFD_RELOC_386_TLS_LDM: howto manager. (line 551) 10801 * BFD_RELOC_386_TLS_LDM: howto manager. (line 583)
10601 * BFD_RELOC_386_TLS_LDO_32: howto manager. (line 552) 10802 * BFD_RELOC_386_TLS_LDO_32: howto manager. (line 584)
10602 * BFD_RELOC_386_TLS_LE: howto manager. (line 549) 10803 * BFD_RELOC_386_TLS_LE: howto manager. (line 581)
10603 * BFD_RELOC_386_TLS_LE_32: howto manager. (line 554) 10804 * BFD_RELOC_386_TLS_LE_32: howto manager. (line 586)
10604 * BFD_RELOC_386_TLS_TPOFF: howto manager. (line 546) 10805 * BFD_RELOC_386_TLS_TPOFF: howto manager. (line 578)
10605 * BFD_RELOC_386_TLS_TPOFF32: howto manager. (line 557) 10806 * BFD_RELOC_386_TLS_TPOFF32: howto manager. (line 589)
10606 * BFD_RELOC_390_12: howto manager. (line 1712) 10807 * BFD_RELOC_390_12: howto manager. (line 1765)
10607 * BFD_RELOC_390_20: howto manager. (line 1812) 10808 * BFD_RELOC_390_20: howto manager. (line 1865)
10608 * BFD_RELOC_390_COPY: howto manager. (line 1721) 10809 * BFD_RELOC_390_COPY: howto manager. (line 1774)
10609 * BFD_RELOC_390_GLOB_DAT: howto manager. (line 1724) 10810 * BFD_RELOC_390_GLOB_DAT: howto manager. (line 1777)
10610 * BFD_RELOC_390_GOT12: howto manager. (line 1715) 10811 * BFD_RELOC_390_GOT12: howto manager. (line 1768)
10611 * BFD_RELOC_390_GOT16: howto manager. (line 1736) 10812 * BFD_RELOC_390_GOT16: howto manager. (line 1789)
10612 * BFD_RELOC_390_GOT20: howto manager. (line 1813) 10813 * BFD_RELOC_390_GOT20: howto manager. (line 1866)
10613 * BFD_RELOC_390_GOT64: howto manager. (line 1754) 10814 * BFD_RELOC_390_GOT64: howto manager. (line 1807)
10614 * BFD_RELOC_390_GOTENT: howto manager. (line 1760) 10815 * BFD_RELOC_390_GOTENT: howto manager. (line 1813)
10615 * BFD_RELOC_390_GOTOFF64: howto manager. (line 1763) 10816 * BFD_RELOC_390_GOTOFF64: howto manager. (line 1816)
10616 * BFD_RELOC_390_GOTPC: howto manager. (line 1733) 10817 * BFD_RELOC_390_GOTPC: howto manager. (line 1786)
10617 * BFD_RELOC_390_GOTPCDBL: howto manager. (line 1751) 10818 * BFD_RELOC_390_GOTPCDBL: howto manager. (line 1804)
10618 * BFD_RELOC_390_GOTPLT12: howto manager. (line 1766) 10819 * BFD_RELOC_390_GOTPLT12: howto manager. (line 1819)
10619 * BFD_RELOC_390_GOTPLT16: howto manager. (line 1769) 10820 * BFD_RELOC_390_GOTPLT16: howto manager. (line 1822)
10620 * BFD_RELOC_390_GOTPLT20: howto manager. (line 1814) 10821 * BFD_RELOC_390_GOTPLT20: howto manager. (line 1867)
10621 * BFD_RELOC_390_GOTPLT32: howto manager. (line 1772) 10822 * BFD_RELOC_390_GOTPLT32: howto manager. (line 1825)
10622 * BFD_RELOC_390_GOTPLT64: howto manager. (line 1775) 10823 * BFD_RELOC_390_GOTPLT64: howto manager. (line 1828)
10623 * BFD_RELOC_390_GOTPLTENT: howto manager. (line 1778) 10824 * BFD_RELOC_390_GOTPLTENT: howto manager. (line 1831)
10624 * BFD_RELOC_390_JMP_SLOT: howto manager. (line 1727) 10825 * BFD_RELOC_390_IRELATIVE: howto manager. (line 1871)
10625 * BFD_RELOC_390_PC16DBL: howto manager. (line 1739) 10826 * BFD_RELOC_390_JMP_SLOT: howto manager. (line 1780)
10626 * BFD_RELOC_390_PC32DBL: howto manager. (line 1745) 10827 * BFD_RELOC_390_PC16DBL: howto manager. (line 1792)
10627 * BFD_RELOC_390_PLT16DBL: howto manager. (line 1742) 10828 * BFD_RELOC_390_PC32DBL: howto manager. (line 1798)
10628 * BFD_RELOC_390_PLT32: howto manager. (line 1718) 10829 * BFD_RELOC_390_PLT16DBL: howto manager. (line 1795)
10629 * BFD_RELOC_390_PLT32DBL: howto manager. (line 1748) 10830 * BFD_RELOC_390_PLT32: howto manager. (line 1771)
10630 * BFD_RELOC_390_PLT64: howto manager. (line 1757) 10831 * BFD_RELOC_390_PLT32DBL: howto manager. (line 1801)
10631 * BFD_RELOC_390_PLTOFF16: howto manager. (line 1781) 10832 * BFD_RELOC_390_PLT64: howto manager. (line 1810)
10632 * BFD_RELOC_390_PLTOFF32: howto manager. (line 1784) 10833 * BFD_RELOC_390_PLTOFF16: howto manager. (line 1834)
10633 * BFD_RELOC_390_PLTOFF64: howto manager. (line 1787) 10834 * BFD_RELOC_390_PLTOFF32: howto manager. (line 1837)
10634 * BFD_RELOC_390_RELATIVE: howto manager. (line 1730) 10835 * BFD_RELOC_390_PLTOFF64: howto manager. (line 1840)
10635 * BFD_RELOC_390_TLS_DTPMOD: howto manager. (line 1807) 10836 * BFD_RELOC_390_RELATIVE: howto manager. (line 1783)
10636 * BFD_RELOC_390_TLS_DTPOFF: howto manager. (line 1808) 10837 * BFD_RELOC_390_TLS_DTPMOD: howto manager. (line 1860)
10637 * BFD_RELOC_390_TLS_GD32: howto manager. (line 1793) 10838 * BFD_RELOC_390_TLS_DTPOFF: howto manager. (line 1861)
10638 * BFD_RELOC_390_TLS_GD64: howto manager. (line 1794) 10839 * BFD_RELOC_390_TLS_GD32: howto manager. (line 1846)
10639 * BFD_RELOC_390_TLS_GDCALL: howto manager. (line 1791) 10840 * BFD_RELOC_390_TLS_GD64: howto manager. (line 1847)
10640 * BFD_RELOC_390_TLS_GOTIE12: howto manager. (line 1795) 10841 * BFD_RELOC_390_TLS_GDCALL: howto manager. (line 1844)
10641 * BFD_RELOC_390_TLS_GOTIE20: howto manager. (line 1815) 10842 * BFD_RELOC_390_TLS_GOTIE12: howto manager. (line 1848)
10642 * BFD_RELOC_390_TLS_GOTIE32: howto manager. (line 1796) 10843 * BFD_RELOC_390_TLS_GOTIE20: howto manager. (line 1868)
10643 * BFD_RELOC_390_TLS_GOTIE64: howto manager. (line 1797) 10844 * BFD_RELOC_390_TLS_GOTIE32: howto manager. (line 1849)
10644 * BFD_RELOC_390_TLS_IE32: howto manager. (line 1800) 10845 * BFD_RELOC_390_TLS_GOTIE64: howto manager. (line 1850)
10645 * BFD_RELOC_390_TLS_IE64: howto manager. (line 1801) 10846 * BFD_RELOC_390_TLS_IE32: howto manager. (line 1853)
10646 * BFD_RELOC_390_TLS_IEENT: howto manager. (line 1802) 10847 * BFD_RELOC_390_TLS_IE64: howto manager. (line 1854)
10647 * BFD_RELOC_390_TLS_LDCALL: howto manager. (line 1792) 10848 * BFD_RELOC_390_TLS_IEENT: howto manager. (line 1855)
10648 * BFD_RELOC_390_TLS_LDM32: howto manager. (line 1798) 10849 * BFD_RELOC_390_TLS_LDCALL: howto manager. (line 1845)
10649 * BFD_RELOC_390_TLS_LDM64: howto manager. (line 1799) 10850 * BFD_RELOC_390_TLS_LDM32: howto manager. (line 1851)
10650 * BFD_RELOC_390_TLS_LDO32: howto manager. (line 1805) 10851 * BFD_RELOC_390_TLS_LDM64: howto manager. (line 1852)
10651 * BFD_RELOC_390_TLS_LDO64: howto manager. (line 1806) 10852 * BFD_RELOC_390_TLS_LDO32: howto manager. (line 1858)
10652 * BFD_RELOC_390_TLS_LE32: howto manager. (line 1803) 10853 * BFD_RELOC_390_TLS_LDO64: howto manager. (line 1859)
10653 * BFD_RELOC_390_TLS_LE64: howto manager. (line 1804) 10854 * BFD_RELOC_390_TLS_LE32: howto manager. (line 1856)
10654 * BFD_RELOC_390_TLS_LOAD: howto manager. (line 1790) 10855 * BFD_RELOC_390_TLS_LE64: howto manager. (line 1857)
10655 * BFD_RELOC_390_TLS_TPOFF: howto manager. (line 1809) 10856 * BFD_RELOC_390_TLS_LOAD: howto manager. (line 1843)
10857 * BFD_RELOC_390_TLS_TPOFF: howto manager. (line 1862)
10656 * BFD_RELOC_64: howto manager. (line 26) 10858 * BFD_RELOC_64: howto manager. (line 26)
10657 * BFD_RELOC_64_PCREL: howto manager. (line 35) 10859 * BFD_RELOC_64_PCREL: howto manager. (line 35)
10658 * BFD_RELOC_64_PLT_PCREL: howto manager. (line 60) 10860 * BFD_RELOC_64_PLT_PCREL: howto manager. (line 60)
10659 * BFD_RELOC_64_PLTOFF: howto manager. (line 65) 10861 * BFD_RELOC_64_PLTOFF: howto manager. (line 65)
10660 * BFD_RELOC_68K_GLOB_DAT: howto manager. (line 74) 10862 * BFD_RELOC_68K_GLOB_DAT: howto manager. (line 74)
10661 * BFD_RELOC_68K_JMP_SLOT: howto manager. (line 75) 10863 * BFD_RELOC_68K_JMP_SLOT: howto manager. (line 75)
10662 * BFD_RELOC_68K_RELATIVE: howto manager. (line 76) 10864 * BFD_RELOC_68K_RELATIVE: howto manager. (line 76)
10663 * BFD_RELOC_68K_TLS_GD16: howto manager. (line 78) 10865 * BFD_RELOC_68K_TLS_GD16: howto manager. (line 78)
10664 * BFD_RELOC_68K_TLS_GD32: howto manager. (line 77) 10866 * BFD_RELOC_68K_TLS_GD32: howto manager. (line 77)
10665 * BFD_RELOC_68K_TLS_GD8: howto manager. (line 79) 10867 * BFD_RELOC_68K_TLS_GD8: howto manager. (line 79)
10666 * BFD_RELOC_68K_TLS_IE16: howto manager. (line 87) 10868 * BFD_RELOC_68K_TLS_IE16: howto manager. (line 87)
10667 * BFD_RELOC_68K_TLS_IE32: howto manager. (line 86) 10869 * BFD_RELOC_68K_TLS_IE32: howto manager. (line 86)
10668 * BFD_RELOC_68K_TLS_IE8: howto manager. (line 88) 10870 * BFD_RELOC_68K_TLS_IE8: howto manager. (line 88)
10669 * BFD_RELOC_68K_TLS_LDM16: howto manager. (line 81) 10871 * BFD_RELOC_68K_TLS_LDM16: howto manager. (line 81)
10670 * BFD_RELOC_68K_TLS_LDM32: howto manager. (line 80) 10872 * BFD_RELOC_68K_TLS_LDM32: howto manager. (line 80)
10671 * BFD_RELOC_68K_TLS_LDM8: howto manager. (line 82) 10873 * BFD_RELOC_68K_TLS_LDM8: howto manager. (line 82)
10672 * BFD_RELOC_68K_TLS_LDO16: howto manager. (line 84) 10874 * BFD_RELOC_68K_TLS_LDO16: howto manager. (line 84)
10673 * BFD_RELOC_68K_TLS_LDO32: howto manager. (line 83) 10875 * BFD_RELOC_68K_TLS_LDO32: howto manager. (line 83)
10674 * BFD_RELOC_68K_TLS_LDO8: howto manager. (line 85) 10876 * BFD_RELOC_68K_TLS_LDO8: howto manager. (line 85)
10675 * BFD_RELOC_68K_TLS_LE16: howto manager. (line 90) 10877 * BFD_RELOC_68K_TLS_LE16: howto manager. (line 90)
10676 * BFD_RELOC_68K_TLS_LE32: howto manager. (line 89) 10878 * BFD_RELOC_68K_TLS_LE32: howto manager. (line 89)
10677 * BFD_RELOC_68K_TLS_LE8: howto manager. (line 91) 10879 * BFD_RELOC_68K_TLS_LE8: howto manager. (line 91)
10678 * BFD_RELOC_8: howto manager. (line 32) 10880 * BFD_RELOC_8: howto manager. (line 32)
10679 * BFD_RELOC_860_COPY: howto manager. (line 2180) 10881 * BFD_RELOC_860_COPY: howto manager. (line 2298)
10680 * BFD_RELOC_860_GLOB_DAT: howto manager. (line 2181) 10882 * BFD_RELOC_860_GLOB_DAT: howto manager. (line 2299)
10681 * BFD_RELOC_860_HAGOT: howto manager. (line 2206) 10883 * BFD_RELOC_860_HAGOT: howto manager. (line 2324)
10682 * BFD_RELOC_860_HAGOTOFF: howto manager. (line 2207) 10884 * BFD_RELOC_860_HAGOTOFF: howto manager. (line 2325)
10683 * BFD_RELOC_860_HAPC: howto manager. (line 2208) 10885 * BFD_RELOC_860_HAPC: howto manager. (line 2326)
10684 * BFD_RELOC_860_HIGH: howto manager. (line 2209) 10886 * BFD_RELOC_860_HIGH: howto manager. (line 2327)
10685 * BFD_RELOC_860_HIGHADJ: howto manager. (line 2205) 10887 * BFD_RELOC_860_HIGHADJ: howto manager. (line 2323)
10686 * BFD_RELOC_860_HIGOT: howto manager. (line 2210) 10888 * BFD_RELOC_860_HIGOT: howto manager. (line 2328)
10687 * BFD_RELOC_860_HIGOTOFF: howto manager. (line 2211) 10889 * BFD_RELOC_860_HIGOTOFF: howto manager. (line 2329)
10688 * BFD_RELOC_860_JUMP_SLOT: howto manager. (line 2182) 10890 * BFD_RELOC_860_JUMP_SLOT: howto manager. (line 2300)
10689 * BFD_RELOC_860_LOGOT0: howto manager. (line 2194) 10891 * BFD_RELOC_860_LOGOT0: howto manager. (line 2312)
10690 * BFD_RELOC_860_LOGOT1: howto manager. (line 2196) 10892 * BFD_RELOC_860_LOGOT1: howto manager. (line 2314)
10691 * BFD_RELOC_860_LOGOTOFF0: howto manager. (line 2198) 10893 * BFD_RELOC_860_LOGOTOFF0: howto manager. (line 2316)
10692 * BFD_RELOC_860_LOGOTOFF1: howto manager. (line 2200) 10894 * BFD_RELOC_860_LOGOTOFF1: howto manager. (line 2318)
10693 * BFD_RELOC_860_LOGOTOFF2: howto manager. (line 2202) 10895 * BFD_RELOC_860_LOGOTOFF2: howto manager. (line 2320)
10694 * BFD_RELOC_860_LOGOTOFF3: howto manager. (line 2203) 10896 * BFD_RELOC_860_LOGOTOFF3: howto manager. (line 2321)
10695 * BFD_RELOC_860_LOPC: howto manager. (line 2204) 10897 * BFD_RELOC_860_LOPC: howto manager. (line 2322)
10696 * BFD_RELOC_860_LOW0: howto manager. (line 2187) 10898 * BFD_RELOC_860_LOW0: howto manager. (line 2305)
10697 * BFD_RELOC_860_LOW1: howto manager. (line 2189) 10899 * BFD_RELOC_860_LOW1: howto manager. (line 2307)
10698 * BFD_RELOC_860_LOW2: howto manager. (line 2191) 10900 * BFD_RELOC_860_LOW2: howto manager. (line 2309)
10699 * BFD_RELOC_860_LOW3: howto manager. (line 2193) 10901 * BFD_RELOC_860_LOW3: howto manager. (line 2311)
10700 * BFD_RELOC_860_PC16: howto manager. (line 2186) 10902 * BFD_RELOC_860_PC16: howto manager. (line 2304)
10701 * BFD_RELOC_860_PC26: howto manager. (line 2184) 10903 * BFD_RELOC_860_PC26: howto manager. (line 2302)
10702 * BFD_RELOC_860_PLT26: howto manager. (line 2185) 10904 * BFD_RELOC_860_PLT26: howto manager. (line 2303)
10703 * BFD_RELOC_860_RELATIVE: howto manager. (line 2183) 10905 * BFD_RELOC_860_RELATIVE: howto manager. (line 2301)
10704 * BFD_RELOC_860_SPGOT0: howto manager. (line 2195) 10906 * BFD_RELOC_860_SPGOT0: howto manager. (line 2313)
10705 * BFD_RELOC_860_SPGOT1: howto manager. (line 2197) 10907 * BFD_RELOC_860_SPGOT1: howto manager. (line 2315)
10706 * BFD_RELOC_860_SPGOTOFF0: howto manager. (line 2199) 10908 * BFD_RELOC_860_SPGOTOFF0: howto manager. (line 2317)
10707 * BFD_RELOC_860_SPGOTOFF1: howto manager. (line 2201) 10909 * BFD_RELOC_860_SPGOTOFF1: howto manager. (line 2319)
10708 * BFD_RELOC_860_SPLIT0: howto manager. (line 2188) 10910 * BFD_RELOC_860_SPLIT0: howto manager. (line 2306)
10709 * BFD_RELOC_860_SPLIT1: howto manager. (line 2190) 10911 * BFD_RELOC_860_SPLIT1: howto manager. (line 2308)
10710 * BFD_RELOC_860_SPLIT2: howto manager. (line 2192) 10912 * BFD_RELOC_860_SPLIT2: howto manager. (line 2310)
10711 * BFD_RELOC_8_BASEREL: howto manager. (line 99) 10913 * BFD_RELOC_8_BASEREL: howto manager. (line 99)
10712 * BFD_RELOC_8_FFnn: howto manager. (line 103) 10914 * BFD_RELOC_8_FFnn: howto manager. (line 103)
10713 * BFD_RELOC_8_GOT_PCREL: howto manager. (line 53) 10915 * BFD_RELOC_8_GOT_PCREL: howto manager. (line 53)
10714 * BFD_RELOC_8_GOTOFF: howto manager. (line 59) 10916 * BFD_RELOC_8_GOTOFF: howto manager. (line 59)
10715 * BFD_RELOC_8_PCREL: howto manager. (line 40) 10917 * BFD_RELOC_8_PCREL: howto manager. (line 40)
10716 * BFD_RELOC_8_PLT_PCREL: howto manager. (line 64) 10918 * BFD_RELOC_8_PLT_PCREL: howto manager. (line 64)
10717 * BFD_RELOC_8_PLTOFF: howto manager. (line 71) 10919 * BFD_RELOC_8_PLTOFF: howto manager. (line 71)
10718 * BFD_RELOC_ALPHA_BOH: howto manager. (line 315) 10920 * BFD_RELOC_ALPHA_BOH: howto manager. (line 319)
10719 * BFD_RELOC_ALPHA_BRSGP: howto manager. (line 298) 10921 * BFD_RELOC_ALPHA_BRSGP: howto manager. (line 302)
10720 * BFD_RELOC_ALPHA_BSR: howto manager. (line 307) 10922 * BFD_RELOC_ALPHA_BSR: howto manager. (line 311)
10721 * BFD_RELOC_ALPHA_CODEADDR: howto manager. (line 289) 10923 * BFD_RELOC_ALPHA_CODEADDR: howto manager. (line 293)
10722 * BFD_RELOC_ALPHA_DTPMOD64: howto manager. (line 321) 10924 * BFD_RELOC_ALPHA_DTPMOD64: howto manager. (line 325)
10723 * BFD_RELOC_ALPHA_DTPREL16: howto manager. (line 326) 10925 * BFD_RELOC_ALPHA_DTPREL16: howto manager. (line 330)
10724 * BFD_RELOC_ALPHA_DTPREL64: howto manager. (line 323) 10926 * BFD_RELOC_ALPHA_DTPREL64: howto manager. (line 327)
10725 * BFD_RELOC_ALPHA_DTPREL_HI16: howto manager. (line 324) 10927 * BFD_RELOC_ALPHA_DTPREL_HI16: howto manager. (line 328)
10726 * BFD_RELOC_ALPHA_DTPREL_LO16: howto manager. (line 325) 10928 * BFD_RELOC_ALPHA_DTPREL_LO16: howto manager. (line 329)
10727 * BFD_RELOC_ALPHA_ELF_LITERAL: howto manager. (line 254) 10929 * BFD_RELOC_ALPHA_ELF_LITERAL: howto manager. (line 258)
10728 * BFD_RELOC_ALPHA_GOTDTPREL16: howto manager. (line 322) 10930 * BFD_RELOC_ALPHA_GOTDTPREL16: howto manager. (line 326)
10729 * BFD_RELOC_ALPHA_GOTTPREL16: howto manager. (line 327) 10931 * BFD_RELOC_ALPHA_GOTTPREL16: howto manager. (line 331)
10730 * BFD_RELOC_ALPHA_GPDISP: howto manager. (line 248) 10932 * BFD_RELOC_ALPHA_GPDISP: howto manager. (line 252)
10731 * BFD_RELOC_ALPHA_GPDISP_HI16: howto manager. (line 234) 10933 * BFD_RELOC_ALPHA_GPDISP_HI16: howto manager. (line 238)
10732 * BFD_RELOC_ALPHA_GPDISP_LO16: howto manager. (line 242) 10934 * BFD_RELOC_ALPHA_GPDISP_LO16: howto manager. (line 246)
10733 * BFD_RELOC_ALPHA_GPREL_HI16: howto manager. (line 293) 10935 * BFD_RELOC_ALPHA_GPREL_HI16: howto manager. (line 297)
10734 * BFD_RELOC_ALPHA_GPREL_LO16: howto manager. (line 294) 10936 * BFD_RELOC_ALPHA_GPREL_LO16: howto manager. (line 298)
10735 * BFD_RELOC_ALPHA_HINT: howto manager. (line 280) 10937 * BFD_RELOC_ALPHA_HINT: howto manager. (line 284)
10736 * BFD_RELOC_ALPHA_LDA: howto manager. (line 311) 10938 * BFD_RELOC_ALPHA_LDA: howto manager. (line 315)
10737 * BFD_RELOC_ALPHA_LINKAGE: howto manager. (line 285) 10939 * BFD_RELOC_ALPHA_LINKAGE: howto manager. (line 289)
10738 * BFD_RELOC_ALPHA_LITERAL: howto manager. (line 253) 10940 * BFD_RELOC_ALPHA_LITERAL: howto manager. (line 257)
10739 * BFD_RELOC_ALPHA_LITUSE: howto manager. (line 255) 10941 * BFD_RELOC_ALPHA_LITUSE: howto manager. (line 259)
10740 * BFD_RELOC_ALPHA_NOP: howto manager. (line 303) 10942 * BFD_RELOC_ALPHA_NOP: howto manager. (line 307)
10741 * BFD_RELOC_ALPHA_TLSGD: howto manager. (line 319) 10943 * BFD_RELOC_ALPHA_TLSGD: howto manager. (line 323)
10742 * BFD_RELOC_ALPHA_TLSLDM: howto manager. (line 320) 10944 * BFD_RELOC_ALPHA_TLSLDM: howto manager. (line 324)
10743 * BFD_RELOC_ALPHA_TPREL16: howto manager. (line 331) 10945 * BFD_RELOC_ALPHA_TPREL16: howto manager. (line 335)
10744 * BFD_RELOC_ALPHA_TPREL64: howto manager. (line 328) 10946 * BFD_RELOC_ALPHA_TPREL64: howto manager. (line 332)
10745 * BFD_RELOC_ALPHA_TPREL_HI16: howto manager. (line 329) 10947 * BFD_RELOC_ALPHA_TPREL_HI16: howto manager. (line 333)
10746 * BFD_RELOC_ALPHA_TPREL_LO16: howto manager. (line 330) 10948 * BFD_RELOC_ALPHA_TPREL_LO16: howto manager. (line 334)
10747 * BFD_RELOC_ARC_B22_PCREL: howto manager. (line 987) 10949 * BFD_RELOC_ARC_B22_PCREL: howto manager. (line 1036)
10748 * BFD_RELOC_ARC_B26: howto manager. (line 992) 10950 * BFD_RELOC_ARC_B26: howto manager. (line 1041)
10749 * BFD_RELOC_ARM_ADR_IMM: howto manager. (line 873) 10951 * BFD_RELOC_ARM_ADR_IMM: howto manager. (line 922)
10750 * BFD_RELOC_ARM_ADRL_IMMEDIATE: howto manager. (line 859) 10952 * BFD_RELOC_ARM_ADRL_IMMEDIATE: howto manager. (line 908)
10751 * BFD_RELOC_ARM_ALU_PC_G0: howto manager. (line 823) 10953 * BFD_RELOC_ARM_ALU_PC_G0: howto manager. (line 872)
10752 * BFD_RELOC_ARM_ALU_PC_G0_NC: howto manager. (line 822) 10954 * BFD_RELOC_ARM_ALU_PC_G0_NC: howto manager. (line 871)
10753 * BFD_RELOC_ARM_ALU_PC_G1: howto manager. (line 825) 10955 * BFD_RELOC_ARM_ALU_PC_G1: howto manager. (line 874)
10754 * BFD_RELOC_ARM_ALU_PC_G1_NC: howto manager. (line 824) 10956 * BFD_RELOC_ARM_ALU_PC_G1_NC: howto manager. (line 873)
10755 * BFD_RELOC_ARM_ALU_PC_G2: howto manager. (line 826) 10957 * BFD_RELOC_ARM_ALU_PC_G2: howto manager. (line 875)
10756 * BFD_RELOC_ARM_ALU_SB_G0: howto manager. (line 837) 10958 * BFD_RELOC_ARM_ALU_SB_G0: howto manager. (line 886)
10757 * BFD_RELOC_ARM_ALU_SB_G0_NC: howto manager. (line 836) 10959 * BFD_RELOC_ARM_ALU_SB_G0_NC: howto manager. (line 885)
10758 * BFD_RELOC_ARM_ALU_SB_G1: howto manager. (line 839) 10960 * BFD_RELOC_ARM_ALU_SB_G1: howto manager. (line 888)
10759 * BFD_RELOC_ARM_ALU_SB_G1_NC: howto manager. (line 838) 10961 * BFD_RELOC_ARM_ALU_SB_G1_NC: howto manager. (line 887)
10760 * BFD_RELOC_ARM_ALU_SB_G2: howto manager. (line 840) 10962 * BFD_RELOC_ARM_ALU_SB_G2: howto manager. (line 889)
10761 * BFD_RELOC_ARM_CP_OFF_IMM: howto manager. (line 869) 10963 * BFD_RELOC_ARM_CP_OFF_IMM: howto manager. (line 918)
10762 * BFD_RELOC_ARM_CP_OFF_IMM_S2: howto manager. (line 870) 10964 * BFD_RELOC_ARM_CP_OFF_IMM_S2: howto manager. (line 919)
10763 * BFD_RELOC_ARM_GLOB_DAT: howto manager. (line 797) 10965 * BFD_RELOC_ARM_GLOB_DAT: howto manager. (line 846)
10764 * BFD_RELOC_ARM_GOT32: howto manager. (line 798) 10966 * BFD_RELOC_ARM_GOT32: howto manager. (line 847)
10765 * BFD_RELOC_ARM_GOT_PREL: howto manager. (line 803) 10967 * BFD_RELOC_ARM_GOT_PREL: howto manager. (line 852)
10766 * BFD_RELOC_ARM_GOTOFF: howto manager. (line 801) 10968 * BFD_RELOC_ARM_GOTOFF: howto manager. (line 850)
10767 * BFD_RELOC_ARM_GOTPC: howto manager. (line 802) 10969 * BFD_RELOC_ARM_GOTPC: howto manager. (line 851)
10768 * BFD_RELOC_ARM_HVC: howto manager. (line 866) 10970 * BFD_RELOC_ARM_HVC: howto manager. (line 915)
10769 * BFD_RELOC_ARM_HWLITERAL: howto manager. (line 880) 10971 * BFD_RELOC_ARM_HWLITERAL: howto manager. (line 929)
10770 * BFD_RELOC_ARM_IMMEDIATE: howto manager. (line 858) 10972 * BFD_RELOC_ARM_IMMEDIATE: howto manager. (line 907)
10771 * BFD_RELOC_ARM_IN_POOL: howto manager. (line 876) 10973 * BFD_RELOC_ARM_IN_POOL: howto manager. (line 925)
10772 * BFD_RELOC_ARM_IRELATIVE: howto manager. (line 855) 10974 * BFD_RELOC_ARM_IRELATIVE: howto manager. (line 904)
10773 * BFD_RELOC_ARM_JUMP_SLOT: howto manager. (line 796) 10975 * BFD_RELOC_ARM_JUMP_SLOT: howto manager. (line 845)
10774 * BFD_RELOC_ARM_LDC_PC_G0: howto manager. (line 833) 10976 * BFD_RELOC_ARM_LDC_PC_G0: howto manager. (line 882)
10775 * BFD_RELOC_ARM_LDC_PC_G1: howto manager. (line 834) 10977 * BFD_RELOC_ARM_LDC_PC_G1: howto manager. (line 883)
10776 * BFD_RELOC_ARM_LDC_PC_G2: howto manager. (line 835) 10978 * BFD_RELOC_ARM_LDC_PC_G2: howto manager. (line 884)
10777 * BFD_RELOC_ARM_LDC_SB_G0: howto manager. (line 847) 10979 * BFD_RELOC_ARM_LDC_SB_G0: howto manager. (line 896)
10778 * BFD_RELOC_ARM_LDC_SB_G1: howto manager. (line 848) 10980 * BFD_RELOC_ARM_LDC_SB_G1: howto manager. (line 897)
10779 * BFD_RELOC_ARM_LDC_SB_G2: howto manager. (line 849) 10981 * BFD_RELOC_ARM_LDC_SB_G2: howto manager. (line 898)
10780 * BFD_RELOC_ARM_LDR_IMM: howto manager. (line 874) 10982 * BFD_RELOC_ARM_LDR_IMM: howto manager. (line 923)
10781 * BFD_RELOC_ARM_LDR_PC_G0: howto manager. (line 827) 10983 * BFD_RELOC_ARM_LDR_PC_G0: howto manager. (line 876)
10782 * BFD_RELOC_ARM_LDR_PC_G1: howto manager. (line 828) 10984 * BFD_RELOC_ARM_LDR_PC_G1: howto manager. (line 877)
10783 * BFD_RELOC_ARM_LDR_PC_G2: howto manager. (line 829) 10985 * BFD_RELOC_ARM_LDR_PC_G2: howto manager. (line 878)
10784 * BFD_RELOC_ARM_LDR_SB_G0: howto manager. (line 841) 10986 * BFD_RELOC_ARM_LDR_SB_G0: howto manager. (line 890)
10785 * BFD_RELOC_ARM_LDR_SB_G1: howto manager. (line 842) 10987 * BFD_RELOC_ARM_LDR_SB_G1: howto manager. (line 891)
10786 * BFD_RELOC_ARM_LDR_SB_G2: howto manager. (line 843) 10988 * BFD_RELOC_ARM_LDR_SB_G2: howto manager. (line 892)
10787 * BFD_RELOC_ARM_LDRS_PC_G0: howto manager. (line 830) 10989 * BFD_RELOC_ARM_LDRS_PC_G0: howto manager. (line 879)
10788 * BFD_RELOC_ARM_LDRS_PC_G1: howto manager. (line 831) 10990 * BFD_RELOC_ARM_LDRS_PC_G1: howto manager. (line 880)
10789 * BFD_RELOC_ARM_LDRS_PC_G2: howto manager. (line 832) 10991 * BFD_RELOC_ARM_LDRS_PC_G2: howto manager. (line 881)
10790 * BFD_RELOC_ARM_LDRS_SB_G0: howto manager. (line 844) 10992 * BFD_RELOC_ARM_LDRS_SB_G0: howto manager. (line 893)
10791 * BFD_RELOC_ARM_LDRS_SB_G1: howto manager. (line 845) 10993 * BFD_RELOC_ARM_LDRS_SB_G1: howto manager. (line 894)
10792 * BFD_RELOC_ARM_LDRS_SB_G2: howto manager. (line 846) 10994 * BFD_RELOC_ARM_LDRS_SB_G2: howto manager. (line 895)
10793 * BFD_RELOC_ARM_LITERAL: howto manager. (line 875) 10995 * BFD_RELOC_ARM_LITERAL: howto manager. (line 924)
10794 * BFD_RELOC_ARM_MOVT: howto manager. (line 787) 10996 * BFD_RELOC_ARM_MOVT: howto manager. (line 836)
10795 * BFD_RELOC_ARM_MOVT_PCREL: howto manager. (line 789) 10997 * BFD_RELOC_ARM_MOVT_PCREL: howto manager. (line 838)
10796 * BFD_RELOC_ARM_MOVW: howto manager. (line 786) 10998 * BFD_RELOC_ARM_MOVW: howto manager. (line 835)
10797 * BFD_RELOC_ARM_MOVW_PCREL: howto manager. (line 788) 10999 * BFD_RELOC_ARM_MOVW_PCREL: howto manager. (line 837)
10798 * BFD_RELOC_ARM_MULTI: howto manager. (line 868) 11000 * BFD_RELOC_ARM_MULTI: howto manager. (line 917)
10799 * BFD_RELOC_ARM_OFFSET_IMM: howto manager. (line 760) 11001 * BFD_RELOC_ARM_OFFSET_IMM: howto manager. (line 809)
10800 * BFD_RELOC_ARM_OFFSET_IMM8: howto manager. (line 877) 11002 * BFD_RELOC_ARM_OFFSET_IMM8: howto manager. (line 926)
10801 * BFD_RELOC_ARM_PCREL_BLX: howto manager. (line 731) 11003 * BFD_RELOC_ARM_PCREL_BLX: howto manager. (line 780)
10802 * BFD_RELOC_ARM_PCREL_BRANCH: howto manager. (line 727) 11004 * BFD_RELOC_ARM_PCREL_BRANCH: howto manager. (line 776)
10803 * BFD_RELOC_ARM_PCREL_CALL: howto manager. (line 741) 11005 * BFD_RELOC_ARM_PCREL_CALL: howto manager. (line 790)
10804 * BFD_RELOC_ARM_PCREL_JUMP: howto manager. (line 745) 11006 * BFD_RELOC_ARM_PCREL_JUMP: howto manager. (line 794)
10805 * BFD_RELOC_ARM_PLT32: howto manager. (line 799) 11007 * BFD_RELOC_ARM_PLT32: howto manager. (line 848)
10806 * BFD_RELOC_ARM_PREL31: howto manager. (line 783) 11008 * BFD_RELOC_ARM_PREL31: howto manager. (line 832)
10807 * BFD_RELOC_ARM_RELATIVE: howto manager. (line 800) 11009 * BFD_RELOC_ARM_RELATIVE: howto manager. (line 849)
10808 * BFD_RELOC_ARM_ROSEGREL32: howto manager. (line 772) 11010 * BFD_RELOC_ARM_ROSEGREL32: howto manager. (line 821)
10809 * BFD_RELOC_ARM_SBREL32: howto manager. (line 775) 11011 * BFD_RELOC_ARM_SBREL32: howto manager. (line 824)
10810 * BFD_RELOC_ARM_SHIFT_IMM: howto manager. (line 864) 11012 * BFD_RELOC_ARM_SHIFT_IMM: howto manager. (line 913)
10811 * BFD_RELOC_ARM_SMC: howto manager. (line 865) 11013 * BFD_RELOC_ARM_SMC: howto manager. (line 914)
10812 * BFD_RELOC_ARM_SWI: howto manager. (line 867) 11014 * BFD_RELOC_ARM_SWI: howto manager. (line 916)
10813 * BFD_RELOC_ARM_T32_ADD_IMM: howto manager. (line 861) 11015 * BFD_RELOC_ARM_T32_ADD_IMM: howto manager. (line 910)
10814 * BFD_RELOC_ARM_T32_ADD_PC12: howto manager. (line 863) 11016 * BFD_RELOC_ARM_T32_ADD_PC12: howto manager. (line 912)
10815 * BFD_RELOC_ARM_T32_CP_OFF_IMM: howto manager. (line 871) 11017 * BFD_RELOC_ARM_T32_CP_OFF_IMM: howto manager. (line 920)
10816 * BFD_RELOC_ARM_T32_CP_OFF_IMM_S2: howto manager. (line 872) 11018 * BFD_RELOC_ARM_T32_CP_OFF_IMM_S2: howto manager. (line 921)
10817 * BFD_RELOC_ARM_T32_IMM12: howto manager. (line 862) 11019 * BFD_RELOC_ARM_T32_IMM12: howto manager. (line 911)
10818 * BFD_RELOC_ARM_T32_IMMEDIATE: howto manager. (line 860) 11020 * BFD_RELOC_ARM_T32_IMMEDIATE: howto manager. (line 909)
10819 * BFD_RELOC_ARM_T32_OFFSET_IMM: howto manager. (line 879) 11021 * BFD_RELOC_ARM_T32_OFFSET_IMM: howto manager. (line 928)
10820 * BFD_RELOC_ARM_T32_OFFSET_U8: howto manager. (line 878) 11022 * BFD_RELOC_ARM_T32_OFFSET_U8: howto manager. (line 927)
10821 * BFD_RELOC_ARM_TARGET1: howto manager. (line 768) 11023 * BFD_RELOC_ARM_TARGET1: howto manager. (line 817)
10822 * BFD_RELOC_ARM_TARGET2: howto manager. (line 778) 11024 * BFD_RELOC_ARM_TARGET2: howto manager. (line 827)
10823 * BFD_RELOC_ARM_THM_TLS_CALL: howto manager. (line 816) 11025 * BFD_RELOC_ARM_THM_TLS_CALL: howto manager. (line 865)
10824 * BFD_RELOC_ARM_THM_TLS_DESCSEQ: howto manager. (line 818) 11026 * BFD_RELOC_ARM_THM_TLS_DESCSEQ: howto manager. (line 867)
10825 * BFD_RELOC_ARM_THUMB_ADD: howto manager. (line 881) 11027 * BFD_RELOC_ARM_THUMB_ADD: howto manager. (line 930)
10826 * BFD_RELOC_ARM_THUMB_IMM: howto manager. (line 882) 11028 * BFD_RELOC_ARM_THUMB_IMM: howto manager. (line 931)
10827 * BFD_RELOC_ARM_THUMB_MOVT: howto manager. (line 791) 11029 * BFD_RELOC_ARM_THUMB_MOVT: howto manager. (line 840)
10828 * BFD_RELOC_ARM_THUMB_MOVT_PCREL: howto manager. (line 793) 11030 * BFD_RELOC_ARM_THUMB_MOVT_PCREL: howto manager. (line 842)
10829 * BFD_RELOC_ARM_THUMB_MOVW: howto manager. (line 790) 11031 * BFD_RELOC_ARM_THUMB_MOVW: howto manager. (line 839)
10830 * BFD_RELOC_ARM_THUMB_MOVW_PCREL: howto manager. (line 792) 11032 * BFD_RELOC_ARM_THUMB_MOVW_PCREL: howto manager. (line 841)
10831 * BFD_RELOC_ARM_THUMB_OFFSET: howto manager. (line 764) 11033 * BFD_RELOC_ARM_THUMB_OFFSET: howto manager. (line 813)
10832 * BFD_RELOC_ARM_THUMB_SHIFT: howto manager. (line 883) 11034 * BFD_RELOC_ARM_THUMB_SHIFT: howto manager. (line 932)
10833 * BFD_RELOC_ARM_TLS_CALL: howto manager. (line 815) 11035 * BFD_RELOC_ARM_TLS_CALL: howto manager. (line 864)
10834 * BFD_RELOC_ARM_TLS_DESC: howto manager. (line 819) 11036 * BFD_RELOC_ARM_TLS_DESC: howto manager. (line 868)
10835 * BFD_RELOC_ARM_TLS_DESCSEQ: howto manager. (line 817) 11037 * BFD_RELOC_ARM_TLS_DESCSEQ: howto manager. (line 866)
10836 * BFD_RELOC_ARM_TLS_DTPMOD32: howto manager. (line 810) 11038 * BFD_RELOC_ARM_TLS_DTPMOD32: howto manager. (line 859)
10837 * BFD_RELOC_ARM_TLS_DTPOFF32: howto manager. (line 809) 11039 * BFD_RELOC_ARM_TLS_DTPOFF32: howto manager. (line 858)
10838 * BFD_RELOC_ARM_TLS_GD32: howto manager. (line 806) 11040 * BFD_RELOC_ARM_TLS_GD32: howto manager. (line 855)
10839 * BFD_RELOC_ARM_TLS_GOTDESC: howto manager. (line 814) 11041 * BFD_RELOC_ARM_TLS_GOTDESC: howto manager. (line 863)
10840 * BFD_RELOC_ARM_TLS_IE32: howto manager. (line 812) 11042 * BFD_RELOC_ARM_TLS_IE32: howto manager. (line 861)
10841 * BFD_RELOC_ARM_TLS_LDM32: howto manager. (line 808) 11043 * BFD_RELOC_ARM_TLS_LDM32: howto manager. (line 857)
10842 * BFD_RELOC_ARM_TLS_LDO32: howto manager. (line 807) 11044 * BFD_RELOC_ARM_TLS_LDO32: howto manager. (line 856)
10843 * BFD_RELOC_ARM_TLS_LE32: howto manager. (line 813) 11045 * BFD_RELOC_ARM_TLS_LE32: howto manager. (line 862)
10844 * BFD_RELOC_ARM_TLS_TPOFF32: howto manager. (line 811) 11046 * BFD_RELOC_ARM_TLS_TPOFF32: howto manager. (line 860)
10845 * BFD_RELOC_ARM_V4BX: howto manager. (line 852) 11047 * BFD_RELOC_ARM_V4BX: howto manager. (line 901)
10846 * BFD_RELOC_AVR_13_PCREL: howto manager. (line 1550) 11048 * BFD_RELOC_AVR_13_PCREL: howto manager. (line 1591)
10847 * BFD_RELOC_AVR_16_PM: howto manager. (line 1554) 11049 * BFD_RELOC_AVR_16_PM: howto manager. (line 1595)
10848 * BFD_RELOC_AVR_6: howto manager. (line 1641) 11050 * BFD_RELOC_AVR_6: howto manager. (line 1682)
10849 * BFD_RELOC_AVR_6_ADIW: howto manager. (line 1645) 11051 * BFD_RELOC_AVR_6_ADIW: howto manager. (line 1686)
10850 * BFD_RELOC_AVR_7_PCREL: howto manager. (line 1546) 11052 * BFD_RELOC_AVR_7_PCREL: howto manager. (line 1587)
10851 * BFD_RELOC_AVR_CALL: howto manager. (line 1633) 11053 * BFD_RELOC_AVR_8_HI: howto manager. (line 1694)
10852 * BFD_RELOC_AVR_HH8_LDI: howto manager. (line 1566) 11054 * BFD_RELOC_AVR_8_HLO: howto manager. (line 1698)
10853 * BFD_RELOC_AVR_HH8_LDI_NEG: howto manager. (line 1585) 11055 * BFD_RELOC_AVR_8_LO: howto manager. (line 1690)
10854 * BFD_RELOC_AVR_HH8_LDI_PM: howto manager. (line 1614) 11056 * BFD_RELOC_AVR_CALL: howto manager. (line 1674)
10855 * BFD_RELOC_AVR_HH8_LDI_PM_NEG: howto manager. (line 1628) 11057 * BFD_RELOC_AVR_HH8_LDI: howto manager. (line 1607)
10856 * BFD_RELOC_AVR_HI8_LDI: howto manager. (line 1562) 11058 * BFD_RELOC_AVR_HH8_LDI_NEG: howto manager. (line 1626)
10857 * BFD_RELOC_AVR_HI8_LDI_GS: howto manager. (line 1608) 11059 * BFD_RELOC_AVR_HH8_LDI_PM: howto manager. (line 1655)
10858 * BFD_RELOC_AVR_HI8_LDI_NEG: howto manager. (line 1580) 11060 * BFD_RELOC_AVR_HH8_LDI_PM_NEG: howto manager. (line 1669)
10859 * BFD_RELOC_AVR_HI8_LDI_PM: howto manager. (line 1604) 11061 * BFD_RELOC_AVR_HI8_LDI: howto manager. (line 1603)
10860 * BFD_RELOC_AVR_HI8_LDI_PM_NEG: howto manager. (line 1623) 11062 * BFD_RELOC_AVR_HI8_LDI_GS: howto manager. (line 1649)
10861 * BFD_RELOC_AVR_LDI: howto manager. (line 1637) 11063 * BFD_RELOC_AVR_HI8_LDI_NEG: howto manager. (line 1621)
10862 * BFD_RELOC_AVR_LO8_LDI: howto manager. (line 1558) 11064 * BFD_RELOC_AVR_HI8_LDI_PM: howto manager. (line 1645)
10863 * BFD_RELOC_AVR_LO8_LDI_GS: howto manager. (line 1598) 11065 * BFD_RELOC_AVR_HI8_LDI_PM_NEG: howto manager. (line 1664)
10864 * BFD_RELOC_AVR_LO8_LDI_NEG: howto manager. (line 1575) 11066 * BFD_RELOC_AVR_LDI: howto manager. (line 1678)
10865 * BFD_RELOC_AVR_LO8_LDI_PM: howto manager. (line 1594) 11067 * BFD_RELOC_AVR_LO8_LDI: howto manager. (line 1599)
10866 * BFD_RELOC_AVR_LO8_LDI_PM_NEG: howto manager. (line 1619) 11068 * BFD_RELOC_AVR_LO8_LDI_GS: howto manager. (line 1639)
10867 * BFD_RELOC_AVR_MS8_LDI: howto manager. (line 1571) 11069 * BFD_RELOC_AVR_LO8_LDI_NEG: howto manager. (line 1616)
10868 * BFD_RELOC_AVR_MS8_LDI_NEG: howto manager. (line 1590) 11070 * BFD_RELOC_AVR_LO8_LDI_PM: howto manager. (line 1635)
10869 * BFD_RELOC_BFIN_10_PCREL: howto manager. (line 1012) 11071 * BFD_RELOC_AVR_LO8_LDI_PM_NEG: howto manager. (line 1660)
10870 * BFD_RELOC_BFIN_11_PCREL: howto manager. (line 1015) 11072 * BFD_RELOC_AVR_MS8_LDI: howto manager. (line 1612)
10871 * BFD_RELOC_BFIN_12_PCREL_JUMP: howto manager. (line 1018) 11073 * BFD_RELOC_AVR_MS8_LDI_NEG: howto manager. (line 1631)
10872 * BFD_RELOC_BFIN_12_PCREL_JUMP_S: howto manager. (line 1021) 11074 * BFD_RELOC_BFIN_10_PCREL: howto manager. (line 1061)
10873 * BFD_RELOC_BFIN_16_HIGH: howto manager. (line 1000) 11075 * BFD_RELOC_BFIN_11_PCREL: howto manager. (line 1064)
10874 * BFD_RELOC_BFIN_16_IMM: howto manager. (line 997) 11076 * BFD_RELOC_BFIN_12_PCREL_JUMP: howto manager. (line 1067)
10875 * BFD_RELOC_BFIN_16_LOW: howto manager. (line 1009) 11077 * BFD_RELOC_BFIN_12_PCREL_JUMP_S: howto manager. (line 1070)
10876 * BFD_RELOC_BFIN_24_PCREL_CALL_X: howto manager. (line 1024) 11078 * BFD_RELOC_BFIN_16_HIGH: howto manager. (line 1049)
10877 * BFD_RELOC_BFIN_24_PCREL_JUMP_L: howto manager. (line 1027) 11079 * BFD_RELOC_BFIN_16_IMM: howto manager. (line 1046)
10878 * BFD_RELOC_BFIN_4_PCREL: howto manager. (line 1003) 11080 * BFD_RELOC_BFIN_16_LOW: howto manager. (line 1058)
10879 * BFD_RELOC_BFIN_5_PCREL: howto manager. (line 1006) 11081 * BFD_RELOC_BFIN_24_PCREL_CALL_X: howto manager. (line 1073)
10880 * BFD_RELOC_BFIN_FUNCDESC: howto manager. (line 1033) 11082 * BFD_RELOC_BFIN_24_PCREL_JUMP_L: howto manager. (line 1076)
10881 * BFD_RELOC_BFIN_FUNCDESC_GOT17M4: howto manager. (line 1034) 11083 * BFD_RELOC_BFIN_4_PCREL: howto manager. (line 1052)
10882 * BFD_RELOC_BFIN_FUNCDESC_GOTHI: howto manager. (line 1035) 11084 * BFD_RELOC_BFIN_5_PCREL: howto manager. (line 1055)
10883 * BFD_RELOC_BFIN_FUNCDESC_GOTLO: howto manager. (line 1036) 11085 * BFD_RELOC_BFIN_FUNCDESC: howto manager. (line 1082)
10884 * BFD_RELOC_BFIN_FUNCDESC_GOTOFF17M4: howto manager. (line 1038) 11086 * BFD_RELOC_BFIN_FUNCDESC_GOT17M4: howto manager. (line 1083)
10885 * BFD_RELOC_BFIN_FUNCDESC_GOTOFFHI: howto manager. (line 1039) 11087 * BFD_RELOC_BFIN_FUNCDESC_GOTHI: howto manager. (line 1084)
10886 * BFD_RELOC_BFIN_FUNCDESC_GOTOFFLO: howto manager. (line 1040) 11088 * BFD_RELOC_BFIN_FUNCDESC_GOTLO: howto manager. (line 1085)
10887 * BFD_RELOC_BFIN_FUNCDESC_VALUE: howto manager. (line 1037) 11089 * BFD_RELOC_BFIN_FUNCDESC_GOTOFF17M4: howto manager. (line 1087)
10888 * BFD_RELOC_BFIN_GOT: howto manager. (line 1046) 11090 * BFD_RELOC_BFIN_FUNCDESC_GOTOFFHI: howto manager. (line 1088)
10889 * BFD_RELOC_BFIN_GOT17M4: howto manager. (line 1030) 11091 * BFD_RELOC_BFIN_FUNCDESC_GOTOFFLO: howto manager. (line 1089)
10890 * BFD_RELOC_BFIN_GOTHI: howto manager. (line 1031) 11092 * BFD_RELOC_BFIN_FUNCDESC_VALUE: howto manager. (line 1086)
10891 * BFD_RELOC_BFIN_GOTLO: howto manager. (line 1032) 11093 * BFD_RELOC_BFIN_GOT: howto manager. (line 1095)
10892 * BFD_RELOC_BFIN_GOTOFF17M4: howto manager. (line 1041) 11094 * BFD_RELOC_BFIN_GOT17M4: howto manager. (line 1079)
10893 * BFD_RELOC_BFIN_GOTOFFHI: howto manager. (line 1042) 11095 * BFD_RELOC_BFIN_GOTHI: howto manager. (line 1080)
10894 * BFD_RELOC_BFIN_GOTOFFLO: howto manager. (line 1043) 11096 * BFD_RELOC_BFIN_GOTLO: howto manager. (line 1081)
10895 * BFD_RELOC_BFIN_PLTPC: howto manager. (line 1049) 11097 * BFD_RELOC_BFIN_GOTOFF17M4: howto manager. (line 1090)
10896 * BFD_RELOC_C6000_ABS_H16: howto manager. (line 1409) 11098 * BFD_RELOC_BFIN_GOTOFFHI: howto manager. (line 1091)
10897 * BFD_RELOC_C6000_ABS_L16: howto manager. (line 1408) 11099 * BFD_RELOC_BFIN_GOTOFFLO: howto manager. (line 1092)
10898 * BFD_RELOC_C6000_ABS_S16: howto manager. (line 1407) 11100 * BFD_RELOC_BFIN_PLTPC: howto manager. (line 1098)
10899 * BFD_RELOC_C6000_ALIGN: howto manager. (line 1430) 11101 * BFD_RELOC_C6000_ABS_H16: howto manager. (line 1450)
10900 * BFD_RELOC_C6000_COPY: howto manager. (line 1425) 11102 * BFD_RELOC_C6000_ABS_L16: howto manager. (line 1449)
10901 * BFD_RELOC_C6000_DSBT_INDEX: howto manager. (line 1423) 11103 * BFD_RELOC_C6000_ABS_S16: howto manager. (line 1448)
10902 * BFD_RELOC_C6000_EHTYPE: howto manager. (line 1427) 11104 * BFD_RELOC_C6000_ALIGN: howto manager. (line 1471)
10903 * BFD_RELOC_C6000_FPHEAD: howto manager. (line 1431) 11105 * BFD_RELOC_C6000_COPY: howto manager. (line 1466)
10904 * BFD_RELOC_C6000_JUMP_SLOT: howto manager. (line 1426) 11106 * BFD_RELOC_C6000_DSBT_INDEX: howto manager. (line 1464)
10905 * BFD_RELOC_C6000_NOCMP: howto manager. (line 1432) 11107 * BFD_RELOC_C6000_EHTYPE: howto manager. (line 1468)
10906 * BFD_RELOC_C6000_PCR_H16: howto manager. (line 1428) 11108 * BFD_RELOC_C6000_FPHEAD: howto manager. (line 1472)
10907 * BFD_RELOC_C6000_PCR_L16: howto manager. (line 1429) 11109 * BFD_RELOC_C6000_JUMP_SLOT: howto manager. (line 1467)
10908 * BFD_RELOC_C6000_PCR_S10: howto manager. (line 1405) 11110 * BFD_RELOC_C6000_NOCMP: howto manager. (line 1473)
10909 * BFD_RELOC_C6000_PCR_S12: howto manager. (line 1404) 11111 * BFD_RELOC_C6000_PCR_H16: howto manager. (line 1469)
10910 * BFD_RELOC_C6000_PCR_S21: howto manager. (line 1403) 11112 * BFD_RELOC_C6000_PCR_L16: howto manager. (line 1470)
10911 * BFD_RELOC_C6000_PCR_S7: howto manager. (line 1406) 11113 * BFD_RELOC_C6000_PCR_S10: howto manager. (line 1446)
10912 * BFD_RELOC_C6000_PREL31: howto manager. (line 1424) 11114 * BFD_RELOC_C6000_PCR_S12: howto manager. (line 1445)
10913 * BFD_RELOC_C6000_SBR_GOT_H16_W: howto manager. (line 1422) 11115 * BFD_RELOC_C6000_PCR_S21: howto manager. (line 1444)
10914 * BFD_RELOC_C6000_SBR_GOT_L16_W: howto manager. (line 1421) 11116 * BFD_RELOC_C6000_PCR_S7: howto manager. (line 1447)
10915 * BFD_RELOC_C6000_SBR_GOT_U15_W: howto manager. (line 1420) 11117 * BFD_RELOC_C6000_PREL31: howto manager. (line 1465)
10916 * BFD_RELOC_C6000_SBR_H16_B: howto manager. (line 1417) 11118 * BFD_RELOC_C6000_SBR_GOT_H16_W: howto manager. (line 1463)
10917 * BFD_RELOC_C6000_SBR_H16_H: howto manager. (line 1418) 11119 * BFD_RELOC_C6000_SBR_GOT_L16_W: howto manager. (line 1462)
10918 * BFD_RELOC_C6000_SBR_H16_W: howto manager. (line 1419) 11120 * BFD_RELOC_C6000_SBR_GOT_U15_W: howto manager. (line 1461)
10919 * BFD_RELOC_C6000_SBR_L16_B: howto manager. (line 1414) 11121 * BFD_RELOC_C6000_SBR_H16_B: howto manager. (line 1458)
10920 * BFD_RELOC_C6000_SBR_L16_H: howto manager. (line 1415) 11122 * BFD_RELOC_C6000_SBR_H16_H: howto manager. (line 1459)
10921 * BFD_RELOC_C6000_SBR_L16_W: howto manager. (line 1416) 11123 * BFD_RELOC_C6000_SBR_H16_W: howto manager. (line 1460)
10922 * BFD_RELOC_C6000_SBR_S16: howto manager. (line 1413) 11124 * BFD_RELOC_C6000_SBR_L16_B: howto manager. (line 1455)
10923 * BFD_RELOC_C6000_SBR_U15_B: howto manager. (line 1410) 11125 * BFD_RELOC_C6000_SBR_L16_H: howto manager. (line 1456)
10924 * BFD_RELOC_C6000_SBR_U15_H: howto manager. (line 1411) 11126 * BFD_RELOC_C6000_SBR_L16_W: howto manager. (line 1457)
10925 * BFD_RELOC_C6000_SBR_U15_W: howto manager. (line 1412) 11127 * BFD_RELOC_C6000_SBR_S16: howto manager. (line 1454)
11128 * BFD_RELOC_C6000_SBR_U15_B: howto manager. (line 1451)
11129 * BFD_RELOC_C6000_SBR_U15_H: howto manager. (line 1452)
11130 * BFD_RELOC_C6000_SBR_U15_W: howto manager. (line 1453)
10926 * bfd_reloc_code_type: howto manager. (line 10) 11131 * bfd_reloc_code_type: howto manager. (line 10)
10927 * BFD_RELOC_CR16_ABS20: howto manager. (line 2080) 11132 * BFD_RELOC_CR16_ABS20: howto manager. (line 2198)
10928 * BFD_RELOC_CR16_ABS24: howto manager. (line 2081) 11133 * BFD_RELOC_CR16_ABS24: howto manager. (line 2199)
10929 * BFD_RELOC_CR16_DISP16: howto manager. (line 2091) 11134 * BFD_RELOC_CR16_DISP16: howto manager. (line 2209)
10930 * BFD_RELOC_CR16_DISP20: howto manager. (line 2092) 11135 * BFD_RELOC_CR16_DISP20: howto manager. (line 2210)
10931 * BFD_RELOC_CR16_DISP24: howto manager. (line 2093) 11136 * BFD_RELOC_CR16_DISP24: howto manager. (line 2211)
10932 * BFD_RELOC_CR16_DISP24a: howto manager. (line 2094) 11137 * BFD_RELOC_CR16_DISP24a: howto manager. (line 2212)
10933 * BFD_RELOC_CR16_DISP4: howto manager. (line 2089) 11138 * BFD_RELOC_CR16_DISP4: howto manager. (line 2207)
10934 * BFD_RELOC_CR16_DISP8: howto manager. (line 2090) 11139 * BFD_RELOC_CR16_DISP8: howto manager. (line 2208)
10935 * BFD_RELOC_CR16_GLOB_DAT: howto manager. (line 2100) 11140 * BFD_RELOC_CR16_GLOB_DAT: howto manager. (line 2218)
10936 * BFD_RELOC_CR16_GOT_REGREL20: howto manager. (line 2098) 11141 * BFD_RELOC_CR16_GOT_REGREL20: howto manager. (line 2216)
10937 * BFD_RELOC_CR16_GOTC_REGREL20: howto manager. (line 2099) 11142 * BFD_RELOC_CR16_GOTC_REGREL20: howto manager. (line 2217)
10938 * BFD_RELOC_CR16_IMM16: howto manager. (line 2084) 11143 * BFD_RELOC_CR16_IMM16: howto manager. (line 2202)
10939 * BFD_RELOC_CR16_IMM20: howto manager. (line 2085) 11144 * BFD_RELOC_CR16_IMM20: howto manager. (line 2203)
10940 * BFD_RELOC_CR16_IMM24: howto manager. (line 2086) 11145 * BFD_RELOC_CR16_IMM24: howto manager. (line 2204)
10941 * BFD_RELOC_CR16_IMM32: howto manager. (line 2087) 11146 * BFD_RELOC_CR16_IMM32: howto manager. (line 2205)
10942 * BFD_RELOC_CR16_IMM32a: howto manager. (line 2088) 11147 * BFD_RELOC_CR16_IMM32a: howto manager. (line 2206)
10943 * BFD_RELOC_CR16_IMM4: howto manager. (line 2082) 11148 * BFD_RELOC_CR16_IMM4: howto manager. (line 2200)
10944 * BFD_RELOC_CR16_IMM8: howto manager. (line 2083) 11149 * BFD_RELOC_CR16_IMM8: howto manager. (line 2201)
10945 * BFD_RELOC_CR16_NUM16: howto manager. (line 2069) 11150 * BFD_RELOC_CR16_NUM16: howto manager. (line 2187)
10946 * BFD_RELOC_CR16_NUM32: howto manager. (line 2070) 11151 * BFD_RELOC_CR16_NUM32: howto manager. (line 2188)
10947 * BFD_RELOC_CR16_NUM32a: howto manager. (line 2071) 11152 * BFD_RELOC_CR16_NUM32a: howto manager. (line 2189)
10948 * BFD_RELOC_CR16_NUM8: howto manager. (line 2068) 11153 * BFD_RELOC_CR16_NUM8: howto manager. (line 2186)
10949 * BFD_RELOC_CR16_REGREL0: howto manager. (line 2072) 11154 * BFD_RELOC_CR16_REGREL0: howto manager. (line 2190)
10950 * BFD_RELOC_CR16_REGREL14: howto manager. (line 2075) 11155 * BFD_RELOC_CR16_REGREL14: howto manager. (line 2193)
10951 * BFD_RELOC_CR16_REGREL14a: howto manager. (line 2076) 11156 * BFD_RELOC_CR16_REGREL14a: howto manager. (line 2194)
10952 * BFD_RELOC_CR16_REGREL16: howto manager. (line 2077) 11157 * BFD_RELOC_CR16_REGREL16: howto manager. (line 2195)
10953 * BFD_RELOC_CR16_REGREL20: howto manager. (line 2078) 11158 * BFD_RELOC_CR16_REGREL20: howto manager. (line 2196)
10954 * BFD_RELOC_CR16_REGREL20a: howto manager. (line 2079) 11159 * BFD_RELOC_CR16_REGREL20a: howto manager. (line 2197)
10955 * BFD_RELOC_CR16_REGREL4: howto manager. (line 2073) 11160 * BFD_RELOC_CR16_REGREL4: howto manager. (line 2191)
10956 * BFD_RELOC_CR16_REGREL4a: howto manager. (line 2074) 11161 * BFD_RELOC_CR16_REGREL4a: howto manager. (line 2192)
10957 * BFD_RELOC_CR16_SWITCH16: howto manager. (line 2096) 11162 * BFD_RELOC_CR16_SWITCH16: howto manager. (line 2214)
10958 * BFD_RELOC_CR16_SWITCH32: howto manager. (line 2097) 11163 * BFD_RELOC_CR16_SWITCH32: howto manager. (line 2215)
10959 * BFD_RELOC_CR16_SWITCH8: howto manager. (line 2095) 11164 * BFD_RELOC_CR16_SWITCH8: howto manager. (line 2213)
10960 * BFD_RELOC_CRIS_16_DTPREL: howto manager. (line 2171) 11165 * BFD_RELOC_CRIS_16_DTPREL: howto manager. (line 2289)
10961 * BFD_RELOC_CRIS_16_GOT: howto manager. (line 2147) 11166 * BFD_RELOC_CRIS_16_GOT: howto manager. (line 2265)
10962 * BFD_RELOC_CRIS_16_GOT_GD: howto manager. (line 2167) 11167 * BFD_RELOC_CRIS_16_GOT_GD: howto manager. (line 2285)
10963 * BFD_RELOC_CRIS_16_GOT_TPREL: howto manager. (line 2173) 11168 * BFD_RELOC_CRIS_16_GOT_TPREL: howto manager. (line 2291)
10964 * BFD_RELOC_CRIS_16_GOTPLT: howto manager. (line 2153) 11169 * BFD_RELOC_CRIS_16_GOTPLT: howto manager. (line 2271)
10965 * BFD_RELOC_CRIS_16_TPREL: howto manager. (line 2175) 11170 * BFD_RELOC_CRIS_16_TPREL: howto manager. (line 2293)
10966 * BFD_RELOC_CRIS_32_DTPREL: howto manager. (line 2170) 11171 * BFD_RELOC_CRIS_32_DTPREL: howto manager. (line 2288)
10967 * BFD_RELOC_CRIS_32_GD: howto manager. (line 2168) 11172 * BFD_RELOC_CRIS_32_GD: howto manager. (line 2286)
10968 * BFD_RELOC_CRIS_32_GOT: howto manager. (line 2144) 11173 * BFD_RELOC_CRIS_32_GOT: howto manager. (line 2262)
10969 * BFD_RELOC_CRIS_32_GOT_GD: howto manager. (line 2166) 11174 * BFD_RELOC_CRIS_32_GOT_GD: howto manager. (line 2284)
10970 * BFD_RELOC_CRIS_32_GOT_TPREL: howto manager. (line 2172) 11175 * BFD_RELOC_CRIS_32_GOT_TPREL: howto manager. (line 2290)
10971 * BFD_RELOC_CRIS_32_GOTPLT: howto manager. (line 2150) 11176 * BFD_RELOC_CRIS_32_GOTPLT: howto manager. (line 2268)
10972 * BFD_RELOC_CRIS_32_GOTREL: howto manager. (line 2156) 11177 * BFD_RELOC_CRIS_32_GOTREL: howto manager. (line 2274)
10973 * BFD_RELOC_CRIS_32_IE: howto manager. (line 2177) 11178 * BFD_RELOC_CRIS_32_IE: howto manager. (line 2295)
10974 * BFD_RELOC_CRIS_32_PLT_GOTREL: howto manager. (line 2159) 11179 * BFD_RELOC_CRIS_32_PLT_GOTREL: howto manager. (line 2277)
10975 * BFD_RELOC_CRIS_32_PLT_PCREL: howto manager. (line 2162) 11180 * BFD_RELOC_CRIS_32_PLT_PCREL: howto manager. (line 2280)
10976 * BFD_RELOC_CRIS_32_TPREL: howto manager. (line 2174) 11181 * BFD_RELOC_CRIS_32_TPREL: howto manager. (line 2292)
10977 * BFD_RELOC_CRIS_BDISP8: howto manager. (line 2125) 11182 * BFD_RELOC_CRIS_BDISP8: howto manager. (line 2243)
10978 * BFD_RELOC_CRIS_COPY: howto manager. (line 2138) 11183 * BFD_RELOC_CRIS_COPY: howto manager. (line 2256)
10979 * BFD_RELOC_CRIS_DTP: howto manager. (line 2169) 11184 * BFD_RELOC_CRIS_DTP: howto manager. (line 2287)
10980 * BFD_RELOC_CRIS_DTPMOD: howto manager. (line 2176) 11185 * BFD_RELOC_CRIS_DTPMOD: howto manager. (line 2294)
10981 * BFD_RELOC_CRIS_GLOB_DAT: howto manager. (line 2139) 11186 * BFD_RELOC_CRIS_GLOB_DAT: howto manager. (line 2257)
10982 * BFD_RELOC_CRIS_JUMP_SLOT: howto manager. (line 2140) 11187 * BFD_RELOC_CRIS_JUMP_SLOT: howto manager. (line 2258)
10983 * BFD_RELOC_CRIS_LAPCQ_OFFSET: howto manager. (line 2133) 11188 * BFD_RELOC_CRIS_LAPCQ_OFFSET: howto manager. (line 2251)
10984 * BFD_RELOC_CRIS_RELATIVE: howto manager. (line 2141) 11189 * BFD_RELOC_CRIS_RELATIVE: howto manager. (line 2259)
10985 * BFD_RELOC_CRIS_SIGNED_16: howto manager. (line 2131) 11190 * BFD_RELOC_CRIS_SIGNED_16: howto manager. (line 2249)
10986 * BFD_RELOC_CRIS_SIGNED_6: howto manager. (line 2127) 11191 * BFD_RELOC_CRIS_SIGNED_6: howto manager. (line 2245)
10987 * BFD_RELOC_CRIS_SIGNED_8: howto manager. (line 2129) 11192 * BFD_RELOC_CRIS_SIGNED_8: howto manager. (line 2247)
10988 * BFD_RELOC_CRIS_UNSIGNED_16: howto manager. (line 2132) 11193 * BFD_RELOC_CRIS_UNSIGNED_16: howto manager. (line 2250)
10989 * BFD_RELOC_CRIS_UNSIGNED_4: howto manager. (line 2134) 11194 * BFD_RELOC_CRIS_UNSIGNED_4: howto manager. (line 2252)
10990 * BFD_RELOC_CRIS_UNSIGNED_5: howto manager. (line 2126) 11195 * BFD_RELOC_CRIS_UNSIGNED_5: howto manager. (line 2244)
10991 * BFD_RELOC_CRIS_UNSIGNED_6: howto manager. (line 2128) 11196 * BFD_RELOC_CRIS_UNSIGNED_6: howto manager. (line 2246)
10992 * BFD_RELOC_CRIS_UNSIGNED_8: howto manager. (line 2130) 11197 * BFD_RELOC_CRIS_UNSIGNED_8: howto manager. (line 2248)
10993 * BFD_RELOC_CRX_ABS16: howto manager. (line 2113) 11198 * BFD_RELOC_CRX_ABS16: howto manager. (line 2231)
10994 * BFD_RELOC_CRX_ABS32: howto manager. (line 2114) 11199 * BFD_RELOC_CRX_ABS32: howto manager. (line 2232)
10995 * BFD_RELOC_CRX_IMM16: howto manager. (line 2118) 11200 * BFD_RELOC_CRX_IMM16: howto manager. (line 2236)
10996 * BFD_RELOC_CRX_IMM32: howto manager. (line 2119) 11201 * BFD_RELOC_CRX_IMM32: howto manager. (line 2237)
10997 * BFD_RELOC_CRX_NUM16: howto manager. (line 2116) 11202 * BFD_RELOC_CRX_NUM16: howto manager. (line 2234)
10998 * BFD_RELOC_CRX_NUM32: howto manager. (line 2117) 11203 * BFD_RELOC_CRX_NUM32: howto manager. (line 2235)
10999 * BFD_RELOC_CRX_NUM8: howto manager. (line 2115) 11204 * BFD_RELOC_CRX_NUM8: howto manager. (line 2233)
11000 * BFD_RELOC_CRX_REGREL12: howto manager. (line 2109) 11205 * BFD_RELOC_CRX_REGREL12: howto manager. (line 2227)
11001 * BFD_RELOC_CRX_REGREL22: howto manager. (line 2110) 11206 * BFD_RELOC_CRX_REGREL22: howto manager. (line 2228)
11002 * BFD_RELOC_CRX_REGREL28: howto manager. (line 2111) 11207 * BFD_RELOC_CRX_REGREL28: howto manager. (line 2229)
11003 * BFD_RELOC_CRX_REGREL32: howto manager. (line 2112) 11208 * BFD_RELOC_CRX_REGREL32: howto manager. (line 2230)
11004 * BFD_RELOC_CRX_REL16: howto manager. (line 2106) 11209 * BFD_RELOC_CRX_REL16: howto manager. (line 2224)
11005 * BFD_RELOC_CRX_REL24: howto manager. (line 2107) 11210 * BFD_RELOC_CRX_REL24: howto manager. (line 2225)
11006 * BFD_RELOC_CRX_REL32: howto manager. (line 2108) 11211 * BFD_RELOC_CRX_REL32: howto manager. (line 2226)
11007 * BFD_RELOC_CRX_REL4: howto manager. (line 2103) 11212 * BFD_RELOC_CRX_REL4: howto manager. (line 2221)
11008 * BFD_RELOC_CRX_REL8: howto manager. (line 2104) 11213 * BFD_RELOC_CRX_REL8: howto manager. (line 2222)
11009 * BFD_RELOC_CRX_REL8_CMP: howto manager. (line 2105) 11214 * BFD_RELOC_CRX_REL8_CMP: howto manager. (line 2223)
11010 * BFD_RELOC_CRX_SWITCH16: howto manager. (line 2121) 11215 * BFD_RELOC_CRX_SWITCH16: howto manager. (line 2239)
11011 * BFD_RELOC_CRX_SWITCH32: howto manager. (line 2122) 11216 * BFD_RELOC_CRX_SWITCH32: howto manager. (line 2240)
11012 * BFD_RELOC_CRX_SWITCH8: howto manager. (line 2120) 11217 * BFD_RELOC_CRX_SWITCH8: howto manager. (line 2238)
11013 * BFD_RELOC_CTOR: howto manager. (line 721) 11218 * BFD_RELOC_CTOR: howto manager. (line 770)
11014 * BFD_RELOC_D10V_10_PCREL_L: howto manager. (line 1116) 11219 * BFD_RELOC_D10V_10_PCREL_L: howto manager. (line 1165)
11015 * BFD_RELOC_D10V_10_PCREL_R: howto manager. (line 1112) 11220 * BFD_RELOC_D10V_10_PCREL_R: howto manager. (line 1161)
11016 * BFD_RELOC_D10V_18: howto manager. (line 1121) 11221 * BFD_RELOC_D10V_18: howto manager. (line 1170)
11017 * BFD_RELOC_D10V_18_PCREL: howto manager. (line 1124) 11222 * BFD_RELOC_D10V_18_PCREL: howto manager. (line 1173)
11018 * BFD_RELOC_D30V_15: howto manager. (line 1139) 11223 * BFD_RELOC_D30V_15: howto manager. (line 1188)
11019 * BFD_RELOC_D30V_15_PCREL: howto manager. (line 1143) 11224 * BFD_RELOC_D30V_15_PCREL: howto manager. (line 1192)
11020 * BFD_RELOC_D30V_15_PCREL_R: howto manager. (line 1147) 11225 * BFD_RELOC_D30V_15_PCREL_R: howto manager. (line 1196)
11021 * BFD_RELOC_D30V_21: howto manager. (line 1152) 11226 * BFD_RELOC_D30V_21: howto manager. (line 1201)
11022 * BFD_RELOC_D30V_21_PCREL: howto manager. (line 1156) 11227 * BFD_RELOC_D30V_21_PCREL: howto manager. (line 1205)
11023 * BFD_RELOC_D30V_21_PCREL_R: howto manager. (line 1160) 11228 * BFD_RELOC_D30V_21_PCREL_R: howto manager. (line 1209)
11024 * BFD_RELOC_D30V_32: howto manager. (line 1165) 11229 * BFD_RELOC_D30V_32: howto manager. (line 1214)
11025 * BFD_RELOC_D30V_32_PCREL: howto manager. (line 1168) 11230 * BFD_RELOC_D30V_32_PCREL: howto manager. (line 1217)
11026 * BFD_RELOC_D30V_6: howto manager. (line 1127) 11231 * BFD_RELOC_D30V_6: howto manager. (line 1176)
11027 * BFD_RELOC_D30V_9_PCREL: howto manager. (line 1130) 11232 * BFD_RELOC_D30V_9_PCREL: howto manager. (line 1179)
11028 * BFD_RELOC_D30V_9_PCREL_R: howto manager. (line 1134) 11233 * BFD_RELOC_D30V_9_PCREL_R: howto manager. (line 1183)
11029 * BFD_RELOC_DLX_HI16_S: howto manager. (line 1171) 11234 * BFD_RELOC_DLX_HI16_S: howto manager. (line 1220)
11030 * BFD_RELOC_DLX_JMP26: howto manager. (line 1177) 11235 * BFD_RELOC_DLX_JMP26: howto manager. (line 1226)
11031 * BFD_RELOC_DLX_LO16: howto manager. (line 1174) 11236 * BFD_RELOC_DLX_LO16: howto manager. (line 1223)
11032 * BFD_RELOC_EPIPHANY_HIGH: howto manager. (line 2652) 11237 * BFD_RELOC_EPIPHANY_HIGH: howto manager. (line 2779)
11033 * BFD_RELOC_EPIPHANY_IMM11: howto manager. (line 2661) 11238 * BFD_RELOC_EPIPHANY_IMM11: howto manager. (line 2788)
11034 * BFD_RELOC_EPIPHANY_IMM8: howto manager. (line 2665) 11239 * BFD_RELOC_EPIPHANY_IMM8: howto manager. (line 2792)
11035 * BFD_RELOC_EPIPHANY_LOW: howto manager. (line 2655) 11240 * BFD_RELOC_EPIPHANY_LOW: howto manager. (line 2782)
11036 * BFD_RELOC_EPIPHANY_SIMM11: howto manager. (line 2658) 11241 * BFD_RELOC_EPIPHANY_SIMM11: howto manager. (line 2785)
11037 * BFD_RELOC_EPIPHANY_SIMM24: howto manager. (line 2649) 11242 * BFD_RELOC_EPIPHANY_SIMM24: howto manager. (line 2776)
11038 * BFD_RELOC_EPIPHANY_SIMM8: howto manager. (line 2646) 11243 * BFD_RELOC_EPIPHANY_SIMM8: howto manager. (line 2773)
11039 * BFD_RELOC_FR30_10_IN_8: howto manager. (line 1454) 11244 * BFD_RELOC_FR30_10_IN_8: howto manager. (line 1495)
11040 * BFD_RELOC_FR30_12_PCREL: howto manager. (line 1462) 11245 * BFD_RELOC_FR30_12_PCREL: howto manager. (line 1503)
11041 * BFD_RELOC_FR30_20: howto manager. (line 1438) 11246 * BFD_RELOC_FR30_20: howto manager. (line 1479)
11042 * BFD_RELOC_FR30_48: howto manager. (line 1435) 11247 * BFD_RELOC_FR30_48: howto manager. (line 1476)
11043 * BFD_RELOC_FR30_6_IN_4: howto manager. (line 1442) 11248 * BFD_RELOC_FR30_6_IN_4: howto manager. (line 1483)
11044 * BFD_RELOC_FR30_8_IN_8: howto manager. (line 1446) 11249 * BFD_RELOC_FR30_8_IN_8: howto manager. (line 1487)
11045 * BFD_RELOC_FR30_9_IN_8: howto manager. (line 1450) 11250 * BFD_RELOC_FR30_9_IN_8: howto manager. (line 1491)
11046 * BFD_RELOC_FR30_9_PCREL: howto manager. (line 1458) 11251 * BFD_RELOC_FR30_9_PCREL: howto manager. (line 1499)
11047 * BFD_RELOC_FRV_FUNCDESC: howto manager. (line 473) 11252 * BFD_RELOC_FRV_FUNCDESC: howto manager. (line 486)
11048 * BFD_RELOC_FRV_FUNCDESC_GOT12: howto manager. (line 474) 11253 * BFD_RELOC_FRV_FUNCDESC_GOT12: howto manager. (line 487)
11049 * BFD_RELOC_FRV_FUNCDESC_GOTHI: howto manager. (line 475) 11254 * BFD_RELOC_FRV_FUNCDESC_GOTHI: howto manager. (line 488)
11050 * BFD_RELOC_FRV_FUNCDESC_GOTLO: howto manager. (line 476) 11255 * BFD_RELOC_FRV_FUNCDESC_GOTLO: howto manager. (line 489)
11051 * BFD_RELOC_FRV_FUNCDESC_GOTOFF12: howto manager. (line 478) 11256 * BFD_RELOC_FRV_FUNCDESC_GOTOFF12: howto manager. (line 491)
11052 * BFD_RELOC_FRV_FUNCDESC_GOTOFFHI: howto manager. (line 479) 11257 * BFD_RELOC_FRV_FUNCDESC_GOTOFFHI: howto manager. (line 492)
11053 * BFD_RELOC_FRV_FUNCDESC_GOTOFFLO: howto manager. (line 480) 11258 * BFD_RELOC_FRV_FUNCDESC_GOTOFFLO: howto manager. (line 493)
11054 * BFD_RELOC_FRV_FUNCDESC_VALUE: howto manager. (line 477) 11259 * BFD_RELOC_FRV_FUNCDESC_VALUE: howto manager. (line 490)
11055 * BFD_RELOC_FRV_GETTLSOFF: howto manager. (line 484) 11260 * BFD_RELOC_FRV_GETTLSOFF: howto manager. (line 497)
11056 * BFD_RELOC_FRV_GETTLSOFF_RELAX: howto manager. (line 497) 11261 * BFD_RELOC_FRV_GETTLSOFF_RELAX: howto manager. (line 510)
11057 * BFD_RELOC_FRV_GOT12: howto manager. (line 470) 11262 * BFD_RELOC_FRV_GOT12: howto manager. (line 483)
11058 * BFD_RELOC_FRV_GOTHI: howto manager. (line 471) 11263 * BFD_RELOC_FRV_GOTHI: howto manager. (line 484)
11059 * BFD_RELOC_FRV_GOTLO: howto manager. (line 472) 11264 * BFD_RELOC_FRV_GOTLO: howto manager. (line 485)
11060 * BFD_RELOC_FRV_GOTOFF12: howto manager. (line 481) 11265 * BFD_RELOC_FRV_GOTOFF12: howto manager. (line 494)
11061 * BFD_RELOC_FRV_GOTOFFHI: howto manager. (line 482) 11266 * BFD_RELOC_FRV_GOTOFFHI: howto manager. (line 495)
11062 * BFD_RELOC_FRV_GOTOFFLO: howto manager. (line 483) 11267 * BFD_RELOC_FRV_GOTOFFLO: howto manager. (line 496)
11063 * BFD_RELOC_FRV_GOTTLSDESC12: howto manager. (line 486) 11268 * BFD_RELOC_FRV_GOTTLSDESC12: howto manager. (line 499)
11064 * BFD_RELOC_FRV_GOTTLSDESCHI: howto manager. (line 487) 11269 * BFD_RELOC_FRV_GOTTLSDESCHI: howto manager. (line 500)
11065 * BFD_RELOC_FRV_GOTTLSDESCLO: howto manager. (line 488) 11270 * BFD_RELOC_FRV_GOTTLSDESCLO: howto manager. (line 501)
11066 * BFD_RELOC_FRV_GOTTLSOFF12: howto manager. (line 492) 11271 * BFD_RELOC_FRV_GOTTLSOFF12: howto manager. (line 505)
11067 * BFD_RELOC_FRV_GOTTLSOFFHI: howto manager. (line 493) 11272 * BFD_RELOC_FRV_GOTTLSOFFHI: howto manager. (line 506)
11068 * BFD_RELOC_FRV_GOTTLSOFFLO: howto manager. (line 494) 11273 * BFD_RELOC_FRV_GOTTLSOFFLO: howto manager. (line 507)
11069 * BFD_RELOC_FRV_GPREL12: howto manager. (line 465) 11274 * BFD_RELOC_FRV_GPREL12: howto manager. (line 478)
11070 * BFD_RELOC_FRV_GPREL32: howto manager. (line 467) 11275 * BFD_RELOC_FRV_GPREL32: howto manager. (line 480)
11071 * BFD_RELOC_FRV_GPRELHI: howto manager. (line 468) 11276 * BFD_RELOC_FRV_GPRELHI: howto manager. (line 481)
11072 * BFD_RELOC_FRV_GPRELLO: howto manager. (line 469) 11277 * BFD_RELOC_FRV_GPRELLO: howto manager. (line 482)
11073 * BFD_RELOC_FRV_GPRELU12: howto manager. (line 466) 11278 * BFD_RELOC_FRV_GPRELU12: howto manager. (line 479)
11074 * BFD_RELOC_FRV_HI16: howto manager. (line 464) 11279 * BFD_RELOC_FRV_HI16: howto manager. (line 477)
11075 * BFD_RELOC_FRV_LABEL16: howto manager. (line 461) 11280 * BFD_RELOC_FRV_LABEL16: howto manager. (line 474)
11076 * BFD_RELOC_FRV_LABEL24: howto manager. (line 462) 11281 * BFD_RELOC_FRV_LABEL24: howto manager. (line 475)
11077 * BFD_RELOC_FRV_LO16: howto manager. (line 463) 11282 * BFD_RELOC_FRV_LO16: howto manager. (line 476)
11078 * BFD_RELOC_FRV_TLSDESC_RELAX: howto manager. (line 496) 11283 * BFD_RELOC_FRV_TLSDESC_RELAX: howto manager. (line 509)
11079 * BFD_RELOC_FRV_TLSDESC_VALUE: howto manager. (line 485) 11284 * BFD_RELOC_FRV_TLSDESC_VALUE: howto manager. (line 498)
11080 * BFD_RELOC_FRV_TLSMOFF: howto manager. (line 499) 11285 * BFD_RELOC_FRV_TLSMOFF: howto manager. (line 512)
11081 * BFD_RELOC_FRV_TLSMOFF12: howto manager. (line 489) 11286 * BFD_RELOC_FRV_TLSMOFF12: howto manager. (line 502)
11082 * BFD_RELOC_FRV_TLSMOFFHI: howto manager. (line 490) 11287 * BFD_RELOC_FRV_TLSMOFFHI: howto manager. (line 503)
11083 * BFD_RELOC_FRV_TLSMOFFLO: howto manager. (line 491) 11288 * BFD_RELOC_FRV_TLSMOFFLO: howto manager. (line 504)
11084 * BFD_RELOC_FRV_TLSOFF: howto manager. (line 495) 11289 * BFD_RELOC_FRV_TLSOFF: howto manager. (line 508)
11085 * BFD_RELOC_FRV_TLSOFF_RELAX: howto manager. (line 498) 11290 * BFD_RELOC_FRV_TLSOFF_RELAX: howto manager. (line 511)
11086 * BFD_RELOC_GPREL16: howto manager. (line 121) 11291 * BFD_RELOC_GPREL16: howto manager. (line 121)
11087 * BFD_RELOC_GPREL32: howto manager. (line 122) 11292 * BFD_RELOC_GPREL32: howto manager. (line 122)
11088 * BFD_RELOC_H8_DIR16A8: howto manager. (line 2218) 11293 * BFD_RELOC_H8_DIR16A8: howto manager. (line 2336)
11089 * BFD_RELOC_H8_DIR16R8: howto manager. (line 2219) 11294 * BFD_RELOC_H8_DIR16R8: howto manager. (line 2337)
11090 * BFD_RELOC_H8_DIR24A8: howto manager. (line 2220) 11295 * BFD_RELOC_H8_DIR24A8: howto manager. (line 2338)
11091 * BFD_RELOC_H8_DIR24R8: howto manager. (line 2221) 11296 * BFD_RELOC_H8_DIR24R8: howto manager. (line 2339)
11092 * BFD_RELOC_H8_DIR32A16: howto manager. (line 2222) 11297 * BFD_RELOC_H8_DIR32A16: howto manager. (line 2340)
11093 * BFD_RELOC_HI16: howto manager. (line 344) 11298 * BFD_RELOC_HI16: howto manager. (line 348)
11094 * BFD_RELOC_HI16_BASEREL: howto manager. (line 97) 11299 * BFD_RELOC_HI16_BASEREL: howto manager. (line 97)
11095 * BFD_RELOC_HI16_GOTOFF: howto manager. (line 57) 11300 * BFD_RELOC_HI16_GOTOFF: howto manager. (line 57)
11096 * BFD_RELOC_HI16_PCREL: howto manager. (line 356) 11301 * BFD_RELOC_HI16_PCREL: howto manager. (line 360)
11097 * BFD_RELOC_HI16_PLTOFF: howto manager. (line 69) 11302 * BFD_RELOC_HI16_PLTOFF: howto manager. (line 69)
11098 * BFD_RELOC_HI16_S: howto manager. (line 347) 11303 * BFD_RELOC_HI16_S: howto manager. (line 351)
11099 * BFD_RELOC_HI16_S_BASEREL: howto manager. (line 98) 11304 * BFD_RELOC_HI16_S_BASEREL: howto manager. (line 98)
11100 * BFD_RELOC_HI16_S_GOTOFF: howto manager. (line 58) 11305 * BFD_RELOC_HI16_S_GOTOFF: howto manager. (line 58)
11101 * BFD_RELOC_HI16_S_PCREL: howto manager. (line 359) 11306 * BFD_RELOC_HI16_S_PCREL: howto manager. (line 363)
11102 * BFD_RELOC_HI16_S_PLTOFF: howto manager. (line 70) 11307 * BFD_RELOC_HI16_S_PLTOFF: howto manager. (line 70)
11103 * BFD_RELOC_HI22: howto manager. (line 116) 11308 * BFD_RELOC_HI22: howto manager. (line 116)
11104 * BFD_RELOC_I370_D12: howto manager. (line 718) 11309 * BFD_RELOC_I370_D12: howto manager. (line 767)
11105 * BFD_RELOC_I960_CALLJ: howto manager. (line 128) 11310 * BFD_RELOC_I960_CALLJ: howto manager. (line 128)
11106 * BFD_RELOC_IA64_COPY: howto manager. (line 1962) 11311 * BFD_RELOC_IA64_COPY: howto manager. (line 2018)
11107 * BFD_RELOC_IA64_DIR32LSB: howto manager. (line 1907) 11312 * BFD_RELOC_IA64_DIR32LSB: howto manager. (line 1963)
11108 * BFD_RELOC_IA64_DIR32MSB: howto manager. (line 1906) 11313 * BFD_RELOC_IA64_DIR32MSB: howto manager. (line 1962)
11109 * BFD_RELOC_IA64_DIR64LSB: howto manager. (line 1909) 11314 * BFD_RELOC_IA64_DIR64LSB: howto manager. (line 1965)
11110 * BFD_RELOC_IA64_DIR64MSB: howto manager. (line 1908) 11315 * BFD_RELOC_IA64_DIR64MSB: howto manager. (line 1964)
11111 * BFD_RELOC_IA64_DTPMOD64LSB: howto manager. (line 1972) 11316 * BFD_RELOC_IA64_DTPMOD64LSB: howto manager. (line 2028)
11112 * BFD_RELOC_IA64_DTPMOD64MSB: howto manager. (line 1971) 11317 * BFD_RELOC_IA64_DTPMOD64MSB: howto manager. (line 2027)
11113 * BFD_RELOC_IA64_DTPREL14: howto manager. (line 1974) 11318 * BFD_RELOC_IA64_DTPREL14: howto manager. (line 2030)
11114 * BFD_RELOC_IA64_DTPREL22: howto manager. (line 1975) 11319 * BFD_RELOC_IA64_DTPREL22: howto manager. (line 2031)
11115 * BFD_RELOC_IA64_DTPREL32LSB: howto manager. (line 1978) 11320 * BFD_RELOC_IA64_DTPREL32LSB: howto manager. (line 2034)
11116 * BFD_RELOC_IA64_DTPREL32MSB: howto manager. (line 1977) 11321 * BFD_RELOC_IA64_DTPREL32MSB: howto manager. (line 2033)
11117 * BFD_RELOC_IA64_DTPREL64I: howto manager. (line 1976) 11322 * BFD_RELOC_IA64_DTPREL64I: howto manager. (line 2032)
11118 * BFD_RELOC_IA64_DTPREL64LSB: howto manager. (line 1980) 11323 * BFD_RELOC_IA64_DTPREL64LSB: howto manager. (line 2036)
11119 * BFD_RELOC_IA64_DTPREL64MSB: howto manager. (line 1979) 11324 * BFD_RELOC_IA64_DTPREL64MSB: howto manager. (line 2035)
11120 * BFD_RELOC_IA64_FPTR32LSB: howto manager. (line 1924) 11325 * BFD_RELOC_IA64_FPTR32LSB: howto manager. (line 1980)
11121 * BFD_RELOC_IA64_FPTR32MSB: howto manager. (line 1923) 11326 * BFD_RELOC_IA64_FPTR32MSB: howto manager. (line 1979)
11122 * BFD_RELOC_IA64_FPTR64I: howto manager. (line 1922) 11327 * BFD_RELOC_IA64_FPTR64I: howto manager. (line 1978)
11123 * BFD_RELOC_IA64_FPTR64LSB: howto manager. (line 1926) 11328 * BFD_RELOC_IA64_FPTR64LSB: howto manager. (line 1982)
11124 * BFD_RELOC_IA64_FPTR64MSB: howto manager. (line 1925) 11329 * BFD_RELOC_IA64_FPTR64MSB: howto manager. (line 1981)
11125 * BFD_RELOC_IA64_GPREL22: howto manager. (line 1910) 11330 * BFD_RELOC_IA64_GPREL22: howto manager. (line 1966)
11126 * BFD_RELOC_IA64_GPREL32LSB: howto manager. (line 1913) 11331 * BFD_RELOC_IA64_GPREL32LSB: howto manager. (line 1969)
11127 * BFD_RELOC_IA64_GPREL32MSB: howto manager. (line 1912) 11332 * BFD_RELOC_IA64_GPREL32MSB: howto manager. (line 1968)
11128 * BFD_RELOC_IA64_GPREL64I: howto manager. (line 1911) 11333 * BFD_RELOC_IA64_GPREL64I: howto manager. (line 1967)
11129 * BFD_RELOC_IA64_GPREL64LSB: howto manager. (line 1915) 11334 * BFD_RELOC_IA64_GPREL64LSB: howto manager. (line 1971)
11130 * BFD_RELOC_IA64_GPREL64MSB: howto manager. (line 1914) 11335 * BFD_RELOC_IA64_GPREL64MSB: howto manager. (line 1970)
11131 * BFD_RELOC_IA64_IMM14: howto manager. (line 1903) 11336 * BFD_RELOC_IA64_IMM14: howto manager. (line 1959)
11132 * BFD_RELOC_IA64_IMM22: howto manager. (line 1904) 11337 * BFD_RELOC_IA64_IMM22: howto manager. (line 1960)
11133 * BFD_RELOC_IA64_IMM64: howto manager. (line 1905) 11338 * BFD_RELOC_IA64_IMM64: howto manager. (line 1961)
11134 * BFD_RELOC_IA64_IPLTLSB: howto manager. (line 1961) 11339 * BFD_RELOC_IA64_IPLTLSB: howto manager. (line 2017)
11135 * BFD_RELOC_IA64_IPLTMSB: howto manager. (line 1960) 11340 * BFD_RELOC_IA64_IPLTMSB: howto manager. (line 2016)
11136 * BFD_RELOC_IA64_LDXMOV: howto manager. (line 1964) 11341 * BFD_RELOC_IA64_LDXMOV: howto manager. (line 2020)
11137 * BFD_RELOC_IA64_LTOFF22: howto manager. (line 1916) 11342 * BFD_RELOC_IA64_LTOFF22: howto manager. (line 1972)
11138 * BFD_RELOC_IA64_LTOFF22X: howto manager. (line 1963) 11343 * BFD_RELOC_IA64_LTOFF22X: howto manager. (line 2019)
11139 * BFD_RELOC_IA64_LTOFF64I: howto manager. (line 1917) 11344 * BFD_RELOC_IA64_LTOFF64I: howto manager. (line 1973)
11140 * BFD_RELOC_IA64_LTOFF_DTPMOD22: howto manager. (line 1973) 11345 * BFD_RELOC_IA64_LTOFF_DTPMOD22: howto manager. (line 2029)
11141 * BFD_RELOC_IA64_LTOFF_DTPREL22: howto manager. (line 1981) 11346 * BFD_RELOC_IA64_LTOFF_DTPREL22: howto manager. (line 2037)
11142 * BFD_RELOC_IA64_LTOFF_FPTR22: howto manager. (line 1938) 11347 * BFD_RELOC_IA64_LTOFF_FPTR22: howto manager. (line 1994)
11143 * BFD_RELOC_IA64_LTOFF_FPTR32LSB: howto manager. (line 1941) 11348 * BFD_RELOC_IA64_LTOFF_FPTR32LSB: howto manager. (line 1997)
11144 * BFD_RELOC_IA64_LTOFF_FPTR32MSB: howto manager. (line 1940) 11349 * BFD_RELOC_IA64_LTOFF_FPTR32MSB: howto manager. (line 1996)
11145 * BFD_RELOC_IA64_LTOFF_FPTR64I: howto manager. (line 1939) 11350 * BFD_RELOC_IA64_LTOFF_FPTR64I: howto manager. (line 1995)
11146 * BFD_RELOC_IA64_LTOFF_FPTR64LSB: howto manager. (line 1943) 11351 * BFD_RELOC_IA64_LTOFF_FPTR64LSB: howto manager. (line 1999)
11147 * BFD_RELOC_IA64_LTOFF_FPTR64MSB: howto manager. (line 1942) 11352 * BFD_RELOC_IA64_LTOFF_FPTR64MSB: howto manager. (line 1998)
11148 * BFD_RELOC_IA64_LTOFF_TPREL22: howto manager. (line 1970) 11353 * BFD_RELOC_IA64_LTOFF_TPREL22: howto manager. (line 2026)
11149 * BFD_RELOC_IA64_LTV32LSB: howto manager. (line 1957) 11354 * BFD_RELOC_IA64_LTV32LSB: howto manager. (line 2013)
11150 * BFD_RELOC_IA64_LTV32MSB: howto manager. (line 1956) 11355 * BFD_RELOC_IA64_LTV32MSB: howto manager. (line 2012)
11151 * BFD_RELOC_IA64_LTV64LSB: howto manager. (line 1959) 11356 * BFD_RELOC_IA64_LTV64LSB: howto manager. (line 2015)
11152 * BFD_RELOC_IA64_LTV64MSB: howto manager. (line 1958) 11357 * BFD_RELOC_IA64_LTV64MSB: howto manager. (line 2014)
11153 * BFD_RELOC_IA64_PCREL21B: howto manager. (line 1927) 11358 * BFD_RELOC_IA64_PCREL21B: howto manager. (line 1983)
11154 * BFD_RELOC_IA64_PCREL21BI: howto manager. (line 1928) 11359 * BFD_RELOC_IA64_PCREL21BI: howto manager. (line 1984)
11155 * BFD_RELOC_IA64_PCREL21F: howto manager. (line 1930) 11360 * BFD_RELOC_IA64_PCREL21F: howto manager. (line 1986)
11156 * BFD_RELOC_IA64_PCREL21M: howto manager. (line 1929) 11361 * BFD_RELOC_IA64_PCREL21M: howto manager. (line 1985)
11157 * BFD_RELOC_IA64_PCREL22: howto manager. (line 1931) 11362 * BFD_RELOC_IA64_PCREL22: howto manager. (line 1987)
11158 * BFD_RELOC_IA64_PCREL32LSB: howto manager. (line 1935) 11363 * BFD_RELOC_IA64_PCREL32LSB: howto manager. (line 1991)
11159 * BFD_RELOC_IA64_PCREL32MSB: howto manager. (line 1934) 11364 * BFD_RELOC_IA64_PCREL32MSB: howto manager. (line 1990)
11160 * BFD_RELOC_IA64_PCREL60B: howto manager. (line 1932) 11365 * BFD_RELOC_IA64_PCREL60B: howto manager. (line 1988)
11161 * BFD_RELOC_IA64_PCREL64I: howto manager. (line 1933) 11366 * BFD_RELOC_IA64_PCREL64I: howto manager. (line 1989)
11162 * BFD_RELOC_IA64_PCREL64LSB: howto manager. (line 1937) 11367 * BFD_RELOC_IA64_PCREL64LSB: howto manager. (line 1993)
11163 * BFD_RELOC_IA64_PCREL64MSB: howto manager. (line 1936) 11368 * BFD_RELOC_IA64_PCREL64MSB: howto manager. (line 1992)
11164 * BFD_RELOC_IA64_PLTOFF22: howto manager. (line 1918) 11369 * BFD_RELOC_IA64_PLTOFF22: howto manager. (line 1974)
11165 * BFD_RELOC_IA64_PLTOFF64I: howto manager. (line 1919) 11370 * BFD_RELOC_IA64_PLTOFF64I: howto manager. (line 1975)
11166 * BFD_RELOC_IA64_PLTOFF64LSB: howto manager. (line 1921) 11371 * BFD_RELOC_IA64_PLTOFF64LSB: howto manager. (line 1977)
11167 * BFD_RELOC_IA64_PLTOFF64MSB: howto manager. (line 1920) 11372 * BFD_RELOC_IA64_PLTOFF64MSB: howto manager. (line 1976)
11168 * BFD_RELOC_IA64_REL32LSB: howto manager. (line 1953) 11373 * BFD_RELOC_IA64_REL32LSB: howto manager. (line 2009)
11169 * BFD_RELOC_IA64_REL32MSB: howto manager. (line 1952) 11374 * BFD_RELOC_IA64_REL32MSB: howto manager. (line 2008)
11170 * BFD_RELOC_IA64_REL64LSB: howto manager. (line 1955) 11375 * BFD_RELOC_IA64_REL64LSB: howto manager. (line 2011)
11171 * BFD_RELOC_IA64_REL64MSB: howto manager. (line 1954) 11376 * BFD_RELOC_IA64_REL64MSB: howto manager. (line 2010)
11172 * BFD_RELOC_IA64_SECREL32LSB: howto manager. (line 1949) 11377 * BFD_RELOC_IA64_SECREL32LSB: howto manager. (line 2005)
11173 * BFD_RELOC_IA64_SECREL32MSB: howto manager. (line 1948) 11378 * BFD_RELOC_IA64_SECREL32MSB: howto manager. (line 2004)
11174 * BFD_RELOC_IA64_SECREL64LSB: howto manager. (line 1951) 11379 * BFD_RELOC_IA64_SECREL64LSB: howto manager. (line 2007)
11175 * BFD_RELOC_IA64_SECREL64MSB: howto manager. (line 1950) 11380 * BFD_RELOC_IA64_SECREL64MSB: howto manager. (line 2006)
11176 * BFD_RELOC_IA64_SEGREL32LSB: howto manager. (line 1945) 11381 * BFD_RELOC_IA64_SEGREL32LSB: howto manager. (line 2001)
11177 * BFD_RELOC_IA64_SEGREL32MSB: howto manager. (line 1944) 11382 * BFD_RELOC_IA64_SEGREL32MSB: howto manager. (line 2000)
11178 * BFD_RELOC_IA64_SEGREL64LSB: howto manager. (line 1947) 11383 * BFD_RELOC_IA64_SEGREL64LSB: howto manager. (line 2003)
11179 * BFD_RELOC_IA64_SEGREL64MSB: howto manager. (line 1946) 11384 * BFD_RELOC_IA64_SEGREL64MSB: howto manager. (line 2002)
11180 * BFD_RELOC_IA64_TPREL14: howto manager. (line 1965) 11385 * BFD_RELOC_IA64_TPREL14: howto manager. (line 2021)
11181 * BFD_RELOC_IA64_TPREL22: howto manager. (line 1966) 11386 * BFD_RELOC_IA64_TPREL22: howto manager. (line 2022)
11182 * BFD_RELOC_IA64_TPREL64I: howto manager. (line 1967) 11387 * BFD_RELOC_IA64_TPREL64I: howto manager. (line 2023)
11183 * BFD_RELOC_IA64_TPREL64LSB: howto manager. (line 1969) 11388 * BFD_RELOC_IA64_TPREL64LSB: howto manager. (line 2025)
11184 * BFD_RELOC_IA64_TPREL64MSB: howto manager. (line 1968) 11389 * BFD_RELOC_IA64_TPREL64MSB: howto manager. (line 2024)
11185 * BFD_RELOC_IP2K_ADDR16CJP: howto manager. (line 1855) 11390 * BFD_RELOC_IP2K_ADDR16CJP: howto manager. (line 1911)
11186 * BFD_RELOC_IP2K_BANK: howto manager. (line 1852) 11391 * BFD_RELOC_IP2K_BANK: howto manager. (line 1908)
11187 * BFD_RELOC_IP2K_EX8DATA: howto manager. (line 1863) 11392 * BFD_RELOC_IP2K_EX8DATA: howto manager. (line 1919)
11188 * BFD_RELOC_IP2K_FR9: howto manager. (line 1849) 11393 * BFD_RELOC_IP2K_FR9: howto manager. (line 1905)
11189 * BFD_RELOC_IP2K_FR_OFFSET: howto manager. (line 1876) 11394 * BFD_RELOC_IP2K_FR_OFFSET: howto manager. (line 1932)
11190 * BFD_RELOC_IP2K_HI8DATA: howto manager. (line 1862) 11395 * BFD_RELOC_IP2K_HI8DATA: howto manager. (line 1918)
11191 * BFD_RELOC_IP2K_HI8INSN: howto manager. (line 1867) 11396 * BFD_RELOC_IP2K_HI8INSN: howto manager. (line 1923)
11192 * BFD_RELOC_IP2K_LO8DATA: howto manager. (line 1861) 11397 * BFD_RELOC_IP2K_LO8DATA: howto manager. (line 1917)
11193 * BFD_RELOC_IP2K_LO8INSN: howto manager. (line 1866) 11398 * BFD_RELOC_IP2K_LO8INSN: howto manager. (line 1922)
11194 * BFD_RELOC_IP2K_PAGE3: howto manager. (line 1858) 11399 * BFD_RELOC_IP2K_PAGE3: howto manager. (line 1914)
11195 * BFD_RELOC_IP2K_PC_SKIP: howto manager. (line 1870) 11400 * BFD_RELOC_IP2K_PC_SKIP: howto manager. (line 1926)
11196 * BFD_RELOC_IP2K_TEXT: howto manager. (line 1873) 11401 * BFD_RELOC_IP2K_TEXT: howto manager. (line 1929)
11197 * BFD_RELOC_IQ2000_OFFSET_16: howto manager. (line 2272) 11402 * BFD_RELOC_IQ2000_OFFSET_16: howto manager. (line 2390)
11198 * BFD_RELOC_IQ2000_OFFSET_21: howto manager. (line 2273) 11403 * BFD_RELOC_IQ2000_OFFSET_21: howto manager. (line 2391)
11199 * BFD_RELOC_IQ2000_UHI16: howto manager. (line 2274) 11404 * BFD_RELOC_IQ2000_UHI16: howto manager. (line 2392)
11200 * BFD_RELOC_LM32_16_GOT: howto manager. (line 2379) 11405 * BFD_RELOC_LM32_16_GOT: howto manager. (line 2497)
11201 * BFD_RELOC_LM32_BRANCH: howto manager. (line 2378) 11406 * BFD_RELOC_LM32_BRANCH: howto manager. (line 2496)
11202 * BFD_RELOC_LM32_CALL: howto manager. (line 2377) 11407 * BFD_RELOC_LM32_CALL: howto manager. (line 2495)
11203 * BFD_RELOC_LM32_COPY: howto manager. (line 2382) 11408 * BFD_RELOC_LM32_COPY: howto manager. (line 2500)
11204 * BFD_RELOC_LM32_GLOB_DAT: howto manager. (line 2383) 11409 * BFD_RELOC_LM32_GLOB_DAT: howto manager. (line 2501)
11205 * BFD_RELOC_LM32_GOTOFF_HI16: howto manager. (line 2380) 11410 * BFD_RELOC_LM32_GOTOFF_HI16: howto manager. (line 2498)
11206 * BFD_RELOC_LM32_GOTOFF_LO16: howto manager. (line 2381) 11411 * BFD_RELOC_LM32_GOTOFF_LO16: howto manager. (line 2499)
11207 * BFD_RELOC_LM32_JMP_SLOT: howto manager. (line 2384) 11412 * BFD_RELOC_LM32_JMP_SLOT: howto manager. (line 2502)
11208 * BFD_RELOC_LM32_RELATIVE: howto manager. (line 2385) 11413 * BFD_RELOC_LM32_RELATIVE: howto manager. (line 2503)
11209 * BFD_RELOC_LO10: howto manager. (line 117) 11414 * BFD_RELOC_LO10: howto manager. (line 117)
11210 * BFD_RELOC_LO16: howto manager. (line 353) 11415 * BFD_RELOC_LO16: howto manager. (line 357)
11211 * BFD_RELOC_LO16_BASEREL: howto manager. (line 96) 11416 * BFD_RELOC_LO16_BASEREL: howto manager. (line 96)
11212 * BFD_RELOC_LO16_GOTOFF: howto manager. (line 56) 11417 * BFD_RELOC_LO16_GOTOFF: howto manager. (line 56)
11213 * BFD_RELOC_LO16_PCREL: howto manager. (line 362) 11418 * BFD_RELOC_LO16_PCREL: howto manager. (line 366)
11214 * BFD_RELOC_LO16_PLTOFF: howto manager. (line 68) 11419 * BFD_RELOC_LO16_PLTOFF: howto manager. (line 68)
11215 * BFD_RELOC_M32C_HI8: howto manager. (line 1180) 11420 * BFD_RELOC_M32C_HI8: howto manager. (line 1229)
11216 * BFD_RELOC_M32C_RL_1ADDR: howto manager. (line 1182) 11421 * BFD_RELOC_M32C_RL_1ADDR: howto manager. (line 1231)
11217 * BFD_RELOC_M32C_RL_2ADDR: howto manager. (line 1183) 11422 * BFD_RELOC_M32C_RL_2ADDR: howto manager. (line 1232)
11218 * BFD_RELOC_M32C_RL_JUMP: howto manager. (line 1181) 11423 * BFD_RELOC_M32C_RL_JUMP: howto manager. (line 1230)
11219 * BFD_RELOC_M32R_10_PCREL: howto manager. (line 1190) 11424 * BFD_RELOC_M32R_10_PCREL: howto manager. (line 1239)
11220 * BFD_RELOC_M32R_18_PCREL: howto manager. (line 1194) 11425 * BFD_RELOC_M32R_18_PCREL: howto manager. (line 1243)
11221 * BFD_RELOC_M32R_24: howto manager. (line 1186) 11426 * BFD_RELOC_M32R_24: howto manager. (line 1235)
11222 * BFD_RELOC_M32R_26_PCREL: howto manager. (line 1197) 11427 * BFD_RELOC_M32R_26_PCREL: howto manager. (line 1246)
11223 * BFD_RELOC_M32R_26_PLTREL: howto manager. (line 1216) 11428 * BFD_RELOC_M32R_26_PLTREL: howto manager. (line 1265)
11224 * BFD_RELOC_M32R_COPY: howto manager. (line 1217) 11429 * BFD_RELOC_M32R_COPY: howto manager. (line 1266)
11225 * BFD_RELOC_M32R_GLOB_DAT: howto manager. (line 1218) 11430 * BFD_RELOC_M32R_GLOB_DAT: howto manager. (line 1267)
11226 * BFD_RELOC_M32R_GOT16_HI_SLO: howto manager. (line 1227) 11431 * BFD_RELOC_M32R_GOT16_HI_SLO: howto manager. (line 1276)
11227 * BFD_RELOC_M32R_GOT16_HI_ULO: howto manager. (line 1226) 11432 * BFD_RELOC_M32R_GOT16_HI_ULO: howto manager. (line 1275)
11228 * BFD_RELOC_M32R_GOT16_LO: howto manager. (line 1228) 11433 * BFD_RELOC_M32R_GOT16_LO: howto manager. (line 1277)
11229 * BFD_RELOC_M32R_GOT24: howto manager. (line 1215) 11434 * BFD_RELOC_M32R_GOT24: howto manager. (line 1264)
11230 * BFD_RELOC_M32R_GOTOFF: howto manager. (line 1221) 11435 * BFD_RELOC_M32R_GOTOFF: howto manager. (line 1270)
11231 * BFD_RELOC_M32R_GOTOFF_HI_SLO: howto manager. (line 1223) 11436 * BFD_RELOC_M32R_GOTOFF_HI_SLO: howto manager. (line 1272)
11232 * BFD_RELOC_M32R_GOTOFF_HI_ULO: howto manager. (line 1222) 11437 * BFD_RELOC_M32R_GOTOFF_HI_ULO: howto manager. (line 1271)
11233 * BFD_RELOC_M32R_GOTOFF_LO: howto manager. (line 1224) 11438 * BFD_RELOC_M32R_GOTOFF_LO: howto manager. (line 1273)
11234 * BFD_RELOC_M32R_GOTPC24: howto manager. (line 1225) 11439 * BFD_RELOC_M32R_GOTPC24: howto manager. (line 1274)
11235 * BFD_RELOC_M32R_GOTPC_HI_SLO: howto manager. (line 1230) 11440 * BFD_RELOC_M32R_GOTPC_HI_SLO: howto manager. (line 1279)
11236 * BFD_RELOC_M32R_GOTPC_HI_ULO: howto manager. (line 1229) 11441 * BFD_RELOC_M32R_GOTPC_HI_ULO: howto manager. (line 1278)
11237 * BFD_RELOC_M32R_GOTPC_LO: howto manager. (line 1231) 11442 * BFD_RELOC_M32R_GOTPC_LO: howto manager. (line 1280)
11238 * BFD_RELOC_M32R_HI16_SLO: howto manager. (line 1204) 11443 * BFD_RELOC_M32R_HI16_SLO: howto manager. (line 1253)
11239 * BFD_RELOC_M32R_HI16_ULO: howto manager. (line 1200) 11444 * BFD_RELOC_M32R_HI16_ULO: howto manager. (line 1249)
11240 * BFD_RELOC_M32R_JMP_SLOT: howto manager. (line 1219) 11445 * BFD_RELOC_M32R_JMP_SLOT: howto manager. (line 1268)
11241 * BFD_RELOC_M32R_LO16: howto manager. (line 1208) 11446 * BFD_RELOC_M32R_LO16: howto manager. (line 1257)
11242 * BFD_RELOC_M32R_RELATIVE: howto manager. (line 1220) 11447 * BFD_RELOC_M32R_RELATIVE: howto manager. (line 1269)
11243 * BFD_RELOC_M32R_SDA16: howto manager. (line 1211) 11448 * BFD_RELOC_M32R_SDA16: howto manager. (line 1260)
11244 * BFD_RELOC_M68HC11_24: howto manager. (line 2017) 11449 * BFD_RELOC_M68HC11_24: howto manager. (line 2073)
11245 * BFD_RELOC_M68HC11_3B: howto manager. (line 1992) 11450 * BFD_RELOC_M68HC11_3B: howto manager. (line 2048)
11246 * BFD_RELOC_M68HC11_HI8: howto manager. (line 1984) 11451 * BFD_RELOC_M68HC11_HI8: howto manager. (line 2040)
11247 * BFD_RELOC_M68HC11_LO16: howto manager. (line 2006) 11452 * BFD_RELOC_M68HC11_LO16: howto manager. (line 2062)
11248 * BFD_RELOC_M68HC11_LO8: howto manager. (line 1988) 11453 * BFD_RELOC_M68HC11_LO8: howto manager. (line 2044)
11249 * BFD_RELOC_M68HC11_PAGE: howto manager. (line 2012) 11454 * BFD_RELOC_M68HC11_PAGE: howto manager. (line 2068)
11250 * BFD_RELOC_M68HC11_RL_GROUP: howto manager. (line 2001) 11455 * BFD_RELOC_M68HC11_RL_GROUP: howto manager. (line 2057)
11251 * BFD_RELOC_M68HC11_RL_JUMP: howto manager. (line 1995) 11456 * BFD_RELOC_M68HC11_RL_JUMP: howto manager. (line 2051)
11252 * BFD_RELOC_M68HC12_5B: howto manager. (line 2023) 11457 * BFD_RELOC_M68HC12_10_PCREL: howto manager. (line 2133)
11253 * BFD_RELOC_MACH_O_PAIR: howto manager. (line 2392) 11458 * BFD_RELOC_M68HC12_16B: howto manager. (line 2127)
11254 * BFD_RELOC_MACH_O_SECTDIFF: howto manager. (line 2388) 11459 * BFD_RELOC_M68HC12_5B: howto manager. (line 2079)
11255 * BFD_RELOC_MACH_O_X86_64_BRANCH32: howto manager. (line 2395) 11460 * BFD_RELOC_M68HC12_9_PCREL: howto manager. (line 2130)
11256 * BFD_RELOC_MACH_O_X86_64_BRANCH8: howto manager. (line 2396) 11461 * BFD_RELOC_M68HC12_9B: howto manager. (line 2124)
11257 * BFD_RELOC_MACH_O_X86_64_GOT: howto manager. (line 2400) 11462 * BFD_RELOC_M68HC12_HI8XG: howto manager. (line 2140)
11258 * BFD_RELOC_MACH_O_X86_64_GOT_LOAD: howto manager. (line 2403) 11463 * BFD_RELOC_M68HC12_LO8XG: howto manager. (line 2136)
11259 * BFD_RELOC_MACH_O_X86_64_PCREL32_1: howto manager. (line 2413) 11464 * BFD_RELOC_MACH_O_LOCAL_SECTDIFF: howto manager. (line 2510)
11260 * BFD_RELOC_MACH_O_X86_64_PCREL32_2: howto manager. (line 2416) 11465 * BFD_RELOC_MACH_O_PAIR: howto manager. (line 2513)
11261 * BFD_RELOC_MACH_O_X86_64_PCREL32_4: howto manager. (line 2419) 11466 * BFD_RELOC_MACH_O_SECTDIFF: howto manager. (line 2506)
11262 * BFD_RELOC_MACH_O_X86_64_SUBTRACTOR32: howto manager. (line 2407) 11467 * BFD_RELOC_MACH_O_X86_64_BRANCH32: howto manager. (line 2516)
11263 * BFD_RELOC_MACH_O_X86_64_SUBTRACTOR64: howto manager. (line 2410) 11468 * BFD_RELOC_MACH_O_X86_64_BRANCH8: howto manager. (line 2517)
11264 * BFD_RELOC_MCORE_PCREL_32: howto manager. (line 1469) 11469 * BFD_RELOC_MACH_O_X86_64_GOT: howto manager. (line 2521)
11265 * BFD_RELOC_MCORE_PCREL_IMM11BY2: howto manager. (line 1467) 11470 * BFD_RELOC_MACH_O_X86_64_GOT_LOAD: howto manager. (line 2524)
11266 * BFD_RELOC_MCORE_PCREL_IMM4BY2: howto manager. (line 1468) 11471 * BFD_RELOC_MACH_O_X86_64_PCREL32_1: howto manager. (line 2534)
11267 * BFD_RELOC_MCORE_PCREL_IMM8BY4: howto manager. (line 1466) 11472 * BFD_RELOC_MACH_O_X86_64_PCREL32_2: howto manager. (line 2537)
11268 * BFD_RELOC_MCORE_PCREL_JSR_IMM11BY2: howto manager. (line 1470) 11473 * BFD_RELOC_MACH_O_X86_64_PCREL32_4: howto manager. (line 2540)
11269 * BFD_RELOC_MCORE_RVA: howto manager. (line 1471) 11474 * BFD_RELOC_MACH_O_X86_64_SUBTRACTOR32: howto manager. (line 2528)
11270 * BFD_RELOC_MEP_16: howto manager. (line 1475) 11475 * BFD_RELOC_MACH_O_X86_64_SUBTRACTOR64: howto manager. (line 2531)
11271 * BFD_RELOC_MEP_32: howto manager. (line 1476) 11476 * BFD_RELOC_MCORE_PCREL_32: howto manager. (line 1510)
11272 * BFD_RELOC_MEP_8: howto manager. (line 1474) 11477 * BFD_RELOC_MCORE_PCREL_IMM11BY2: howto manager. (line 1508)
11273 * BFD_RELOC_MEP_ADDR24A4: howto manager. (line 1491) 11478 * BFD_RELOC_MCORE_PCREL_IMM4BY2: howto manager. (line 1509)
11274 * BFD_RELOC_MEP_GNU_VTENTRY: howto manager. (line 1493) 11479 * BFD_RELOC_MCORE_PCREL_IMM8BY4: howto manager. (line 1507)
11275 * BFD_RELOC_MEP_GNU_VTINHERIT: howto manager. (line 1492) 11480 * BFD_RELOC_MCORE_PCREL_JSR_IMM11BY2: howto manager. (line 1511)
11276 * BFD_RELOC_MEP_GPREL: howto manager. (line 1485) 11481 * BFD_RELOC_MCORE_RVA: howto manager. (line 1512)
11277 * BFD_RELOC_MEP_HI16S: howto manager. (line 1484) 11482 * BFD_RELOC_MEP_16: howto manager. (line 1516)
11278 * BFD_RELOC_MEP_HI16U: howto manager. (line 1483) 11483 * BFD_RELOC_MEP_32: howto manager. (line 1517)
11279 * BFD_RELOC_MEP_LOW16: howto manager. (line 1482) 11484 * BFD_RELOC_MEP_8: howto manager. (line 1515)
11280 * BFD_RELOC_MEP_PCABS24A2: howto manager. (line 1481) 11485 * BFD_RELOC_MEP_ADDR24A4: howto manager. (line 1532)
11281 * BFD_RELOC_MEP_PCREL12A2: howto manager. (line 1478) 11486 * BFD_RELOC_MEP_GNU_VTENTRY: howto manager. (line 1534)
11282 * BFD_RELOC_MEP_PCREL17A2: howto manager. (line 1479) 11487 * BFD_RELOC_MEP_GNU_VTINHERIT: howto manager. (line 1533)
11283 * BFD_RELOC_MEP_PCREL24A2: howto manager. (line 1480) 11488 * BFD_RELOC_MEP_GPREL: howto manager. (line 1526)
11284 * BFD_RELOC_MEP_PCREL8A2: howto manager. (line 1477) 11489 * BFD_RELOC_MEP_HI16S: howto manager. (line 1525)
11285 * BFD_RELOC_MEP_TPREL: howto manager. (line 1486) 11490 * BFD_RELOC_MEP_HI16U: howto manager. (line 1524)
11286 * BFD_RELOC_MEP_TPREL7: howto manager. (line 1487) 11491 * BFD_RELOC_MEP_LOW16: howto manager. (line 1523)
11287 * BFD_RELOC_MEP_TPREL7A2: howto manager. (line 1488) 11492 * BFD_RELOC_MEP_PCABS24A2: howto manager. (line 1522)
11288 * BFD_RELOC_MEP_TPREL7A4: howto manager. (line 1489) 11493 * BFD_RELOC_MEP_PCREL12A2: howto manager. (line 1519)
11289 * BFD_RELOC_MEP_UIMM24: howto manager. (line 1490) 11494 * BFD_RELOC_MEP_PCREL17A2: howto manager. (line 1520)
11290 * BFD_RELOC_MICROBLAZE_32_GOTOFF: howto manager. (line 2466) 11495 * BFD_RELOC_MEP_PCREL24A2: howto manager. (line 1521)
11291 * BFD_RELOC_MICROBLAZE_32_LO: howto manager. (line 2422) 11496 * BFD_RELOC_MEP_PCREL8A2: howto manager. (line 1518)
11292 * BFD_RELOC_MICROBLAZE_32_LO_PCREL: howto manager. (line 2426) 11497 * BFD_RELOC_MEP_TPREL: howto manager. (line 1527)
11293 * BFD_RELOC_MICROBLAZE_32_ROSDA: howto manager. (line 2430) 11498 * BFD_RELOC_MEP_TPREL7: howto manager. (line 1528)
11294 * BFD_RELOC_MICROBLAZE_32_RWSDA: howto manager. (line 2434) 11499 * BFD_RELOC_MEP_TPREL7A2: howto manager. (line 1529)
11295 * BFD_RELOC_MICROBLAZE_32_SYM_OP_SYM: howto manager. (line 2438) 11500 * BFD_RELOC_MEP_TPREL7A4: howto manager. (line 1530)
11296 * BFD_RELOC_MICROBLAZE_64_GOT: howto manager. (line 2452) 11501 * BFD_RELOC_MEP_UIMM24: howto manager. (line 1531)
11297 * BFD_RELOC_MICROBLAZE_64_GOTOFF: howto manager. (line 2461) 11502 * BFD_RELOC_MICROBLAZE_32_GOTOFF: howto manager. (line 2587)
11298 * BFD_RELOC_MICROBLAZE_64_GOTPC: howto manager. (line 2447) 11503 * BFD_RELOC_MICROBLAZE_32_LO: howto manager. (line 2543)
11299 * BFD_RELOC_MICROBLAZE_64_NONE: howto manager. (line 2442) 11504 * BFD_RELOC_MICROBLAZE_32_LO_PCREL: howto manager. (line 2547)
11300 * BFD_RELOC_MICROBLAZE_64_PLT: howto manager. (line 2456) 11505 * BFD_RELOC_MICROBLAZE_32_ROSDA: howto manager. (line 2551)
11301 * BFD_RELOC_MICROBLAZE_COPY: howto manager. (line 2470) 11506 * BFD_RELOC_MICROBLAZE_32_RWSDA: howto manager. (line 2555)
11302 * BFD_RELOC_MICROMIPS_10_PCREL_S1: howto manager. (line 387) 11507 * BFD_RELOC_MICROBLAZE_32_SYM_OP_SYM: howto manager. (line 2559)
11303 * BFD_RELOC_MICROMIPS_16_PCREL_S1: howto manager. (line 388) 11508 * BFD_RELOC_MICROBLAZE_64_GOT: howto manager. (line 2573)
11304 * BFD_RELOC_MICROMIPS_7_PCREL_S1: howto manager. (line 386) 11509 * BFD_RELOC_MICROBLAZE_64_GOTOFF: howto manager. (line 2582)
11305 * BFD_RELOC_MICROMIPS_CALL16: howto manager. (line 400) 11510 * BFD_RELOC_MICROBLAZE_64_GOTPC: howto manager. (line 2568)
11306 * BFD_RELOC_MICROMIPS_CALL_HI16: howto manager. (line 406) 11511 * BFD_RELOC_MICROBLAZE_64_NONE: howto manager. (line 2563)
11307 * BFD_RELOC_MICROMIPS_CALL_LO16: howto manager. (line 408) 11512 * BFD_RELOC_MICROBLAZE_64_PLT: howto manager. (line 2577)
11308 * BFD_RELOC_MICROMIPS_GOT16: howto manager. (line 398) 11513 * BFD_RELOC_MICROBLAZE_COPY: howto manager. (line 2591)
11309 * BFD_RELOC_MICROMIPS_GOT_DISP: howto manager. (line 416) 11514 * BFD_RELOC_MICROMIPS_10_PCREL_S1: howto manager. (line 400)
11310 * BFD_RELOC_MICROMIPS_GOT_HI16: howto manager. (line 402) 11515 * BFD_RELOC_MICROMIPS_16_PCREL_S1: howto manager. (line 401)
11311 * BFD_RELOC_MICROMIPS_GOT_LO16: howto manager. (line 404) 11516 * BFD_RELOC_MICROMIPS_7_PCREL_S1: howto manager. (line 399)
11312 * BFD_RELOC_MICROMIPS_GOT_OFST: howto manager. (line 414) 11517 * BFD_RELOC_MICROMIPS_CALL16: howto manager. (line 413)
11313 * BFD_RELOC_MICROMIPS_GOT_PAGE: howto manager. (line 412) 11518 * BFD_RELOC_MICROMIPS_CALL_HI16: howto manager. (line 419)
11314 * BFD_RELOC_MICROMIPS_GPREL16: howto manager. (line 391) 11519 * BFD_RELOC_MICROMIPS_CALL_LO16: howto manager. (line 421)
11315 * BFD_RELOC_MICROMIPS_HI16: howto manager. (line 392) 11520 * BFD_RELOC_MICROMIPS_GOT16: howto manager. (line 411)
11316 * BFD_RELOC_MICROMIPS_HI16_S: howto manager. (line 393) 11521 * BFD_RELOC_MICROMIPS_GOT_DISP: howto manager. (line 429)
11317 * BFD_RELOC_MICROMIPS_HIGHER: howto manager. (line 425) 11522 * BFD_RELOC_MICROMIPS_GOT_HI16: howto manager. (line 415)
11318 * BFD_RELOC_MICROMIPS_HIGHEST: howto manager. (line 423) 11523 * BFD_RELOC_MICROMIPS_GOT_LO16: howto manager. (line 417)
11319 * BFD_RELOC_MICROMIPS_JALR: howto manager. (line 431) 11524 * BFD_RELOC_MICROMIPS_GOT_OFST: howto manager. (line 427)
11320 * BFD_RELOC_MICROMIPS_JMP: howto manager. (line 335) 11525 * BFD_RELOC_MICROMIPS_GOT_PAGE: howto manager. (line 425)
11321 * BFD_RELOC_MICROMIPS_LITERAL: howto manager. (line 383) 11526 * BFD_RELOC_MICROMIPS_GPREL16: howto manager. (line 404)
11322 * BFD_RELOC_MICROMIPS_LO16: howto manager. (line 394) 11527 * BFD_RELOC_MICROMIPS_HI16: howto manager. (line 405)
11323 * BFD_RELOC_MICROMIPS_SCN_DISP: howto manager. (line 427) 11528 * BFD_RELOC_MICROMIPS_HI16_S: howto manager. (line 406)
11324 * BFD_RELOC_MICROMIPS_SUB: howto manager. (line 410) 11529 * BFD_RELOC_MICROMIPS_HIGHER: howto manager. (line 438)
11325 * BFD_RELOC_MICROMIPS_TLS_DTPREL_HI16: howto manager. (line 441) 11530 * BFD_RELOC_MICROMIPS_HIGHEST: howto manager. (line 436)
11326 * BFD_RELOC_MICROMIPS_TLS_DTPREL_LO16: howto manager. (line 443) 11531 * BFD_RELOC_MICROMIPS_JALR: howto manager. (line 444)
11327 * BFD_RELOC_MICROMIPS_TLS_GD: howto manager. (line 437) 11532 * BFD_RELOC_MICROMIPS_JMP: howto manager. (line 339)
11328 * BFD_RELOC_MICROMIPS_TLS_GOTTPREL: howto manager. (line 445) 11533 * BFD_RELOC_MICROMIPS_LITERAL: howto manager. (line 396)
11329 * BFD_RELOC_MICROMIPS_TLS_LDM: howto manager. (line 439) 11534 * BFD_RELOC_MICROMIPS_LO16: howto manager. (line 407)
11330 * BFD_RELOC_MICROMIPS_TLS_TPREL_HI16: howto manager. (line 449) 11535 * BFD_RELOC_MICROMIPS_SCN_DISP: howto manager. (line 440)
11331 * BFD_RELOC_MICROMIPS_TLS_TPREL_LO16: howto manager. (line 451) 11536 * BFD_RELOC_MICROMIPS_SUB: howto manager. (line 423)
11332 * BFD_RELOC_MIPS16_CALL16: howto manager. (line 366) 11537 * BFD_RELOC_MICROMIPS_TLS_DTPREL_HI16: howto manager. (line 454)
11333 * BFD_RELOC_MIPS16_GOT16: howto manager. (line 365) 11538 * BFD_RELOC_MICROMIPS_TLS_DTPREL_LO16: howto manager. (line 456)
11334 * BFD_RELOC_MIPS16_GPREL: howto manager. (line 341) 11539 * BFD_RELOC_MICROMIPS_TLS_GD: howto manager. (line 450)
11335 * BFD_RELOC_MIPS16_HI16: howto manager. (line 370) 11540 * BFD_RELOC_MICROMIPS_TLS_GOTTPREL: howto manager. (line 458)
11336 * BFD_RELOC_MIPS16_HI16_S: howto manager. (line 373) 11541 * BFD_RELOC_MICROMIPS_TLS_LDM: howto manager. (line 452)
11337 * BFD_RELOC_MIPS16_JMP: howto manager. (line 338) 11542 * BFD_RELOC_MICROMIPS_TLS_TPREL_HI16: howto manager. (line 462)
11338 * BFD_RELOC_MIPS16_LO16: howto manager. (line 379) 11543 * BFD_RELOC_MICROMIPS_TLS_TPREL_LO16: howto manager. (line 464)
11339 * BFD_RELOC_MIPS_CALL16: howto manager. (line 399) 11544 * BFD_RELOC_MIPS16_CALL16: howto manager. (line 370)
11340 * BFD_RELOC_MIPS_CALL_HI16: howto manager. (line 405) 11545 * BFD_RELOC_MIPS16_GOT16: howto manager. (line 369)
11341 * BFD_RELOC_MIPS_CALL_LO16: howto manager. (line 407) 11546 * BFD_RELOC_MIPS16_GPREL: howto manager. (line 345)
11342 * BFD_RELOC_MIPS_COPY: howto manager. (line 454) 11547 * BFD_RELOC_MIPS16_HI16: howto manager. (line 374)
11343 * BFD_RELOC_MIPS_DELETE: howto manager. (line 421) 11548 * BFD_RELOC_MIPS16_HI16_S: howto manager. (line 377)
11344 * BFD_RELOC_MIPS_GOT16: howto manager. (line 397) 11549 * BFD_RELOC_MIPS16_JMP: howto manager. (line 342)
11345 * BFD_RELOC_MIPS_GOT_DISP: howto manager. (line 415) 11550 * BFD_RELOC_MIPS16_LO16: howto manager. (line 383)
11346 * BFD_RELOC_MIPS_GOT_HI16: howto manager. (line 401) 11551 * BFD_RELOC_MIPS16_TLS_DTPREL_HI16: howto manager. (line 388)
11347 * BFD_RELOC_MIPS_GOT_LO16: howto manager. (line 403) 11552 * BFD_RELOC_MIPS16_TLS_DTPREL_LO16: howto manager. (line 389)
11348 * BFD_RELOC_MIPS_GOT_OFST: howto manager. (line 413) 11553 * BFD_RELOC_MIPS16_TLS_GD: howto manager. (line 386)
11349 * BFD_RELOC_MIPS_GOT_PAGE: howto manager. (line 411) 11554 * BFD_RELOC_MIPS16_TLS_GOTTPREL: howto manager. (line 390)
11350 * BFD_RELOC_MIPS_HIGHER: howto manager. (line 424) 11555 * BFD_RELOC_MIPS16_TLS_LDM: howto manager. (line 387)
11351 * BFD_RELOC_MIPS_HIGHEST: howto manager. (line 422) 11556 * BFD_RELOC_MIPS16_TLS_TPREL_HI16: howto manager. (line 391)
11352 * BFD_RELOC_MIPS_INSERT_A: howto manager. (line 419) 11557 * BFD_RELOC_MIPS16_TLS_TPREL_LO16: howto manager. (line 392)
11353 * BFD_RELOC_MIPS_INSERT_B: howto manager. (line 420) 11558 * BFD_RELOC_MIPS_CALL16: howto manager. (line 412)
11354 * BFD_RELOC_MIPS_JALR: howto manager. (line 430) 11559 * BFD_RELOC_MIPS_CALL_HI16: howto manager. (line 418)
11355 * BFD_RELOC_MIPS_JMP: howto manager. (line 334) 11560 * BFD_RELOC_MIPS_CALL_LO16: howto manager. (line 420)
11356 * BFD_RELOC_MIPS_JUMP_SLOT: howto manager. (line 455) 11561 * BFD_RELOC_MIPS_COPY: howto manager. (line 467)
11357 * BFD_RELOC_MIPS_LITERAL: howto manager. (line 382) 11562 * BFD_RELOC_MIPS_DELETE: howto manager. (line 434)
11358 * BFD_RELOC_MIPS_REL16: howto manager. (line 428) 11563 * BFD_RELOC_MIPS_GOT16: howto manager. (line 410)
11359 * BFD_RELOC_MIPS_RELGOT: howto manager. (line 429) 11564 * BFD_RELOC_MIPS_GOT_DISP: howto manager. (line 428)
11360 * BFD_RELOC_MIPS_SCN_DISP: howto manager. (line 426) 11565 * BFD_RELOC_MIPS_GOT_HI16: howto manager. (line 414)
11361 * BFD_RELOC_MIPS_SHIFT5: howto manager. (line 417) 11566 * BFD_RELOC_MIPS_GOT_LO16: howto manager. (line 416)
11362 * BFD_RELOC_MIPS_SHIFT6: howto manager. (line 418) 11567 * BFD_RELOC_MIPS_GOT_OFST: howto manager. (line 426)
11363 * BFD_RELOC_MIPS_SUB: howto manager. (line 409) 11568 * BFD_RELOC_MIPS_GOT_PAGE: howto manager. (line 424)
11364 * BFD_RELOC_MIPS_TLS_DTPMOD32: howto manager. (line 432) 11569 * BFD_RELOC_MIPS_HIGHER: howto manager. (line 437)
11365 * BFD_RELOC_MIPS_TLS_DTPMOD64: howto manager. (line 434) 11570 * BFD_RELOC_MIPS_HIGHEST: howto manager. (line 435)
11366 * BFD_RELOC_MIPS_TLS_DTPREL32: howto manager. (line 433) 11571 * BFD_RELOC_MIPS_INSERT_A: howto manager. (line 432)
11367 * BFD_RELOC_MIPS_TLS_DTPREL64: howto manager. (line 435) 11572 * BFD_RELOC_MIPS_INSERT_B: howto manager. (line 433)
11368 * BFD_RELOC_MIPS_TLS_DTPREL_HI16: howto manager. (line 440) 11573 * BFD_RELOC_MIPS_JALR: howto manager. (line 443)
11369 * BFD_RELOC_MIPS_TLS_DTPREL_LO16: howto manager. (line 442) 11574 * BFD_RELOC_MIPS_JMP: howto manager. (line 338)
11370 * BFD_RELOC_MIPS_TLS_GD: howto manager. (line 436) 11575 * BFD_RELOC_MIPS_JUMP_SLOT: howto manager. (line 468)
11371 * BFD_RELOC_MIPS_TLS_GOTTPREL: howto manager. (line 444) 11576 * BFD_RELOC_MIPS_LITERAL: howto manager. (line 395)
11372 * BFD_RELOC_MIPS_TLS_LDM: howto manager. (line 438) 11577 * BFD_RELOC_MIPS_REL16: howto manager. (line 441)
11373 * BFD_RELOC_MIPS_TLS_TPREL32: howto manager. (line 446) 11578 * BFD_RELOC_MIPS_RELGOT: howto manager. (line 442)
11374 * BFD_RELOC_MIPS_TLS_TPREL64: howto manager. (line 447) 11579 * BFD_RELOC_MIPS_SCN_DISP: howto manager. (line 439)
11375 * BFD_RELOC_MIPS_TLS_TPREL_HI16: howto manager. (line 448) 11580 * BFD_RELOC_MIPS_SHIFT5: howto manager. (line 430)
11376 * BFD_RELOC_MIPS_TLS_TPREL_LO16: howto manager. (line 450) 11581 * BFD_RELOC_MIPS_SHIFT6: howto manager. (line 431)
11377 * BFD_RELOC_MMIX_ADDR19: howto manager. (line 1522) 11582 * BFD_RELOC_MIPS_SUB: howto manager. (line 422)
11378 * BFD_RELOC_MMIX_ADDR27: howto manager. (line 1526) 11583 * BFD_RELOC_MIPS_TLS_DTPMOD32: howto manager. (line 445)
11379 * BFD_RELOC_MMIX_BASE_PLUS_OFFSET: howto manager. (line 1538) 11584 * BFD_RELOC_MIPS_TLS_DTPMOD64: howto manager. (line 447)
11380 * BFD_RELOC_MMIX_CBRANCH: howto manager. (line 1502) 11585 * BFD_RELOC_MIPS_TLS_DTPREL32: howto manager. (line 446)
11381 * BFD_RELOC_MMIX_CBRANCH_1: howto manager. (line 1504) 11586 * BFD_RELOC_MIPS_TLS_DTPREL64: howto manager. (line 448)
11382 * BFD_RELOC_MMIX_CBRANCH_2: howto manager. (line 1505) 11587 * BFD_RELOC_MIPS_TLS_DTPREL_HI16: howto manager. (line 453)
11383 * BFD_RELOC_MMIX_CBRANCH_3: howto manager. (line 1506) 11588 * BFD_RELOC_MIPS_TLS_DTPREL_LO16: howto manager. (line 455)
11384 * BFD_RELOC_MMIX_CBRANCH_J: howto manager. (line 1503) 11589 * BFD_RELOC_MIPS_TLS_GD: howto manager. (line 449)
11385 * BFD_RELOC_MMIX_GETA: howto manager. (line 1496) 11590 * BFD_RELOC_MIPS_TLS_GOTTPREL: howto manager. (line 457)
11386 * BFD_RELOC_MMIX_GETA_1: howto manager. (line 1497) 11591 * BFD_RELOC_MIPS_TLS_LDM: howto manager. (line 451)
11387 * BFD_RELOC_MMIX_GETA_2: howto manager. (line 1498) 11592 * BFD_RELOC_MIPS_TLS_TPREL32: howto manager. (line 459)
11388 * BFD_RELOC_MMIX_GETA_3: howto manager. (line 1499) 11593 * BFD_RELOC_MIPS_TLS_TPREL64: howto manager. (line 460)
11389 * BFD_RELOC_MMIX_JMP: howto manager. (line 1516) 11594 * BFD_RELOC_MIPS_TLS_TPREL_HI16: howto manager. (line 461)
11390 * BFD_RELOC_MMIX_JMP_1: howto manager. (line 1517) 11595 * BFD_RELOC_MIPS_TLS_TPREL_LO16: howto manager. (line 463)
11391 * BFD_RELOC_MMIX_JMP_2: howto manager. (line 1518) 11596 * BFD_RELOC_MMIX_ADDR19: howto manager. (line 1563)
11392 * BFD_RELOC_MMIX_JMP_3: howto manager. (line 1519) 11597 * BFD_RELOC_MMIX_ADDR27: howto manager. (line 1567)
11393 * BFD_RELOC_MMIX_LOCAL: howto manager. (line 1542) 11598 * BFD_RELOC_MMIX_BASE_PLUS_OFFSET: howto manager. (line 1579)
11394 * BFD_RELOC_MMIX_PUSHJ: howto manager. (line 1509) 11599 * BFD_RELOC_MMIX_CBRANCH: howto manager. (line 1543)
11395 * BFD_RELOC_MMIX_PUSHJ_1: howto manager. (line 1510) 11600 * BFD_RELOC_MMIX_CBRANCH_1: howto manager. (line 1545)
11396 * BFD_RELOC_MMIX_PUSHJ_2: howto manager. (line 1511) 11601 * BFD_RELOC_MMIX_CBRANCH_2: howto manager. (line 1546)
11397 * BFD_RELOC_MMIX_PUSHJ_3: howto manager. (line 1512) 11602 * BFD_RELOC_MMIX_CBRANCH_3: howto manager. (line 1547)
11398 * BFD_RELOC_MMIX_PUSHJ_STUBBABLE: howto manager. (line 1513) 11603 * BFD_RELOC_MMIX_CBRANCH_J: howto manager. (line 1544)
11399 * BFD_RELOC_MMIX_REG: howto manager. (line 1534) 11604 * BFD_RELOC_MMIX_GETA: howto manager. (line 1537)
11400 * BFD_RELOC_MMIX_REG_OR_BYTE: howto manager. (line 1530) 11605 * BFD_RELOC_MMIX_GETA_1: howto manager. (line 1538)
11401 * BFD_RELOC_MN10300_16_PCREL: howto manager. (line 1372) 11606 * BFD_RELOC_MMIX_GETA_2: howto manager. (line 1539)
11402 * BFD_RELOC_MN10300_32_PCREL: howto manager. (line 1368) 11607 * BFD_RELOC_MMIX_GETA_3: howto manager. (line 1540)
11403 * BFD_RELOC_MN10300_ALIGN: howto manager. (line 534) 11608 * BFD_RELOC_MMIX_JMP: howto manager. (line 1557)
11404 * BFD_RELOC_MN10300_COPY: howto manager. (line 517) 11609 * BFD_RELOC_MMIX_JMP_1: howto manager. (line 1558)
11405 * BFD_RELOC_MN10300_GLOB_DAT: howto manager. (line 520) 11610 * BFD_RELOC_MMIX_JMP_2: howto manager. (line 1559)
11406 * BFD_RELOC_MN10300_GOT16: howto manager. (line 513) 11611 * BFD_RELOC_MMIX_JMP_3: howto manager. (line 1560)
11407 * BFD_RELOC_MN10300_GOT24: howto manager. (line 509) 11612 * BFD_RELOC_MMIX_LOCAL: howto manager. (line 1583)
11408 * BFD_RELOC_MN10300_GOT32: howto manager. (line 505) 11613 * BFD_RELOC_MMIX_PUSHJ: howto manager. (line 1550)
11409 * BFD_RELOC_MN10300_GOTOFF24: howto manager. (line 502) 11614 * BFD_RELOC_MMIX_PUSHJ_1: howto manager. (line 1551)
11410 * BFD_RELOC_MN10300_JMP_SLOT: howto manager. (line 523) 11615 * BFD_RELOC_MMIX_PUSHJ_2: howto manager. (line 1552)
11411 * BFD_RELOC_MN10300_RELATIVE: howto manager. (line 526) 11616 * BFD_RELOC_MMIX_PUSHJ_3: howto manager. (line 1553)
11412 * BFD_RELOC_MN10300_SYM_DIFF: howto manager. (line 529) 11617 * BFD_RELOC_MMIX_PUSHJ_STUBBABLE: howto manager. (line 1554)
11413 * BFD_RELOC_MOXIE_10_PCREL: howto manager. (line 458) 11618 * BFD_RELOC_MMIX_REG: howto manager. (line 1575)
11414 * BFD_RELOC_MSP430_10_PCREL: howto manager. (line 2263) 11619 * BFD_RELOC_MMIX_REG_OR_BYTE: howto manager. (line 1571)
11415 * BFD_RELOC_MSP430_16: howto manager. (line 2265) 11620 * BFD_RELOC_MN10300_16_PCREL: howto manager. (line 566)
11416 * BFD_RELOC_MSP430_16_BYTE: howto manager. (line 2267) 11621 * BFD_RELOC_MN10300_32_PCREL: howto manager. (line 562)
11417 * BFD_RELOC_MSP430_16_PCREL: howto manager. (line 2264) 11622 * BFD_RELOC_MN10300_ALIGN: howto manager. (line 547)
11418 * BFD_RELOC_MSP430_16_PCREL_BYTE: howto manager. (line 2266) 11623 * BFD_RELOC_MN10300_COPY: howto manager. (line 530)
11419 * BFD_RELOC_MSP430_2X_PCREL: howto manager. (line 2268) 11624 * BFD_RELOC_MN10300_GLOB_DAT: howto manager. (line 533)
11420 * BFD_RELOC_MSP430_RL_PCREL: howto manager. (line 2269) 11625 * BFD_RELOC_MN10300_GOT16: howto manager. (line 526)
11421 * BFD_RELOC_MT_GNU_VTENTRY: howto manager. (line 2257) 11626 * BFD_RELOC_MN10300_GOT24: howto manager. (line 522)
11422 * BFD_RELOC_MT_GNU_VTINHERIT: howto manager. (line 2254) 11627 * BFD_RELOC_MN10300_GOT32: howto manager. (line 518)
11423 * BFD_RELOC_MT_HI16: howto manager. (line 2248) 11628 * BFD_RELOC_MN10300_GOTOFF24: howto manager. (line 515)
11424 * BFD_RELOC_MT_LO16: howto manager. (line 2251) 11629 * BFD_RELOC_MN10300_JMP_SLOT: howto manager. (line 536)
11425 * BFD_RELOC_MT_PC16: howto manager. (line 2245) 11630 * BFD_RELOC_MN10300_RELATIVE: howto manager. (line 539)
11426 * BFD_RELOC_MT_PCINSN8: howto manager. (line 2260) 11631 * BFD_RELOC_MN10300_SYM_DIFF: howto manager. (line 542)
11632 * BFD_RELOC_MN10300_TLS_DTPMOD: howto manager. (line 557)
11633 * BFD_RELOC_MN10300_TLS_DTPOFF: howto manager. (line 558)
11634 * BFD_RELOC_MN10300_TLS_GD: howto manager. (line 551)
11635 * BFD_RELOC_MN10300_TLS_GOTIE: howto manager. (line 554)
11636 * BFD_RELOC_MN10300_TLS_IE: howto manager. (line 555)
11637 * BFD_RELOC_MN10300_TLS_LD: howto manager. (line 552)
11638 * BFD_RELOC_MN10300_TLS_LDO: howto manager. (line 553)
11639 * BFD_RELOC_MN10300_TLS_LE: howto manager. (line 556)
11640 * BFD_RELOC_MN10300_TLS_TPOFF: howto manager. (line 559)
11641 * BFD_RELOC_MOXIE_10_PCREL: howto manager. (line 471)
11642 * BFD_RELOC_MSP430_10_PCREL: howto manager. (line 2381)
11643 * BFD_RELOC_MSP430_16: howto manager. (line 2383)
11644 * BFD_RELOC_MSP430_16_BYTE: howto manager. (line 2385)
11645 * BFD_RELOC_MSP430_16_PCREL: howto manager. (line 2382)
11646 * BFD_RELOC_MSP430_16_PCREL_BYTE: howto manager. (line 2384)
11647 * BFD_RELOC_MSP430_2X_PCREL: howto manager. (line 2386)
11648 * BFD_RELOC_MSP430_RL_PCREL: howto manager. (line 2387)
11649 * BFD_RELOC_MT_GNU_VTENTRY: howto manager. (line 2375)
11650 * BFD_RELOC_MT_GNU_VTINHERIT: howto manager. (line 2372)
11651 * BFD_RELOC_MT_HI16: howto manager. (line 2366)
11652 * BFD_RELOC_MT_LO16: howto manager. (line 2369)
11653 * BFD_RELOC_MT_PC16: howto manager. (line 2363)
11654 * BFD_RELOC_MT_PCINSN8: howto manager. (line 2378)
11427 * BFD_RELOC_NONE: howto manager. (line 131) 11655 * BFD_RELOC_NONE: howto manager. (line 131)
11428 * BFD_RELOC_NS32K_DISP_16: howto manager. (line 600) 11656 * BFD_RELOC_NS32K_DISP_16: howto manager. (line 632)
11429 * BFD_RELOC_NS32K_DISP_16_PCREL: howto manager. (line 603) 11657 * BFD_RELOC_NS32K_DISP_16_PCREL: howto manager. (line 635)
11430 * BFD_RELOC_NS32K_DISP_32: howto manager. (line 601) 11658 * BFD_RELOC_NS32K_DISP_32: howto manager. (line 633)
11431 * BFD_RELOC_NS32K_DISP_32_PCREL: howto manager. (line 604) 11659 * BFD_RELOC_NS32K_DISP_32_PCREL: howto manager. (line 636)
11432 * BFD_RELOC_NS32K_DISP_8: howto manager. (line 599) 11660 * BFD_RELOC_NS32K_DISP_8: howto manager. (line 631)
11433 * BFD_RELOC_NS32K_DISP_8_PCREL: howto manager. (line 602) 11661 * BFD_RELOC_NS32K_DISP_8_PCREL: howto manager. (line 634)
11434 * BFD_RELOC_NS32K_IMM_16: howto manager. (line 594) 11662 * BFD_RELOC_NS32K_IMM_16: howto manager. (line 626)
11435 * BFD_RELOC_NS32K_IMM_16_PCREL: howto manager. (line 597) 11663 * BFD_RELOC_NS32K_IMM_16_PCREL: howto manager. (line 629)
11436 * BFD_RELOC_NS32K_IMM_32: howto manager. (line 595) 11664 * BFD_RELOC_NS32K_IMM_32: howto manager. (line 627)
11437 * BFD_RELOC_NS32K_IMM_32_PCREL: howto manager. (line 598) 11665 * BFD_RELOC_NS32K_IMM_32_PCREL: howto manager. (line 630)
11438 * BFD_RELOC_NS32K_IMM_8: howto manager. (line 593) 11666 * BFD_RELOC_NS32K_IMM_8: howto manager. (line 625)
11439 * BFD_RELOC_NS32K_IMM_8_PCREL: howto manager. (line 596) 11667 * BFD_RELOC_NS32K_IMM_8_PCREL: howto manager. (line 628)
11440 * BFD_RELOC_OPENRISC_ABS_26: howto manager. (line 2214) 11668 * BFD_RELOC_OPENRISC_ABS_26: howto manager. (line 2332)
11441 * BFD_RELOC_OPENRISC_REL_26: howto manager. (line 2215) 11669 * BFD_RELOC_OPENRISC_REL_26: howto manager. (line 2333)
11442 * BFD_RELOC_PDP11_DISP_6_PCREL: howto manager. (line 608) 11670 * BFD_RELOC_PDP11_DISP_6_PCREL: howto manager. (line 640)
11443 * BFD_RELOC_PDP11_DISP_8_PCREL: howto manager. (line 607) 11671 * BFD_RELOC_PDP11_DISP_8_PCREL: howto manager. (line 639)
11444 * BFD_RELOC_PJ_CODE_DIR16: howto manager. (line 613) 11672 * BFD_RELOC_PJ_CODE_DIR16: howto manager. (line 645)
11445 * BFD_RELOC_PJ_CODE_DIR32: howto manager. (line 614) 11673 * BFD_RELOC_PJ_CODE_DIR32: howto manager. (line 646)
11446 * BFD_RELOC_PJ_CODE_HI16: howto manager. (line 611) 11674 * BFD_RELOC_PJ_CODE_HI16: howto manager. (line 643)
11447 * BFD_RELOC_PJ_CODE_LO16: howto manager. (line 612) 11675 * BFD_RELOC_PJ_CODE_LO16: howto manager. (line 644)
11448 * BFD_RELOC_PJ_CODE_REL16: howto manager. (line 615) 11676 * BFD_RELOC_PJ_CODE_REL16: howto manager. (line 647)
11449 * BFD_RELOC_PJ_CODE_REL32: howto manager. (line 616) 11677 * BFD_RELOC_PJ_CODE_REL32: howto manager. (line 648)
11450 * BFD_RELOC_PPC64_ADDR16_DS: howto manager. (line 661) 11678 * BFD_RELOC_PPC64_ADDR16_DS: howto manager. (line 710)
11451 * BFD_RELOC_PPC64_ADDR16_LO_DS: howto manager. (line 662) 11679 * BFD_RELOC_PPC64_ADDR16_LO_DS: howto manager. (line 711)
11452 * BFD_RELOC_PPC64_DTPREL16_DS: howto manager. (line 710) 11680 * BFD_RELOC_PPC64_DTPREL16_DS: howto manager. (line 759)
11453 * BFD_RELOC_PPC64_DTPREL16_HIGHER: howto manager. (line 712) 11681 * BFD_RELOC_PPC64_DTPREL16_HIGHER: howto manager. (line 761)
11454 * BFD_RELOC_PPC64_DTPREL16_HIGHERA: howto manager. (line 713) 11682 * BFD_RELOC_PPC64_DTPREL16_HIGHERA: howto manager. (line 762)
11455 * BFD_RELOC_PPC64_DTPREL16_HIGHEST: howto manager. (line 714) 11683 * BFD_RELOC_PPC64_DTPREL16_HIGHEST: howto manager. (line 763)
11456 * BFD_RELOC_PPC64_DTPREL16_HIGHESTA: howto manager. (line 715) 11684 * BFD_RELOC_PPC64_DTPREL16_HIGHESTA: howto manager. (line 764)
11457 * BFD_RELOC_PPC64_DTPREL16_LO_DS: howto manager. (line 711) 11685 * BFD_RELOC_PPC64_DTPREL16_LO_DS: howto manager. (line 760)
11458 * BFD_RELOC_PPC64_GOT16_DS: howto manager. (line 663) 11686 * BFD_RELOC_PPC64_GOT16_DS: howto manager. (line 712)
11459 * BFD_RELOC_PPC64_GOT16_LO_DS: howto manager. (line 664) 11687 * BFD_RELOC_PPC64_GOT16_LO_DS: howto manager. (line 713)
11460 * BFD_RELOC_PPC64_HIGHER: howto manager. (line 649) 11688 * BFD_RELOC_PPC64_HIGHER: howto manager. (line 698)
11461 * BFD_RELOC_PPC64_HIGHER_S: howto manager. (line 650) 11689 * BFD_RELOC_PPC64_HIGHER_S: howto manager. (line 699)
11462 * BFD_RELOC_PPC64_HIGHEST: howto manager. (line 651) 11690 * BFD_RELOC_PPC64_HIGHEST: howto manager. (line 700)
11463 * BFD_RELOC_PPC64_HIGHEST_S: howto manager. (line 652) 11691 * BFD_RELOC_PPC64_HIGHEST_S: howto manager. (line 701)
11464 * BFD_RELOC_PPC64_PLT16_LO_DS: howto manager. (line 665) 11692 * BFD_RELOC_PPC64_PLT16_LO_DS: howto manager. (line 714)
11465 * BFD_RELOC_PPC64_PLTGOT16: howto manager. (line 657) 11693 * BFD_RELOC_PPC64_PLTGOT16: howto manager. (line 706)
11466 * BFD_RELOC_PPC64_PLTGOT16_DS: howto manager. (line 670) 11694 * BFD_RELOC_PPC64_PLTGOT16_DS: howto manager. (line 719)
11467 * BFD_RELOC_PPC64_PLTGOT16_HA: howto manager. (line 660) 11695 * BFD_RELOC_PPC64_PLTGOT16_HA: howto manager. (line 709)
11468 * BFD_RELOC_PPC64_PLTGOT16_HI: howto manager. (line 659) 11696 * BFD_RELOC_PPC64_PLTGOT16_HI: howto manager. (line 708)
11469 * BFD_RELOC_PPC64_PLTGOT16_LO: howto manager. (line 658) 11697 * BFD_RELOC_PPC64_PLTGOT16_LO: howto manager. (line 707)
11470 * BFD_RELOC_PPC64_PLTGOT16_LO_DS: howto manager. (line 671) 11698 * BFD_RELOC_PPC64_PLTGOT16_LO_DS: howto manager. (line 720)
11471 * BFD_RELOC_PPC64_SECTOFF_DS: howto manager. (line 666) 11699 * BFD_RELOC_PPC64_SECTOFF_DS: howto manager. (line 715)
11472 * BFD_RELOC_PPC64_SECTOFF_LO_DS: howto manager. (line 667) 11700 * BFD_RELOC_PPC64_SECTOFF_LO_DS: howto manager. (line 716)
11473 * BFD_RELOC_PPC64_TOC: howto manager. (line 656) 11701 * BFD_RELOC_PPC64_TOC: howto manager. (line 705)
11474 * BFD_RELOC_PPC64_TOC16_DS: howto manager. (line 668) 11702 * BFD_RELOC_PPC64_TOC16_DS: howto manager. (line 717)
11475 * BFD_RELOC_PPC64_TOC16_HA: howto manager. (line 655) 11703 * BFD_RELOC_PPC64_TOC16_HA: howto manager. (line 704)
11476 * BFD_RELOC_PPC64_TOC16_HI: howto manager. (line 654) 11704 * BFD_RELOC_PPC64_TOC16_HI: howto manager. (line 703)
11477 * BFD_RELOC_PPC64_TOC16_LO: howto manager. (line 653) 11705 * BFD_RELOC_PPC64_TOC16_LO: howto manager. (line 702)
11478 * BFD_RELOC_PPC64_TOC16_LO_DS: howto manager. (line 669) 11706 * BFD_RELOC_PPC64_TOC16_LO_DS: howto manager. (line 718)
11479 * BFD_RELOC_PPC64_TPREL16_DS: howto manager. (line 704) 11707 * BFD_RELOC_PPC64_TPREL16_DS: howto manager. (line 753)
11480 * BFD_RELOC_PPC64_TPREL16_HIGHER: howto manager. (line 706) 11708 * BFD_RELOC_PPC64_TPREL16_HIGHER: howto manager. (line 755)
11481 * BFD_RELOC_PPC64_TPREL16_HIGHERA: howto manager. (line 707) 11709 * BFD_RELOC_PPC64_TPREL16_HIGHERA: howto manager. (line 756)
11482 * BFD_RELOC_PPC64_TPREL16_HIGHEST: howto manager. (line 708) 11710 * BFD_RELOC_PPC64_TPREL16_HIGHEST: howto manager. (line 757)
11483 * BFD_RELOC_PPC64_TPREL16_HIGHESTA: howto manager. (line 709) 11711 * BFD_RELOC_PPC64_TPREL16_HIGHESTA: howto manager. (line 758)
11484 * BFD_RELOC_PPC64_TPREL16_LO_DS: howto manager. (line 705) 11712 * BFD_RELOC_PPC64_TPREL16_LO_DS: howto manager. (line 754)
11485 * BFD_RELOC_PPC_B16: howto manager. (line 622) 11713 * BFD_RELOC_PPC_B16: howto manager. (line 654)
11486 * BFD_RELOC_PPC_B16_BRNTAKEN: howto manager. (line 624) 11714 * BFD_RELOC_PPC_B16_BRNTAKEN: howto manager. (line 656)
11487 * BFD_RELOC_PPC_B16_BRTAKEN: howto manager. (line 623) 11715 * BFD_RELOC_PPC_B16_BRTAKEN: howto manager. (line 655)
11488 * BFD_RELOC_PPC_B26: howto manager. (line 619) 11716 * BFD_RELOC_PPC_B26: howto manager. (line 651)
11489 * BFD_RELOC_PPC_BA16: howto manager. (line 625) 11717 * BFD_RELOC_PPC_BA16: howto manager. (line 657)
11490 * BFD_RELOC_PPC_BA16_BRNTAKEN: howto manager. (line 627) 11718 * BFD_RELOC_PPC_BA16_BRNTAKEN: howto manager. (line 659)
11491 * BFD_RELOC_PPC_BA16_BRTAKEN: howto manager. (line 626) 11719 * BFD_RELOC_PPC_BA16_BRTAKEN: howto manager. (line 658)
11492 * BFD_RELOC_PPC_BA26: howto manager. (line 620) 11720 * BFD_RELOC_PPC_BA26: howto manager. (line 652)
11493 * BFD_RELOC_PPC_COPY: howto manager. (line 628) 11721 * BFD_RELOC_PPC_COPY: howto manager. (line 660)
11494 * BFD_RELOC_PPC_DTPMOD: howto manager. (line 677) 11722 * BFD_RELOC_PPC_DTPMOD: howto manager. (line 726)
11495 * BFD_RELOC_PPC_DTPREL: howto manager. (line 687) 11723 * BFD_RELOC_PPC_DTPREL: howto manager. (line 736)
11496 * BFD_RELOC_PPC_DTPREL16: howto manager. (line 683) 11724 * BFD_RELOC_PPC_DTPREL16: howto manager. (line 732)
11497 * BFD_RELOC_PPC_DTPREL16_HA: howto manager. (line 686) 11725 * BFD_RELOC_PPC_DTPREL16_HA: howto manager. (line 735)
11498 * BFD_RELOC_PPC_DTPREL16_HI: howto manager. (line 685) 11726 * BFD_RELOC_PPC_DTPREL16_HI: howto manager. (line 734)
11499 * BFD_RELOC_PPC_DTPREL16_LO: howto manager. (line 684) 11727 * BFD_RELOC_PPC_DTPREL16_LO: howto manager. (line 733)
11500 * BFD_RELOC_PPC_EMB_BIT_FLD: howto manager. (line 647) 11728 * BFD_RELOC_PPC_EMB_BIT_FLD: howto manager. (line 679)
11501 * BFD_RELOC_PPC_EMB_MRKREF: howto manager. (line 642) 11729 * BFD_RELOC_PPC_EMB_MRKREF: howto manager. (line 674)
11502 * BFD_RELOC_PPC_EMB_NADDR16: howto manager. (line 634) 11730 * BFD_RELOC_PPC_EMB_NADDR16: howto manager. (line 666)
11503 * BFD_RELOC_PPC_EMB_NADDR16_HA: howto manager. (line 637) 11731 * BFD_RELOC_PPC_EMB_NADDR16_HA: howto manager. (line 669)
11504 * BFD_RELOC_PPC_EMB_NADDR16_HI: howto manager. (line 636) 11732 * BFD_RELOC_PPC_EMB_NADDR16_HI: howto manager. (line 668)
11505 * BFD_RELOC_PPC_EMB_NADDR16_LO: howto manager. (line 635) 11733 * BFD_RELOC_PPC_EMB_NADDR16_LO: howto manager. (line 667)
11506 * BFD_RELOC_PPC_EMB_NADDR32: howto manager. (line 633) 11734 * BFD_RELOC_PPC_EMB_NADDR32: howto manager. (line 665)
11507 * BFD_RELOC_PPC_EMB_RELSDA: howto manager. (line 648) 11735 * BFD_RELOC_PPC_EMB_RELSDA: howto manager. (line 680)
11508 * BFD_RELOC_PPC_EMB_RELSEC16: howto manager. (line 643) 11736 * BFD_RELOC_PPC_EMB_RELSEC16: howto manager. (line 675)
11509 * BFD_RELOC_PPC_EMB_RELST_HA: howto manager. (line 646) 11737 * BFD_RELOC_PPC_EMB_RELST_HA: howto manager. (line 678)
11510 * BFD_RELOC_PPC_EMB_RELST_HI: howto manager. (line 645) 11738 * BFD_RELOC_PPC_EMB_RELST_HI: howto manager. (line 677)
11511 * BFD_RELOC_PPC_EMB_RELST_LO: howto manager. (line 644) 11739 * BFD_RELOC_PPC_EMB_RELST_LO: howto manager. (line 676)
11512 * BFD_RELOC_PPC_EMB_SDA21: howto manager. (line 641) 11740 * BFD_RELOC_PPC_EMB_SDA21: howto manager. (line 673)
11513 * BFD_RELOC_PPC_EMB_SDA2I16: howto manager. (line 639) 11741 * BFD_RELOC_PPC_EMB_SDA2I16: howto manager. (line 671)
11514 * BFD_RELOC_PPC_EMB_SDA2REL: howto manager. (line 640) 11742 * BFD_RELOC_PPC_EMB_SDA2REL: howto manager. (line 672)
11515 * BFD_RELOC_PPC_EMB_SDAI16: howto manager. (line 638) 11743 * BFD_RELOC_PPC_EMB_SDAI16: howto manager. (line 670)
11516 * BFD_RELOC_PPC_GLOB_DAT: howto manager. (line 629) 11744 * BFD_RELOC_PPC_GLOB_DAT: howto manager. (line 661)
11517 * BFD_RELOC_PPC_GOT_DTPREL16: howto manager. (line 700) 11745 * BFD_RELOC_PPC_GOT_DTPREL16: howto manager. (line 749)
11518 * BFD_RELOC_PPC_GOT_DTPREL16_HA: howto manager. (line 703) 11746 * BFD_RELOC_PPC_GOT_DTPREL16_HA: howto manager. (line 752)
11519 * BFD_RELOC_PPC_GOT_DTPREL16_HI: howto manager. (line 702) 11747 * BFD_RELOC_PPC_GOT_DTPREL16_HI: howto manager. (line 751)
11520 * BFD_RELOC_PPC_GOT_DTPREL16_LO: howto manager. (line 701) 11748 * BFD_RELOC_PPC_GOT_DTPREL16_LO: howto manager. (line 750)
11521 * BFD_RELOC_PPC_GOT_TLSGD16: howto manager. (line 688) 11749 * BFD_RELOC_PPC_GOT_TLSGD16: howto manager. (line 737)
11522 * BFD_RELOC_PPC_GOT_TLSGD16_HA: howto manager. (line 691) 11750 * BFD_RELOC_PPC_GOT_TLSGD16_HA: howto manager. (line 740)
11523 * BFD_RELOC_PPC_GOT_TLSGD16_HI: howto manager. (line 690) 11751 * BFD_RELOC_PPC_GOT_TLSGD16_HI: howto manager. (line 739)
11524 * BFD_RELOC_PPC_GOT_TLSGD16_LO: howto manager. (line 689) 11752 * BFD_RELOC_PPC_GOT_TLSGD16_LO: howto manager. (line 738)
11525 * BFD_RELOC_PPC_GOT_TLSLD16: howto manager. (line 692) 11753 * BFD_RELOC_PPC_GOT_TLSLD16: howto manager. (line 741)
11526 * BFD_RELOC_PPC_GOT_TLSLD16_HA: howto manager. (line 695) 11754 * BFD_RELOC_PPC_GOT_TLSLD16_HA: howto manager. (line 744)
11527 * BFD_RELOC_PPC_GOT_TLSLD16_HI: howto manager. (line 694) 11755 * BFD_RELOC_PPC_GOT_TLSLD16_HI: howto manager. (line 743)
11528 * BFD_RELOC_PPC_GOT_TLSLD16_LO: howto manager. (line 693) 11756 * BFD_RELOC_PPC_GOT_TLSLD16_LO: howto manager. (line 742)
11529 * BFD_RELOC_PPC_GOT_TPREL16: howto manager. (line 696) 11757 * BFD_RELOC_PPC_GOT_TPREL16: howto manager. (line 745)
11530 * BFD_RELOC_PPC_GOT_TPREL16_HA: howto manager. (line 699) 11758 * BFD_RELOC_PPC_GOT_TPREL16_HA: howto manager. (line 748)
11531 * BFD_RELOC_PPC_GOT_TPREL16_HI: howto manager. (line 698) 11759 * BFD_RELOC_PPC_GOT_TPREL16_HI: howto manager. (line 747)
11532 * BFD_RELOC_PPC_GOT_TPREL16_LO: howto manager. (line 697) 11760 * BFD_RELOC_PPC_GOT_TPREL16_LO: howto manager. (line 746)
11533 * BFD_RELOC_PPC_JMP_SLOT: howto manager. (line 630) 11761 * BFD_RELOC_PPC_JMP_SLOT: howto manager. (line 662)
11534 * BFD_RELOC_PPC_LOCAL24PC: howto manager. (line 632) 11762 * BFD_RELOC_PPC_LOCAL24PC: howto manager. (line 664)
11535 * BFD_RELOC_PPC_RELATIVE: howto manager. (line 631) 11763 * BFD_RELOC_PPC_RELATIVE: howto manager. (line 663)
11536 * BFD_RELOC_PPC_TLS: howto manager. (line 674) 11764 * BFD_RELOC_PPC_TLS: howto manager. (line 723)
11537 * BFD_RELOC_PPC_TLSGD: howto manager. (line 675) 11765 * BFD_RELOC_PPC_TLSGD: howto manager. (line 724)
11538 * BFD_RELOC_PPC_TLSLD: howto manager. (line 676) 11766 * BFD_RELOC_PPC_TLSLD: howto manager. (line 725)
11539 * BFD_RELOC_PPC_TOC16: howto manager. (line 621) 11767 * BFD_RELOC_PPC_TOC16: howto manager. (line 653)
11540 * BFD_RELOC_PPC_TPREL: howto manager. (line 682) 11768 * BFD_RELOC_PPC_TPREL: howto manager. (line 731)
11541 * BFD_RELOC_PPC_TPREL16: howto manager. (line 678) 11769 * BFD_RELOC_PPC_TPREL16: howto manager. (line 727)
11542 * BFD_RELOC_PPC_TPREL16_HA: howto manager. (line 681) 11770 * BFD_RELOC_PPC_TPREL16_HA: howto manager. (line 730)
11543 * BFD_RELOC_PPC_TPREL16_HI: howto manager. (line 680) 11771 * BFD_RELOC_PPC_TPREL16_HI: howto manager. (line 729)
11544 * BFD_RELOC_PPC_TPREL16_LO: howto manager. (line 679) 11772 * BFD_RELOC_PPC_TPREL16_LO: howto manager. (line 728)
11545 * BFD_RELOC_RELC: howto manager. (line 2231) 11773 * BFD_RELOC_PPC_VLE_HA16A: howto manager. (line 688)
11546 * BFD_RELOC_RL78_16_OP: howto manager. (line 1653) 11774 * BFD_RELOC_PPC_VLE_HA16D: howto manager. (line 689)
11547 * BFD_RELOC_RL78_16U: howto manager. (line 1657) 11775 * BFD_RELOC_PPC_VLE_HI16A: howto manager. (line 686)
11548 * BFD_RELOC_RL78_24_OP: howto manager. (line 1654) 11776 * BFD_RELOC_PPC_VLE_HI16D: howto manager. (line 687)
11549 * BFD_RELOC_RL78_24U: howto manager. (line 1658) 11777 * BFD_RELOC_PPC_VLE_LO16A: howto manager. (line 684)
11550 * BFD_RELOC_RL78_32_OP: howto manager. (line 1655) 11778 * BFD_RELOC_PPC_VLE_LO16D: howto manager. (line 685)
11551 * BFD_RELOC_RL78_8U: howto manager. (line 1656) 11779 * BFD_RELOC_PPC_VLE_REL15: howto manager. (line 682)
11552 * BFD_RELOC_RL78_ABS16: howto manager. (line 1670) 11780 * BFD_RELOC_PPC_VLE_REL24: howto manager. (line 683)
11553 * BFD_RELOC_RL78_ABS16_REV: howto manager. (line 1671) 11781 * BFD_RELOC_PPC_VLE_REL8: howto manager. (line 681)
11554 * BFD_RELOC_RL78_ABS16U: howto manager. (line 1674) 11782 * BFD_RELOC_PPC_VLE_SDA21: howto manager. (line 690)
11555 * BFD_RELOC_RL78_ABS16UL: howto manager. (line 1676) 11783 * BFD_RELOC_PPC_VLE_SDA21_LO: howto manager. (line 691)
11556 * BFD_RELOC_RL78_ABS16UW: howto manager. (line 1675) 11784 * BFD_RELOC_PPC_VLE_SDAREL_HA16A: howto manager. (line 696)
11557 * BFD_RELOC_RL78_ABS32: howto manager. (line 1672) 11785 * BFD_RELOC_PPC_VLE_SDAREL_HA16D: howto manager. (line 697)
11558 * BFD_RELOC_RL78_ABS32_REV: howto manager. (line 1673) 11786 * BFD_RELOC_PPC_VLE_SDAREL_HI16A: howto manager. (line 694)
11559 * BFD_RELOC_RL78_ABS8: howto manager. (line 1669) 11787 * BFD_RELOC_PPC_VLE_SDAREL_HI16D: howto manager. (line 695)
11560 * BFD_RELOC_RL78_DIFF: howto manager. (line 1660) 11788 * BFD_RELOC_PPC_VLE_SDAREL_LO16A: howto manager. (line 692)
11561 * BFD_RELOC_RL78_DIR3U_PCREL: howto manager. (line 1659) 11789 * BFD_RELOC_PPC_VLE_SDAREL_LO16D: howto manager. (line 693)
11562 * BFD_RELOC_RL78_GPRELB: howto manager. (line 1661) 11790 * BFD_RELOC_RELC: howto manager. (line 2349)
11563 * BFD_RELOC_RL78_GPRELL: howto manager. (line 1663) 11791 * BFD_RELOC_RL78_16_OP: howto manager. (line 1706)
11564 * BFD_RELOC_RL78_GPRELW: howto manager. (line 1662) 11792 * BFD_RELOC_RL78_16U: howto manager. (line 1710)
11565 * BFD_RELOC_RL78_HI16: howto manager. (line 1678) 11793 * BFD_RELOC_RL78_24_OP: howto manager. (line 1707)
11566 * BFD_RELOC_RL78_HI8: howto manager. (line 1679) 11794 * BFD_RELOC_RL78_24U: howto manager. (line 1711)
11567 * BFD_RELOC_RL78_LO16: howto manager. (line 1680) 11795 * BFD_RELOC_RL78_32_OP: howto manager. (line 1708)
11568 * BFD_RELOC_RL78_NEG16: howto manager. (line 1650) 11796 * BFD_RELOC_RL78_8U: howto manager. (line 1709)
11569 * BFD_RELOC_RL78_NEG24: howto manager. (line 1651) 11797 * BFD_RELOC_RL78_ABS16: howto manager. (line 1723)
11570 * BFD_RELOC_RL78_NEG32: howto manager. (line 1652) 11798 * BFD_RELOC_RL78_ABS16_REV: howto manager. (line 1724)
11571 * BFD_RELOC_RL78_NEG8: howto manager. (line 1649) 11799 * BFD_RELOC_RL78_ABS16U: howto manager. (line 1727)
11572 * BFD_RELOC_RL78_OP_AND: howto manager. (line 1667) 11800 * BFD_RELOC_RL78_ABS16UL: howto manager. (line 1729)
11573 * BFD_RELOC_RL78_OP_NEG: howto manager. (line 1666) 11801 * BFD_RELOC_RL78_ABS16UW: howto manager. (line 1728)
11574 * BFD_RELOC_RL78_OP_SHRA: howto manager. (line 1668) 11802 * BFD_RELOC_RL78_ABS32: howto manager. (line 1725)
11575 * BFD_RELOC_RL78_OP_SUBTRACT: howto manager. (line 1665) 11803 * BFD_RELOC_RL78_ABS32_REV: howto manager. (line 1726)
11576 * BFD_RELOC_RL78_RELAX: howto manager. (line 1677) 11804 * BFD_RELOC_RL78_ABS8: howto manager. (line 1722)
11577 * BFD_RELOC_RL78_SYM: howto manager. (line 1664) 11805 * BFD_RELOC_RL78_DIFF: howto manager. (line 1713)
11806 * BFD_RELOC_RL78_DIR3U_PCREL: howto manager. (line 1712)
11807 * BFD_RELOC_RL78_GPRELB: howto manager. (line 1714)
11808 * BFD_RELOC_RL78_GPRELL: howto manager. (line 1716)
11809 * BFD_RELOC_RL78_GPRELW: howto manager. (line 1715)
11810 * BFD_RELOC_RL78_HI16: howto manager. (line 1731)
11811 * BFD_RELOC_RL78_HI8: howto manager. (line 1732)
11812 * BFD_RELOC_RL78_LO16: howto manager. (line 1733)
11813 * BFD_RELOC_RL78_NEG16: howto manager. (line 1703)
11814 * BFD_RELOC_RL78_NEG24: howto manager. (line 1704)
11815 * BFD_RELOC_RL78_NEG32: howto manager. (line 1705)
11816 * BFD_RELOC_RL78_NEG8: howto manager. (line 1702)
11817 * BFD_RELOC_RL78_OP_AND: howto manager. (line 1720)
11818 * BFD_RELOC_RL78_OP_NEG: howto manager. (line 1719)
11819 * BFD_RELOC_RL78_OP_SHRA: howto manager. (line 1721)
11820 * BFD_RELOC_RL78_OP_SUBTRACT: howto manager. (line 1718)
11821 * BFD_RELOC_RL78_RELAX: howto manager. (line 1730)
11822 * BFD_RELOC_RL78_SYM: howto manager. (line 1717)
11578 * BFD_RELOC_RVA: howto manager. (line 100) 11823 * BFD_RELOC_RVA: howto manager. (line 100)
11579 * BFD_RELOC_RX_16_OP: howto manager. (line 1687) 11824 * BFD_RELOC_RX_16_OP: howto manager. (line 1740)
11580 * BFD_RELOC_RX_16U: howto manager. (line 1691) 11825 * BFD_RELOC_RX_16U: howto manager. (line 1744)
11581 * BFD_RELOC_RX_24_OP: howto manager. (line 1688) 11826 * BFD_RELOC_RX_24_OP: howto manager. (line 1741)
11582 * BFD_RELOC_RX_24U: howto manager. (line 1692) 11827 * BFD_RELOC_RX_24U: howto manager. (line 1745)
11583 * BFD_RELOC_RX_32_OP: howto manager. (line 1689) 11828 * BFD_RELOC_RX_32_OP: howto manager. (line 1742)
11584 * BFD_RELOC_RX_8U: howto manager. (line 1690) 11829 * BFD_RELOC_RX_8U: howto manager. (line 1743)
11585 * BFD_RELOC_RX_ABS16: howto manager. (line 1702) 11830 * BFD_RELOC_RX_ABS16: howto manager. (line 1755)
11586 * BFD_RELOC_RX_ABS16_REV: howto manager. (line 1703) 11831 * BFD_RELOC_RX_ABS16_REV: howto manager. (line 1756)
11587 * BFD_RELOC_RX_ABS16U: howto manager. (line 1706) 11832 * BFD_RELOC_RX_ABS16U: howto manager. (line 1759)
11588 * BFD_RELOC_RX_ABS16UL: howto manager. (line 1708) 11833 * BFD_RELOC_RX_ABS16UL: howto manager. (line 1761)
11589 * BFD_RELOC_RX_ABS16UW: howto manager. (line 1707) 11834 * BFD_RELOC_RX_ABS16UW: howto manager. (line 1760)
11590 * BFD_RELOC_RX_ABS32: howto manager. (line 1704) 11835 * BFD_RELOC_RX_ABS32: howto manager. (line 1757)
11591 * BFD_RELOC_RX_ABS32_REV: howto manager. (line 1705) 11836 * BFD_RELOC_RX_ABS32_REV: howto manager. (line 1758)
11592 * BFD_RELOC_RX_ABS8: howto manager. (line 1701) 11837 * BFD_RELOC_RX_ABS8: howto manager. (line 1754)
11593 * BFD_RELOC_RX_DIFF: howto manager. (line 1694) 11838 * BFD_RELOC_RX_DIFF: howto manager. (line 1747)
11594 * BFD_RELOC_RX_DIR3U_PCREL: howto manager. (line 1693) 11839 * BFD_RELOC_RX_DIR3U_PCREL: howto manager. (line 1746)
11595 * BFD_RELOC_RX_GPRELB: howto manager. (line 1695) 11840 * BFD_RELOC_RX_GPRELB: howto manager. (line 1748)
11596 * BFD_RELOC_RX_GPRELL: howto manager. (line 1697) 11841 * BFD_RELOC_RX_GPRELL: howto manager. (line 1750)
11597 * BFD_RELOC_RX_GPRELW: howto manager. (line 1696) 11842 * BFD_RELOC_RX_GPRELW: howto manager. (line 1749)
11598 * BFD_RELOC_RX_NEG16: howto manager. (line 1684) 11843 * BFD_RELOC_RX_NEG16: howto manager. (line 1737)
11599 * BFD_RELOC_RX_NEG24: howto manager. (line 1685) 11844 * BFD_RELOC_RX_NEG24: howto manager. (line 1738)
11600 * BFD_RELOC_RX_NEG32: howto manager. (line 1686) 11845 * BFD_RELOC_RX_NEG32: howto manager. (line 1739)
11601 * BFD_RELOC_RX_NEG8: howto manager. (line 1683) 11846 * BFD_RELOC_RX_NEG8: howto manager. (line 1736)
11602 * BFD_RELOC_RX_OP_NEG: howto manager. (line 1700) 11847 * BFD_RELOC_RX_OP_NEG: howto manager. (line 1753)
11603 * BFD_RELOC_RX_OP_SUBTRACT: howto manager. (line 1699) 11848 * BFD_RELOC_RX_OP_SUBTRACT: howto manager. (line 1752)
11604 * BFD_RELOC_RX_RELAX: howto manager. (line 1709) 11849 * BFD_RELOC_RX_RELAX: howto manager. (line 1762)
11605 * BFD_RELOC_RX_SYM: howto manager. (line 1698) 11850 * BFD_RELOC_RX_SYM: howto manager. (line 1751)
11606 * BFD_RELOC_SCORE16_BRANCH: howto manager. (line 1837) 11851 * BFD_RELOC_SCORE16_BRANCH: howto manager. (line 1893)
11607 * BFD_RELOC_SCORE16_JMP: howto manager. (line 1834) 11852 * BFD_RELOC_SCORE16_JMP: howto manager. (line 1890)
11608 * BFD_RELOC_SCORE_BCMP: howto manager. (line 1840) 11853 * BFD_RELOC_SCORE_BCMP: howto manager. (line 1896)
11609 * BFD_RELOC_SCORE_BRANCH: howto manager. (line 1825) 11854 * BFD_RELOC_SCORE_BRANCH: howto manager. (line 1881)
11610 * BFD_RELOC_SCORE_CALL15: howto manager. (line 1845) 11855 * BFD_RELOC_SCORE_CALL15: howto manager. (line 1901)
11611 * BFD_RELOC_SCORE_DUMMY2: howto manager. (line 1821) 11856 * BFD_RELOC_SCORE_DUMMY2: howto manager. (line 1877)
11612 * BFD_RELOC_SCORE_DUMMY_HI16: howto manager. (line 1846) 11857 * BFD_RELOC_SCORE_DUMMY_HI16: howto manager. (line 1902)
11613 * BFD_RELOC_SCORE_GOT15: howto manager. (line 1843) 11858 * BFD_RELOC_SCORE_GOT15: howto manager. (line 1899)
11614 * BFD_RELOC_SCORE_GOT_LO16: howto manager. (line 1844) 11859 * BFD_RELOC_SCORE_GOT_LO16: howto manager. (line 1900)
11615 * BFD_RELOC_SCORE_GPREL15: howto manager. (line 1818) 11860 * BFD_RELOC_SCORE_GPREL15: howto manager. (line 1874)
11616 * BFD_RELOC_SCORE_IMM30: howto manager. (line 1828) 11861 * BFD_RELOC_SCORE_IMM30: howto manager. (line 1884)
11617 * BFD_RELOC_SCORE_IMM32: howto manager. (line 1831) 11862 * BFD_RELOC_SCORE_IMM32: howto manager. (line 1887)
11618 * BFD_RELOC_SCORE_JMP: howto manager. (line 1822) 11863 * BFD_RELOC_SCORE_JMP: howto manager. (line 1878)
11619 * BFD_RELOC_SH_ALIGN: howto manager. (line 909) 11864 * BFD_RELOC_SH_ALIGN: howto manager. (line 958)
11620 * BFD_RELOC_SH_CODE: howto manager. (line 910) 11865 * BFD_RELOC_SH_CODE: howto manager. (line 959)
11621 * BFD_RELOC_SH_COPY: howto manager. (line 915) 11866 * BFD_RELOC_SH_COPY: howto manager. (line 964)
11622 * BFD_RELOC_SH_COPY64: howto manager. (line 940) 11867 * BFD_RELOC_SH_COPY64: howto manager. (line 989)
11623 * BFD_RELOC_SH_COUNT: howto manager. (line 908) 11868 * BFD_RELOC_SH_COUNT: howto manager. (line 957)
11624 * BFD_RELOC_SH_DATA: howto manager. (line 911) 11869 * BFD_RELOC_SH_DATA: howto manager. (line 960)
11625 * BFD_RELOC_SH_DISP12: howto manager. (line 891) 11870 * BFD_RELOC_SH_DISP12: howto manager. (line 940)
11626 * BFD_RELOC_SH_DISP12BY2: howto manager. (line 892) 11871 * BFD_RELOC_SH_DISP12BY2: howto manager. (line 941)
11627 * BFD_RELOC_SH_DISP12BY4: howto manager. (line 893) 11872 * BFD_RELOC_SH_DISP12BY4: howto manager. (line 942)
11628 * BFD_RELOC_SH_DISP12BY8: howto manager. (line 894) 11873 * BFD_RELOC_SH_DISP12BY8: howto manager. (line 943)
11629 * BFD_RELOC_SH_DISP20: howto manager. (line 895) 11874 * BFD_RELOC_SH_DISP20: howto manager. (line 944)
11630 * BFD_RELOC_SH_DISP20BY8: howto manager. (line 896) 11875 * BFD_RELOC_SH_DISP20BY8: howto manager. (line 945)
11631 * BFD_RELOC_SH_FUNCDESC: howto manager. (line 983) 11876 * BFD_RELOC_SH_FUNCDESC: howto manager. (line 1032)
11632 * BFD_RELOC_SH_GLOB_DAT: howto manager. (line 916) 11877 * BFD_RELOC_SH_GLOB_DAT: howto manager. (line 965)
11633 * BFD_RELOC_SH_GLOB_DAT64: howto manager. (line 941) 11878 * BFD_RELOC_SH_GLOB_DAT64: howto manager. (line 990)
11634 * BFD_RELOC_SH_GOT10BY4: howto manager. (line 944) 11879 * BFD_RELOC_SH_GOT10BY4: howto manager. (line 993)
11635 * BFD_RELOC_SH_GOT10BY8: howto manager. (line 945) 11880 * BFD_RELOC_SH_GOT10BY8: howto manager. (line 994)
11636 * BFD_RELOC_SH_GOT20: howto manager. (line 977) 11881 * BFD_RELOC_SH_GOT20: howto manager. (line 1026)
11637 * BFD_RELOC_SH_GOT_HI16: howto manager. (line 923) 11882 * BFD_RELOC_SH_GOT_HI16: howto manager. (line 972)
11638 * BFD_RELOC_SH_GOT_LOW16: howto manager. (line 920) 11883 * BFD_RELOC_SH_GOT_LOW16: howto manager. (line 969)
11639 * BFD_RELOC_SH_GOT_MEDHI16: howto manager. (line 922) 11884 * BFD_RELOC_SH_GOT_MEDHI16: howto manager. (line 971)
11640 * BFD_RELOC_SH_GOT_MEDLOW16: howto manager. (line 921) 11885 * BFD_RELOC_SH_GOT_MEDLOW16: howto manager. (line 970)
11641 * BFD_RELOC_SH_GOTFUNCDESC: howto manager. (line 979) 11886 * BFD_RELOC_SH_GOTFUNCDESC: howto manager. (line 1028)
11642 * BFD_RELOC_SH_GOTFUNCDESC20: howto manager. (line 980) 11887 * BFD_RELOC_SH_GOTFUNCDESC20: howto manager. (line 1029)
11643 * BFD_RELOC_SH_GOTOFF20: howto manager. (line 978) 11888 * BFD_RELOC_SH_GOTOFF20: howto manager. (line 1027)
11644 * BFD_RELOC_SH_GOTOFF_HI16: howto manager. (line 935) 11889 * BFD_RELOC_SH_GOTOFF_HI16: howto manager. (line 984)
11645 * BFD_RELOC_SH_GOTOFF_LOW16: howto manager. (line 932) 11890 * BFD_RELOC_SH_GOTOFF_LOW16: howto manager. (line 981)
11646 * BFD_RELOC_SH_GOTOFF_MEDHI16: howto manager. (line 934) 11891 * BFD_RELOC_SH_GOTOFF_MEDHI16: howto manager. (line 983)
11647 * BFD_RELOC_SH_GOTOFF_MEDLOW16: howto manager. (line 933) 11892 * BFD_RELOC_SH_GOTOFF_MEDLOW16: howto manager. (line 982)
11648 * BFD_RELOC_SH_GOTOFFFUNCDESC: howto manager. (line 981) 11893 * BFD_RELOC_SH_GOTOFFFUNCDESC: howto manager. (line 1030)
11649 * BFD_RELOC_SH_GOTOFFFUNCDESC20: howto manager. (line 982) 11894 * BFD_RELOC_SH_GOTOFFFUNCDESC20: howto manager. (line 1031)
11650 * BFD_RELOC_SH_GOTPC: howto manager. (line 919) 11895 * BFD_RELOC_SH_GOTPC: howto manager. (line 968)
11651 * BFD_RELOC_SH_GOTPC_HI16: howto manager. (line 939) 11896 * BFD_RELOC_SH_GOTPC_HI16: howto manager. (line 988)
11652 * BFD_RELOC_SH_GOTPC_LOW16: howto manager. (line 936) 11897 * BFD_RELOC_SH_GOTPC_LOW16: howto manager. (line 985)
11653 * BFD_RELOC_SH_GOTPC_MEDHI16: howto manager. (line 938) 11898 * BFD_RELOC_SH_GOTPC_MEDHI16: howto manager. (line 987)
11654 * BFD_RELOC_SH_GOTPC_MEDLOW16: howto manager. (line 937) 11899 * BFD_RELOC_SH_GOTPC_MEDLOW16: howto manager. (line 986)
11655 * BFD_RELOC_SH_GOTPLT10BY4: howto manager. (line 946) 11900 * BFD_RELOC_SH_GOTPLT10BY4: howto manager. (line 995)
11656 * BFD_RELOC_SH_GOTPLT10BY8: howto manager. (line 947) 11901 * BFD_RELOC_SH_GOTPLT10BY8: howto manager. (line 996)
11657 * BFD_RELOC_SH_GOTPLT32: howto manager. (line 948) 11902 * BFD_RELOC_SH_GOTPLT32: howto manager. (line 997)
11658 * BFD_RELOC_SH_GOTPLT_HI16: howto manager. (line 927) 11903 * BFD_RELOC_SH_GOTPLT_HI16: howto manager. (line 976)
11659 * BFD_RELOC_SH_GOTPLT_LOW16: howto manager. (line 924) 11904 * BFD_RELOC_SH_GOTPLT_LOW16: howto manager. (line 973)
11660 * BFD_RELOC_SH_GOTPLT_MEDHI16: howto manager. (line 926) 11905 * BFD_RELOC_SH_GOTPLT_MEDHI16: howto manager. (line 975)
11661 * BFD_RELOC_SH_GOTPLT_MEDLOW16: howto manager. (line 925) 11906 * BFD_RELOC_SH_GOTPLT_MEDLOW16: howto manager. (line 974)
11662 * BFD_RELOC_SH_IMM3: howto manager. (line 889) 11907 * BFD_RELOC_SH_IMM3: howto manager. (line 938)
11663 * BFD_RELOC_SH_IMM3U: howto manager. (line 890) 11908 * BFD_RELOC_SH_IMM3U: howto manager. (line 939)
11664 * BFD_RELOC_SH_IMM4: howto manager. (line 897) 11909 * BFD_RELOC_SH_IMM4: howto manager. (line 946)
11665 * BFD_RELOC_SH_IMM4BY2: howto manager. (line 898) 11910 * BFD_RELOC_SH_IMM4BY2: howto manager. (line 947)
11666 * BFD_RELOC_SH_IMM4BY4: howto manager. (line 899) 11911 * BFD_RELOC_SH_IMM4BY4: howto manager. (line 948)
11667 * BFD_RELOC_SH_IMM8: howto manager. (line 900) 11912 * BFD_RELOC_SH_IMM8: howto manager. (line 949)
11668 * BFD_RELOC_SH_IMM8BY2: howto manager. (line 901) 11913 * BFD_RELOC_SH_IMM8BY2: howto manager. (line 950)
11669 * BFD_RELOC_SH_IMM8BY4: howto manager. (line 902) 11914 * BFD_RELOC_SH_IMM8BY4: howto manager. (line 951)
11670 * BFD_RELOC_SH_IMM_HI16: howto manager. (line 966) 11915 * BFD_RELOC_SH_IMM_HI16: howto manager. (line 1015)
11671 * BFD_RELOC_SH_IMM_HI16_PCREL: howto manager. (line 967) 11916 * BFD_RELOC_SH_IMM_HI16_PCREL: howto manager. (line 1016)
11672 * BFD_RELOC_SH_IMM_LOW16: howto manager. (line 960) 11917 * BFD_RELOC_SH_IMM_LOW16: howto manager. (line 1009)
11673 * BFD_RELOC_SH_IMM_LOW16_PCREL: howto manager. (line 961) 11918 * BFD_RELOC_SH_IMM_LOW16_PCREL: howto manager. (line 1010)
11674 * BFD_RELOC_SH_IMM_MEDHI16: howto manager. (line 964) 11919 * BFD_RELOC_SH_IMM_MEDHI16: howto manager. (line 1013)
11675 * BFD_RELOC_SH_IMM_MEDHI16_PCREL: howto manager. (line 965) 11920 * BFD_RELOC_SH_IMM_MEDHI16_PCREL: howto manager. (line 1014)
11676 * BFD_RELOC_SH_IMM_MEDLOW16: howto manager. (line 962) 11921 * BFD_RELOC_SH_IMM_MEDLOW16: howto manager. (line 1011)
11677 * BFD_RELOC_SH_IMM_MEDLOW16_PCREL: howto manager. (line 963) 11922 * BFD_RELOC_SH_IMM_MEDLOW16_PCREL: howto manager. (line 1012)
11678 * BFD_RELOC_SH_IMMS10: howto manager. (line 954) 11923 * BFD_RELOC_SH_IMMS10: howto manager. (line 1003)
11679 * BFD_RELOC_SH_IMMS10BY2: howto manager. (line 955) 11924 * BFD_RELOC_SH_IMMS10BY2: howto manager. (line 1004)
11680 * BFD_RELOC_SH_IMMS10BY4: howto manager. (line 956) 11925 * BFD_RELOC_SH_IMMS10BY4: howto manager. (line 1005)
11681 * BFD_RELOC_SH_IMMS10BY8: howto manager. (line 957) 11926 * BFD_RELOC_SH_IMMS10BY8: howto manager. (line 1006)
11682 * BFD_RELOC_SH_IMMS16: howto manager. (line 958) 11927 * BFD_RELOC_SH_IMMS16: howto manager. (line 1007)
11683 * BFD_RELOC_SH_IMMS6: howto manager. (line 951) 11928 * BFD_RELOC_SH_IMMS6: howto manager. (line 1000)
11684 * BFD_RELOC_SH_IMMS6BY32: howto manager. (line 952) 11929 * BFD_RELOC_SH_IMMS6BY32: howto manager. (line 1001)
11685 * BFD_RELOC_SH_IMMU16: howto manager. (line 959) 11930 * BFD_RELOC_SH_IMMU16: howto manager. (line 1008)
11686 * BFD_RELOC_SH_IMMU5: howto manager. (line 950) 11931 * BFD_RELOC_SH_IMMU5: howto manager. (line 999)
11687 * BFD_RELOC_SH_IMMU6: howto manager. (line 953) 11932 * BFD_RELOC_SH_IMMU6: howto manager. (line 1002)
11688 * BFD_RELOC_SH_JMP_SLOT: howto manager. (line 917) 11933 * BFD_RELOC_SH_JMP_SLOT: howto manager. (line 966)
11689 * BFD_RELOC_SH_JMP_SLOT64: howto manager. (line 942) 11934 * BFD_RELOC_SH_JMP_SLOT64: howto manager. (line 991)
11690 * BFD_RELOC_SH_LABEL: howto manager. (line 912) 11935 * BFD_RELOC_SH_LABEL: howto manager. (line 961)
11691 * BFD_RELOC_SH_LOOP_END: howto manager. (line 914) 11936 * BFD_RELOC_SH_LOOP_END: howto manager. (line 963)
11692 * BFD_RELOC_SH_LOOP_START: howto manager. (line 913) 11937 * BFD_RELOC_SH_LOOP_START: howto manager. (line 962)
11693 * BFD_RELOC_SH_PCDISP12BY2: howto manager. (line 888) 11938 * BFD_RELOC_SH_PCDISP12BY2: howto manager. (line 937)
11694 * BFD_RELOC_SH_PCDISP8BY2: howto manager. (line 887) 11939 * BFD_RELOC_SH_PCDISP8BY2: howto manager. (line 936)
11695 * BFD_RELOC_SH_PCRELIMM8BY2: howto manager. (line 903) 11940 * BFD_RELOC_SH_PCRELIMM8BY2: howto manager. (line 952)
11696 * BFD_RELOC_SH_PCRELIMM8BY4: howto manager. (line 904) 11941 * BFD_RELOC_SH_PCRELIMM8BY4: howto manager. (line 953)
11697 * BFD_RELOC_SH_PLT_HI16: howto manager. (line 931) 11942 * BFD_RELOC_SH_PLT_HI16: howto manager. (line 980)
11698 * BFD_RELOC_SH_PLT_LOW16: howto manager. (line 928) 11943 * BFD_RELOC_SH_PLT_LOW16: howto manager. (line 977)
11699 * BFD_RELOC_SH_PLT_MEDHI16: howto manager. (line 930) 11944 * BFD_RELOC_SH_PLT_MEDHI16: howto manager. (line 979)
11700 * BFD_RELOC_SH_PLT_MEDLOW16: howto manager. (line 929) 11945 * BFD_RELOC_SH_PLT_MEDLOW16: howto manager. (line 978)
11701 * BFD_RELOC_SH_PT_16: howto manager. (line 968) 11946 * BFD_RELOC_SH_PT_16: howto manager. (line 1017)
11702 * BFD_RELOC_SH_RELATIVE: howto manager. (line 918) 11947 * BFD_RELOC_SH_RELATIVE: howto manager. (line 967)
11703 * BFD_RELOC_SH_RELATIVE64: howto manager. (line 943) 11948 * BFD_RELOC_SH_RELATIVE64: howto manager. (line 992)
11704 * BFD_RELOC_SH_SHMEDIA_CODE: howto manager. (line 949) 11949 * BFD_RELOC_SH_SHMEDIA_CODE: howto manager. (line 998)
11705 * BFD_RELOC_SH_SWITCH16: howto manager. (line 905) 11950 * BFD_RELOC_SH_SWITCH16: howto manager. (line 954)
11706 * BFD_RELOC_SH_SWITCH32: howto manager. (line 906) 11951 * BFD_RELOC_SH_SWITCH32: howto manager. (line 955)
11707 * BFD_RELOC_SH_TLS_DTPMOD32: howto manager. (line 974) 11952 * BFD_RELOC_SH_TLS_DTPMOD32: howto manager. (line 1023)
11708 * BFD_RELOC_SH_TLS_DTPOFF32: howto manager. (line 975) 11953 * BFD_RELOC_SH_TLS_DTPOFF32: howto manager. (line 1024)
11709 * BFD_RELOC_SH_TLS_GD_32: howto manager. (line 969) 11954 * BFD_RELOC_SH_TLS_GD_32: howto manager. (line 1018)
11710 * BFD_RELOC_SH_TLS_IE_32: howto manager. (line 972) 11955 * BFD_RELOC_SH_TLS_IE_32: howto manager. (line 1021)
11711 * BFD_RELOC_SH_TLS_LD_32: howto manager. (line 970) 11956 * BFD_RELOC_SH_TLS_LD_32: howto manager. (line 1019)
11712 * BFD_RELOC_SH_TLS_LDO_32: howto manager. (line 971) 11957 * BFD_RELOC_SH_TLS_LDO_32: howto manager. (line 1020)
11713 * BFD_RELOC_SH_TLS_LE_32: howto manager. (line 973) 11958 * BFD_RELOC_SH_TLS_LE_32: howto manager. (line 1022)
11714 * BFD_RELOC_SH_TLS_TPOFF32: howto manager. (line 976) 11959 * BFD_RELOC_SH_TLS_TPOFF32: howto manager. (line 1025)
11715 * BFD_RELOC_SH_USES: howto manager. (line 907) 11960 * BFD_RELOC_SH_USES: howto manager. (line 956)
11716 * BFD_RELOC_SPARC13: howto manager. (line 134) 11961 * BFD_RELOC_SPARC13: howto manager. (line 134)
11717 * BFD_RELOC_SPARC22: howto manager. (line 133) 11962 * BFD_RELOC_SPARC22: howto manager. (line 133)
11718 * BFD_RELOC_SPARC_10: howto manager. (line 163) 11963 * BFD_RELOC_SPARC_10: howto manager. (line 163)
11719 * BFD_RELOC_SPARC_11: howto manager. (line 164) 11964 * BFD_RELOC_SPARC_11: howto manager. (line 164)
11720 * BFD_RELOC_SPARC_5: howto manager. (line 176) 11965 * BFD_RELOC_SPARC_5: howto manager. (line 176)
11721 * BFD_RELOC_SPARC_6: howto manager. (line 175) 11966 * BFD_RELOC_SPARC_6: howto manager. (line 175)
11722 * BFD_RELOC_SPARC_64: howto manager. (line 162) 11967 * BFD_RELOC_SPARC_64: howto manager. (line 162)
11723 * BFD_RELOC_SPARC_7: howto manager. (line 174) 11968 * BFD_RELOC_SPARC_7: howto manager. (line 174)
11724 * BFD_RELOC_SPARC_BASE13: howto manager. (line 158) 11969 * BFD_RELOC_SPARC_BASE13: howto manager. (line 158)
11725 * BFD_RELOC_SPARC_BASE22: howto manager. (line 159) 11970 * BFD_RELOC_SPARC_BASE22: howto manager. (line 159)
11726 * BFD_RELOC_SPARC_COPY: howto manager. (line 141) 11971 * BFD_RELOC_SPARC_COPY: howto manager. (line 141)
11727 * BFD_RELOC_SPARC_DISP64: howto manager. (line 177) 11972 * BFD_RELOC_SPARC_DISP64: howto manager. (line 177)
11728 * BFD_RELOC_SPARC_GLOB_DAT: howto manager. (line 142) 11973 * BFD_RELOC_SPARC_GLOB_DAT: howto manager. (line 142)
11729 * BFD_RELOC_SPARC_GOT10: howto manager. (line 135) 11974 * BFD_RELOC_SPARC_GOT10: howto manager. (line 135)
11730 * BFD_RELOC_SPARC_GOT13: howto manager. (line 136) 11975 * BFD_RELOC_SPARC_GOT13: howto manager. (line 136)
11731 * BFD_RELOC_SPARC_GOT22: howto manager. (line 137) 11976 * BFD_RELOC_SPARC_GOT22: howto manager. (line 137)
11732 * BFD_RELOC_SPARC_GOTDATA_HIX22: howto manager. (line 148) 11977 * BFD_RELOC_SPARC_GOTDATA_HIX22: howto manager. (line 148)
11733 * BFD_RELOC_SPARC_GOTDATA_LOX10: howto manager. (line 149) 11978 * BFD_RELOC_SPARC_GOTDATA_LOX10: howto manager. (line 149)
11734 * BFD_RELOC_SPARC_GOTDATA_OP: howto manager. (line 152) 11979 * BFD_RELOC_SPARC_GOTDATA_OP: howto manager. (line 152)
11735 * BFD_RELOC_SPARC_GOTDATA_OP_HIX22: howto manager. (line 150) 11980 * BFD_RELOC_SPARC_GOTDATA_OP_HIX22: howto manager. (line 150)
11736 * BFD_RELOC_SPARC_GOTDATA_OP_LOX10: howto manager. (line 151) 11981 * BFD_RELOC_SPARC_GOTDATA_OP_LOX10: howto manager. (line 151)
11982 * BFD_RELOC_SPARC_H34: howto manager. (line 186)
11737 * BFD_RELOC_SPARC_H44: howto manager. (line 182) 11983 * BFD_RELOC_SPARC_H44: howto manager. (line 182)
11738 * BFD_RELOC_SPARC_HH22: howto manager. (line 166) 11984 * BFD_RELOC_SPARC_HH22: howto manager. (line 166)
11739 * BFD_RELOC_SPARC_HIX22: howto manager. (line 180) 11985 * BFD_RELOC_SPARC_HIX22: howto manager. (line 180)
11740 * BFD_RELOC_SPARC_HM10: howto manager. (line 167) 11986 * BFD_RELOC_SPARC_HM10: howto manager. (line 167)
11741 * BFD_RELOC_SPARC_IRELATIVE: howto manager. (line 154) 11987 * BFD_RELOC_SPARC_IRELATIVE: howto manager. (line 154)
11742 * BFD_RELOC_SPARC_JMP_IREL: howto manager. (line 153) 11988 * BFD_RELOC_SPARC_JMP_IREL: howto manager. (line 153)
11743 * BFD_RELOC_SPARC_JMP_SLOT: howto manager. (line 143) 11989 * BFD_RELOC_SPARC_JMP_SLOT: howto manager. (line 143)
11744 * BFD_RELOC_SPARC_L44: howto manager. (line 184) 11990 * BFD_RELOC_SPARC_L44: howto manager. (line 184)
11745 * BFD_RELOC_SPARC_LM22: howto manager. (line 168) 11991 * BFD_RELOC_SPARC_LM22: howto manager. (line 168)
11746 * BFD_RELOC_SPARC_LOX10: howto manager. (line 181) 11992 * BFD_RELOC_SPARC_LOX10: howto manager. (line 181)
11747 * BFD_RELOC_SPARC_M44: howto manager. (line 183) 11993 * BFD_RELOC_SPARC_M44: howto manager. (line 183)
11748 * BFD_RELOC_SPARC_OLO10: howto manager. (line 165) 11994 * BFD_RELOC_SPARC_OLO10: howto manager. (line 165)
11749 * BFD_RELOC_SPARC_PC10: howto manager. (line 138) 11995 * BFD_RELOC_SPARC_PC10: howto manager. (line 138)
11750 * BFD_RELOC_SPARC_PC22: howto manager. (line 139) 11996 * BFD_RELOC_SPARC_PC22: howto manager. (line 139)
11751 * BFD_RELOC_SPARC_PC_HH22: howto manager. (line 169) 11997 * BFD_RELOC_SPARC_PC_HH22: howto manager. (line 169)
11752 * BFD_RELOC_SPARC_PC_HM10: howto manager. (line 170) 11998 * BFD_RELOC_SPARC_PC_HM10: howto manager. (line 170)
11753 * BFD_RELOC_SPARC_PC_LM22: howto manager. (line 171) 11999 * BFD_RELOC_SPARC_PC_LM22: howto manager. (line 171)
11754 * BFD_RELOC_SPARC_PLT32: howto manager. (line 178) 12000 * BFD_RELOC_SPARC_PLT32: howto manager. (line 178)
11755 * BFD_RELOC_SPARC_PLT64: howto manager. (line 179) 12001 * BFD_RELOC_SPARC_PLT64: howto manager. (line 179)
11756 * BFD_RELOC_SPARC_REGISTER: howto manager. (line 185) 12002 * BFD_RELOC_SPARC_REGISTER: howto manager. (line 185)
11757 * BFD_RELOC_SPARC_RELATIVE: howto manager. (line 144) 12003 * BFD_RELOC_SPARC_RELATIVE: howto manager. (line 144)
11758 * BFD_RELOC_SPARC_REV32: howto manager. (line 188) 12004 * BFD_RELOC_SPARC_REV32: howto manager. (line 192)
11759 * BFD_RELOC_SPARC_TLS_DTPMOD32: howto manager. (line 209) 12005 * BFD_RELOC_SPARC_SIZE32: howto manager. (line 187)
11760 * BFD_RELOC_SPARC_TLS_DTPMOD64: howto manager. (line 210) 12006 * BFD_RELOC_SPARC_SIZE64: howto manager. (line 188)
11761 * BFD_RELOC_SPARC_TLS_DTPOFF32: howto manager. (line 211) 12007 * BFD_RELOC_SPARC_TLS_DTPMOD32: howto manager. (line 213)
11762 * BFD_RELOC_SPARC_TLS_DTPOFF64: howto manager. (line 212) 12008 * BFD_RELOC_SPARC_TLS_DTPMOD64: howto manager. (line 214)
11763 * BFD_RELOC_SPARC_TLS_GD_ADD: howto manager. (line 193) 12009 * BFD_RELOC_SPARC_TLS_DTPOFF32: howto manager. (line 215)
11764 * BFD_RELOC_SPARC_TLS_GD_CALL: howto manager. (line 194) 12010 * BFD_RELOC_SPARC_TLS_DTPOFF64: howto manager. (line 216)
11765 * BFD_RELOC_SPARC_TLS_GD_HI22: howto manager. (line 191) 12011 * BFD_RELOC_SPARC_TLS_GD_ADD: howto manager. (line 197)
11766 * BFD_RELOC_SPARC_TLS_GD_LO10: howto manager. (line 192) 12012 * BFD_RELOC_SPARC_TLS_GD_CALL: howto manager. (line 198)
11767 * BFD_RELOC_SPARC_TLS_IE_ADD: howto manager. (line 206) 12013 * BFD_RELOC_SPARC_TLS_GD_HI22: howto manager. (line 195)
11768 * BFD_RELOC_SPARC_TLS_IE_HI22: howto manager. (line 202) 12014 * BFD_RELOC_SPARC_TLS_GD_LO10: howto manager. (line 196)
11769 * BFD_RELOC_SPARC_TLS_IE_LD: howto manager. (line 204) 12015 * BFD_RELOC_SPARC_TLS_IE_ADD: howto manager. (line 210)
11770 * BFD_RELOC_SPARC_TLS_IE_LDX: howto manager. (line 205) 12016 * BFD_RELOC_SPARC_TLS_IE_HI22: howto manager. (line 206)
11771 * BFD_RELOC_SPARC_TLS_IE_LO10: howto manager. (line 203) 12017 * BFD_RELOC_SPARC_TLS_IE_LD: howto manager. (line 208)
11772 * BFD_RELOC_SPARC_TLS_LDM_ADD: howto manager. (line 197) 12018 * BFD_RELOC_SPARC_TLS_IE_LDX: howto manager. (line 209)
11773 * BFD_RELOC_SPARC_TLS_LDM_CALL: howto manager. (line 198) 12019 * BFD_RELOC_SPARC_TLS_IE_LO10: howto manager. (line 207)
11774 * BFD_RELOC_SPARC_TLS_LDM_HI22: howto manager. (line 195) 12020 * BFD_RELOC_SPARC_TLS_LDM_ADD: howto manager. (line 201)
11775 * BFD_RELOC_SPARC_TLS_LDM_LO10: howto manager. (line 196) 12021 * BFD_RELOC_SPARC_TLS_LDM_CALL: howto manager. (line 202)
11776 * BFD_RELOC_SPARC_TLS_LDO_ADD: howto manager. (line 201) 12022 * BFD_RELOC_SPARC_TLS_LDM_HI22: howto manager. (line 199)
11777 * BFD_RELOC_SPARC_TLS_LDO_HIX22: howto manager. (line 199) 12023 * BFD_RELOC_SPARC_TLS_LDM_LO10: howto manager. (line 200)
11778 * BFD_RELOC_SPARC_TLS_LDO_LOX10: howto manager. (line 200) 12024 * BFD_RELOC_SPARC_TLS_LDO_ADD: howto manager. (line 205)
11779 * BFD_RELOC_SPARC_TLS_LE_HIX22: howto manager. (line 207) 12025 * BFD_RELOC_SPARC_TLS_LDO_HIX22: howto manager. (line 203)
11780 * BFD_RELOC_SPARC_TLS_LE_LOX10: howto manager. (line 208) 12026 * BFD_RELOC_SPARC_TLS_LDO_LOX10: howto manager. (line 204)
11781 * BFD_RELOC_SPARC_TLS_TPOFF32: howto manager. (line 213) 12027 * BFD_RELOC_SPARC_TLS_LE_HIX22: howto manager. (line 211)
11782 * BFD_RELOC_SPARC_TLS_TPOFF64: howto manager. (line 214) 12028 * BFD_RELOC_SPARC_TLS_LE_LOX10: howto manager. (line 212)
12029 * BFD_RELOC_SPARC_TLS_TPOFF32: howto manager. (line 217)
12030 * BFD_RELOC_SPARC_TLS_TPOFF64: howto manager. (line 218)
11783 * BFD_RELOC_SPARC_UA16: howto manager. (line 145) 12031 * BFD_RELOC_SPARC_UA16: howto manager. (line 145)
11784 * BFD_RELOC_SPARC_UA32: howto manager. (line 146) 12032 * BFD_RELOC_SPARC_UA32: howto manager. (line 146)
11785 * BFD_RELOC_SPARC_UA64: howto manager. (line 147) 12033 * BFD_RELOC_SPARC_UA64: howto manager. (line 147)
12034 * BFD_RELOC_SPARC_WDISP10: howto manager. (line 189)
11786 * BFD_RELOC_SPARC_WDISP16: howto manager. (line 172) 12035 * BFD_RELOC_SPARC_WDISP16: howto manager. (line 172)
11787 * BFD_RELOC_SPARC_WDISP19: howto manager. (line 173) 12036 * BFD_RELOC_SPARC_WDISP19: howto manager. (line 173)
11788 * BFD_RELOC_SPARC_WDISP22: howto manager. (line 132) 12037 * BFD_RELOC_SPARC_WDISP22: howto manager. (line 132)
11789 * BFD_RELOC_SPARC_WPLT30: howto manager. (line 140) 12038 * BFD_RELOC_SPARC_WPLT30: howto manager. (line 140)
11790 * BFD_RELOC_SPU_ADD_PIC: howto manager. (line 231) 12039 * BFD_RELOC_SPU_ADD_PIC: howto manager. (line 235)
11791 * BFD_RELOC_SPU_HI16: howto manager. (line 228) 12040 * BFD_RELOC_SPU_HI16: howto manager. (line 232)
11792 * BFD_RELOC_SPU_IMM10: howto manager. (line 219) 12041 * BFD_RELOC_SPU_IMM10: howto manager. (line 223)
11793 * BFD_RELOC_SPU_IMM10W: howto manager. (line 220) 12042 * BFD_RELOC_SPU_IMM10W: howto manager. (line 224)
11794 * BFD_RELOC_SPU_IMM16: howto manager. (line 221) 12043 * BFD_RELOC_SPU_IMM16: howto manager. (line 225)
11795 * BFD_RELOC_SPU_IMM16W: howto manager. (line 222) 12044 * BFD_RELOC_SPU_IMM16W: howto manager. (line 226)
11796 * BFD_RELOC_SPU_IMM18: howto manager. (line 223) 12045 * BFD_RELOC_SPU_IMM18: howto manager. (line 227)
11797 * BFD_RELOC_SPU_IMM7: howto manager. (line 217) 12046 * BFD_RELOC_SPU_IMM7: howto manager. (line 221)
11798 * BFD_RELOC_SPU_IMM8: howto manager. (line 218) 12047 * BFD_RELOC_SPU_IMM8: howto manager. (line 222)
11799 * BFD_RELOC_SPU_LO16: howto manager. (line 227) 12048 * BFD_RELOC_SPU_LO16: howto manager. (line 231)
11800 * BFD_RELOC_SPU_PCREL16: howto manager. (line 226) 12049 * BFD_RELOC_SPU_PCREL16: howto manager. (line 230)
11801 * BFD_RELOC_SPU_PCREL9a: howto manager. (line 224) 12050 * BFD_RELOC_SPU_PCREL9a: howto manager. (line 228)
11802 * BFD_RELOC_SPU_PCREL9b: howto manager. (line 225) 12051 * BFD_RELOC_SPU_PCREL9b: howto manager. (line 229)
11803 * BFD_RELOC_SPU_PPU32: howto manager. (line 229) 12052 * BFD_RELOC_SPU_PPU32: howto manager. (line 233)
11804 * BFD_RELOC_SPU_PPU64: howto manager. (line 230) 12053 * BFD_RELOC_SPU_PPU64: howto manager. (line 234)
11805 * BFD_RELOC_THUMB_PCREL_BLX: howto manager. (line 736) 12054 * BFD_RELOC_THUMB_PCREL_BLX: howto manager. (line 785)
11806 * BFD_RELOC_THUMB_PCREL_BRANCH12: howto manager. (line 750) 12055 * BFD_RELOC_THUMB_PCREL_BRANCH12: howto manager. (line 799)
11807 * BFD_RELOC_THUMB_PCREL_BRANCH20: howto manager. (line 751) 12056 * BFD_RELOC_THUMB_PCREL_BRANCH20: howto manager. (line 800)
11808 * BFD_RELOC_THUMB_PCREL_BRANCH23: howto manager. (line 752) 12057 * BFD_RELOC_THUMB_PCREL_BRANCH23: howto manager. (line 801)
11809 * BFD_RELOC_THUMB_PCREL_BRANCH25: howto manager. (line 753) 12058 * BFD_RELOC_THUMB_PCREL_BRANCH25: howto manager. (line 802)
11810 * BFD_RELOC_THUMB_PCREL_BRANCH7: howto manager. (line 748) 12059 * BFD_RELOC_THUMB_PCREL_BRANCH7: howto manager. (line 797)
11811 * BFD_RELOC_THUMB_PCREL_BRANCH9: howto manager. (line 749) 12060 * BFD_RELOC_THUMB_PCREL_BRANCH9: howto manager. (line 798)
11812 * BFD_RELOC_TIC30_LDP: howto manager. (line 1376) 12061 * BFD_RELOC_TIC30_LDP: howto manager. (line 1417)
11813 * BFD_RELOC_TIC54X_16_OF_23: howto manager. (line 1394) 12062 * BFD_RELOC_TIC54X_16_OF_23: howto manager. (line 1435)
11814 * BFD_RELOC_TIC54X_23: howto manager. (line 1391) 12063 * BFD_RELOC_TIC54X_23: howto manager. (line 1432)
11815 * BFD_RELOC_TIC54X_MS7_OF_23: howto manager. (line 1399) 12064 * BFD_RELOC_TIC54X_MS7_OF_23: howto manager. (line 1440)
11816 * BFD_RELOC_TIC54X_PARTLS7: howto manager. (line 1381) 12065 * BFD_RELOC_TIC54X_PARTLS7: howto manager. (line 1422)
11817 * BFD_RELOC_TIC54X_PARTMS9: howto manager. (line 1386) 12066 * BFD_RELOC_TIC54X_PARTMS9: howto manager. (line 1427)
11818 * BFD_RELOC_TILEGX_BROFF_X1: howto manager. (line 2552) 12067 * BFD_RELOC_TILEGX_BROFF_X1: howto manager. (line 2687)
11819 * BFD_RELOC_TILEGX_COPY: howto manager. (line 2548) 12068 * BFD_RELOC_TILEGX_COPY: howto manager. (line 2683)
11820 * BFD_RELOC_TILEGX_DEST_IMM8_X1: howto manager. (line 2559) 12069 * BFD_RELOC_TILEGX_DEST_IMM8_X1: howto manager. (line 2694)
11821 * BFD_RELOC_TILEGX_GLOB_DAT: howto manager. (line 2549) 12070 * BFD_RELOC_TILEGX_GLOB_DAT: howto manager. (line 2684)
11822 * BFD_RELOC_TILEGX_HW0: howto manager. (line 2541) 12071 * BFD_RELOC_TILEGX_HW0: howto manager. (line 2676)
11823 * BFD_RELOC_TILEGX_HW0_LAST: howto manager. (line 2545) 12072 * BFD_RELOC_TILEGX_HW0_LAST: howto manager. (line 2680)
11824 * BFD_RELOC_TILEGX_HW1: howto manager. (line 2542) 12073 * BFD_RELOC_TILEGX_HW1: howto manager. (line 2677)
11825 * BFD_RELOC_TILEGX_HW1_LAST: howto manager. (line 2546) 12074 * BFD_RELOC_TILEGX_HW1_LAST: howto manager. (line 2681)
11826 * BFD_RELOC_TILEGX_HW2: howto manager. (line 2543) 12075 * BFD_RELOC_TILEGX_HW2: howto manager. (line 2678)
11827 * BFD_RELOC_TILEGX_HW2_LAST: howto manager. (line 2547) 12076 * BFD_RELOC_TILEGX_HW2_LAST: howto manager. (line 2682)
11828 * BFD_RELOC_TILEGX_HW3: howto manager. (line 2544) 12077 * BFD_RELOC_TILEGX_HW3: howto manager. (line 2679)
11829 * BFD_RELOC_TILEGX_IMM16_X0_HW0: howto manager. (line 2568) 12078 * BFD_RELOC_TILEGX_IMM16_X0_HW0: howto manager. (line 2703)
11830 * BFD_RELOC_TILEGX_IMM16_X0_HW0_GOT: howto manager. (line 2596) 12079 * BFD_RELOC_TILEGX_IMM16_X0_HW0_GOT: howto manager. (line 2731)
11831 * BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST: howto manager. (line 2576) 12080 * BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST: howto manager. (line 2711)
11832 * BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_GOT: howto manager. (line 2604) 12081 * BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_GOT: howto manager. (line 2733)
11833 * BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_PCREL: howto manager. (line 2590) 12082 * BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_PCREL: howto manager. (line 2725)
11834 * BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_GD: howto manager. (line 2618) 12083 * BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_GD: howto manager. (line 2745)
11835 * BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_IE: howto manager. (line 2632) 12084 * BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_IE: howto manager. (line 2751)
11836 * BFD_RELOC_TILEGX_IMM16_X0_HW0_PCREL: howto manager. (line 2582) 12085 * BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_LE: howto manager. (line 2741)
11837 * BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_GD: howto manager. (line 2610) 12086 * BFD_RELOC_TILEGX_IMM16_X0_HW0_PCREL: howto manager. (line 2717)
11838 * BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_IE: howto manager. (line 2624) 12087 * BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_GD: howto manager. (line 2737)
11839 * BFD_RELOC_TILEGX_IMM16_X0_HW1: howto manager. (line 2570) 12088 * BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_IE: howto manager. (line 2749)
11840 * BFD_RELOC_TILEGX_IMM16_X0_HW1_GOT: howto manager. (line 2598) 12089 * BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_LE: howto manager. (line 2739)
11841 * BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST: howto manager. (line 2578) 12090 * BFD_RELOC_TILEGX_IMM16_X0_HW1: howto manager. (line 2705)
11842 * BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_GOT: howto manager. (line 2606) 12091 * BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST: howto manager. (line 2713)
11843 * BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_PCREL: howto manager. (line 2592) 12092 * BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_GOT: howto manager. (line 2735)
11844 * BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_GD: howto manager. (line 2620) 12093 * BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_PCREL: howto manager. (line 2727)
11845 * BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_IE: howto manager. (line 2634) 12094 * BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_GD: howto manager. (line 2747)
11846 * BFD_RELOC_TILEGX_IMM16_X0_HW1_PCREL: howto manager. (line 2584) 12095 * BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_IE: howto manager. (line 2753)
11847 * BFD_RELOC_TILEGX_IMM16_X0_HW1_TLS_GD: howto manager. (line 2612) 12096 * BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_LE: howto manager. (line 2743)
11848 * BFD_RELOC_TILEGX_IMM16_X0_HW1_TLS_IE: howto manager. (line 2626) 12097 * BFD_RELOC_TILEGX_IMM16_X0_HW1_PCREL: howto manager. (line 2719)
11849 * BFD_RELOC_TILEGX_IMM16_X0_HW2: howto manager. (line 2572) 12098 * BFD_RELOC_TILEGX_IMM16_X0_HW2: howto manager. (line 2707)
11850 * BFD_RELOC_TILEGX_IMM16_X0_HW2_GOT: howto manager. (line 2600) 12099 * BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST: howto manager. (line 2715)
11851 * BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST: howto manager. (line 2580) 12100 * BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST_PCREL: howto manager. (line 2729)
11852 * BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST_GOT: howto manager. (line 2608) 12101 * BFD_RELOC_TILEGX_IMM16_X0_HW2_PCREL: howto manager. (line 2721)
11853 * BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST_PCREL: howto manager. (line 2594) 12102 * BFD_RELOC_TILEGX_IMM16_X0_HW3: howto manager. (line 2709)
11854 * BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST_TLS_GD: howto manager. (line 2622) 12103 * BFD_RELOC_TILEGX_IMM16_X0_HW3_PCREL: howto manager. (line 2723)
11855 * BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST_TLS_IE: howto manager. (line 2636) 12104 * BFD_RELOC_TILEGX_IMM16_X1_HW0: howto manager. (line 2704)
11856 * BFD_RELOC_TILEGX_IMM16_X0_HW2_PCREL: howto manager. (line 2586) 12105 * BFD_RELOC_TILEGX_IMM16_X1_HW0_GOT: howto manager. (line 2732)
11857 * BFD_RELOC_TILEGX_IMM16_X0_HW2_TLS_GD: howto manager. (line 2614) 12106 * BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST: howto manager. (line 2712)
11858 * BFD_RELOC_TILEGX_IMM16_X0_HW2_TLS_IE: howto manager. (line 2628) 12107 * BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_GOT: howto manager. (line 2734)
11859 * BFD_RELOC_TILEGX_IMM16_X0_HW3: howto manager. (line 2574) 12108 * BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_PCREL: howto manager. (line 2726)
11860 * BFD_RELOC_TILEGX_IMM16_X0_HW3_GOT: howto manager. (line 2602) 12109 * BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_GD: howto manager. (line 2746)
11861 * BFD_RELOC_TILEGX_IMM16_X0_HW3_PCREL: howto manager. (line 2588) 12110 * BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_IE: howto manager. (line 2752)
11862 * BFD_RELOC_TILEGX_IMM16_X0_HW3_TLS_GD: howto manager. (line 2616) 12111 * BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_LE: howto manager. (line 2742)
11863 * BFD_RELOC_TILEGX_IMM16_X0_HW3_TLS_IE: howto manager. (line 2630) 12112 * BFD_RELOC_TILEGX_IMM16_X1_HW0_PCREL: howto manager. (line 2718)
11864 * BFD_RELOC_TILEGX_IMM16_X1_HW0: howto manager. (line 2569) 12113 * BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_GD: howto manager. (line 2738)
11865 * BFD_RELOC_TILEGX_IMM16_X1_HW0_GOT: howto manager. (line 2597) 12114 * BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_IE: howto manager. (line 2750)
11866 * BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST: howto manager. (line 2577) 12115 * BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_LE: howto manager. (line 2740)
11867 * BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_GOT: howto manager. (line 2605) 12116 * BFD_RELOC_TILEGX_IMM16_X1_HW1: howto manager. (line 2706)
11868 * BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_PCREL: howto manager. (line 2591) 12117 * BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST: howto manager. (line 2714)
11869 * BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_GD: howto manager. (line 2619) 12118 * BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_GOT: howto manager. (line 2736)
11870 * BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_IE: howto manager. (line 2633) 12119 * BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_PCREL: howto manager. (line 2728)
11871 * BFD_RELOC_TILEGX_IMM16_X1_HW0_PCREL: howto manager. (line 2583) 12120 * BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_GD: howto manager. (line 2748)
11872 * BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_GD: howto manager. (line 2611) 12121 * BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_IE: howto manager. (line 2754)
11873 * BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_IE: howto manager. (line 2625) 12122 * BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_LE: howto manager. (line 2744)
11874 * BFD_RELOC_TILEGX_IMM16_X1_HW1: howto manager. (line 2571) 12123 * BFD_RELOC_TILEGX_IMM16_X1_HW1_PCREL: howto manager. (line 2720)
11875 * BFD_RELOC_TILEGX_IMM16_X1_HW1_GOT: howto manager. (line 2599) 12124 * BFD_RELOC_TILEGX_IMM16_X1_HW2: howto manager. (line 2708)
11876 * BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST: howto manager. (line 2579) 12125 * BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST: howto manager. (line 2716)
11877 * BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_GOT: howto manager. (line 2607) 12126 * BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST_PCREL: howto manager. (line 2730)
11878 * BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_PCREL: howto manager. (line 2593) 12127 * BFD_RELOC_TILEGX_IMM16_X1_HW2_PCREL: howto manager. (line 2722)
11879 * BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_GD: howto manager. (line 2621) 12128 * BFD_RELOC_TILEGX_IMM16_X1_HW3: howto manager. (line 2710)
11880 * BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_IE: howto manager. (line 2635) 12129 * BFD_RELOC_TILEGX_IMM16_X1_HW3_PCREL: howto manager. (line 2724)
11881 * BFD_RELOC_TILEGX_IMM16_X1_HW1_PCREL: howto manager. (line 2585) 12130 * BFD_RELOC_TILEGX_IMM8_X0: howto manager. (line 2690)
11882 * BFD_RELOC_TILEGX_IMM16_X1_HW1_TLS_GD: howto manager. (line 2613) 12131 * BFD_RELOC_TILEGX_IMM8_X0_TLS_ADD: howto manager. (line 2767)
11883 * BFD_RELOC_TILEGX_IMM16_X1_HW1_TLS_IE: howto manager. (line 2627) 12132 * BFD_RELOC_TILEGX_IMM8_X0_TLS_GD_ADD: howto manager. (line 2762)
11884 * BFD_RELOC_TILEGX_IMM16_X1_HW2: howto manager. (line 2573) 12133 * BFD_RELOC_TILEGX_IMM8_X1: howto manager. (line 2692)
11885 * BFD_RELOC_TILEGX_IMM16_X1_HW2_GOT: howto manager. (line 2601) 12134 * BFD_RELOC_TILEGX_IMM8_X1_TLS_ADD: howto manager. (line 2768)
11886 * BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST: howto manager. (line 2581) 12135 * BFD_RELOC_TILEGX_IMM8_X1_TLS_GD_ADD: howto manager. (line 2763)
11887 * BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST_GOT: howto manager. (line 2609) 12136 * BFD_RELOC_TILEGX_IMM8_Y0: howto manager. (line 2691)
11888 * BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST_PCREL: howto manager. (line 2595) 12137 * BFD_RELOC_TILEGX_IMM8_Y0_TLS_ADD: howto manager. (line 2769)
11889 * BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST_TLS_GD: howto manager. (line 2623) 12138 * BFD_RELOC_TILEGX_IMM8_Y0_TLS_GD_ADD: howto manager. (line 2764)
11890 * BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST_TLS_IE: howto manager. (line 2637) 12139 * BFD_RELOC_TILEGX_IMM8_Y1: howto manager. (line 2693)
11891 * BFD_RELOC_TILEGX_IMM16_X1_HW2_PCREL: howto manager. (line 2587) 12140 * BFD_RELOC_TILEGX_IMM8_Y1_TLS_ADD: howto manager. (line 2770)
11892 * BFD_RELOC_TILEGX_IMM16_X1_HW2_TLS_GD: howto manager. (line 2615) 12141 * BFD_RELOC_TILEGX_IMM8_Y1_TLS_GD_ADD: howto manager. (line 2765)
11893 * BFD_RELOC_TILEGX_IMM16_X1_HW2_TLS_IE: howto manager. (line 2629) 12142 * BFD_RELOC_TILEGX_JMP_SLOT: howto manager. (line 2685)
11894 * BFD_RELOC_TILEGX_IMM16_X1_HW3: howto manager. (line 2575) 12143 * BFD_RELOC_TILEGX_JUMPOFF_X1: howto manager. (line 2688)
11895 * BFD_RELOC_TILEGX_IMM16_X1_HW3_GOT: howto manager. (line 2603) 12144 * BFD_RELOC_TILEGX_JUMPOFF_X1_PLT: howto manager. (line 2689)
11896 * BFD_RELOC_TILEGX_IMM16_X1_HW3_PCREL: howto manager. (line 2589) 12145 * BFD_RELOC_TILEGX_MF_IMM14_X1: howto manager. (line 2696)
11897 * BFD_RELOC_TILEGX_IMM16_X1_HW3_TLS_GD: howto manager. (line 2617) 12146 * BFD_RELOC_TILEGX_MMEND_X0: howto manager. (line 2698)
11898 * BFD_RELOC_TILEGX_IMM16_X1_HW3_TLS_IE: howto manager. (line 2631) 12147 * BFD_RELOC_TILEGX_MMSTART_X0: howto manager. (line 2697)
11899 * BFD_RELOC_TILEGX_IMM8_X0: howto manager. (line 2555) 12148 * BFD_RELOC_TILEGX_MT_IMM14_X1: howto manager. (line 2695)
11900 * BFD_RELOC_TILEGX_IMM8_X1: howto manager. (line 2557) 12149 * BFD_RELOC_TILEGX_RELATIVE: howto manager. (line 2686)
11901 * BFD_RELOC_TILEGX_IMM8_Y0: howto manager. (line 2556) 12150 * BFD_RELOC_TILEGX_SHAMT_X0: howto manager. (line 2699)
11902 * BFD_RELOC_TILEGX_IMM8_Y1: howto manager. (line 2558) 12151 * BFD_RELOC_TILEGX_SHAMT_X1: howto manager. (line 2700)
11903 * BFD_RELOC_TILEGX_JMP_SLOT: howto manager. (line 2550) 12152 * BFD_RELOC_TILEGX_SHAMT_Y0: howto manager. (line 2701)
11904 * BFD_RELOC_TILEGX_JUMPOFF_X1: howto manager. (line 2553) 12153 * BFD_RELOC_TILEGX_SHAMT_Y1: howto manager. (line 2702)
11905 * BFD_RELOC_TILEGX_JUMPOFF_X1_PLT: howto manager. (line 2554) 12154 * BFD_RELOC_TILEGX_TLS_DTPMOD32: howto manager. (line 2758)
11906 * BFD_RELOC_TILEGX_MF_IMM14_X1: howto manager. (line 2561) 12155 * BFD_RELOC_TILEGX_TLS_DTPMOD64: howto manager. (line 2755)
11907 * BFD_RELOC_TILEGX_MMEND_X0: howto manager. (line 2563) 12156 * BFD_RELOC_TILEGX_TLS_DTPOFF32: howto manager. (line 2759)
11908 * BFD_RELOC_TILEGX_MMSTART_X0: howto manager. (line 2562) 12157 * BFD_RELOC_TILEGX_TLS_DTPOFF64: howto manager. (line 2756)
11909 * BFD_RELOC_TILEGX_MT_IMM14_X1: howto manager. (line 2560) 12158 * BFD_RELOC_TILEGX_TLS_GD_CALL: howto manager. (line 2761)
11910 * BFD_RELOC_TILEGX_RELATIVE: howto manager. (line 2551) 12159 * BFD_RELOC_TILEGX_TLS_IE_LOAD: howto manager. (line 2766)
11911 * BFD_RELOC_TILEGX_SHAMT_X0: howto manager. (line 2564) 12160 * BFD_RELOC_TILEGX_TLS_TPOFF32: howto manager. (line 2760)
11912 * BFD_RELOC_TILEGX_SHAMT_X1: howto manager. (line 2565) 12161 * BFD_RELOC_TILEGX_TLS_TPOFF64: howto manager. (line 2757)
11913 * BFD_RELOC_TILEGX_SHAMT_Y0: howto manager. (line 2566) 12162 * BFD_RELOC_TILEPRO_BROFF_X1: howto manager. (line 2599)
11914 * BFD_RELOC_TILEGX_SHAMT_Y1: howto manager. (line 2567) 12163 * BFD_RELOC_TILEPRO_COPY: howto manager. (line 2595)
11915 * BFD_RELOC_TILEGX_TLS_DTPMOD32: howto manager. (line 2641) 12164 * BFD_RELOC_TILEPRO_DEST_IMM8_X1: howto manager. (line 2606)
11916 * BFD_RELOC_TILEGX_TLS_DTPMOD64: howto manager. (line 2638) 12165 * BFD_RELOC_TILEPRO_GLOB_DAT: howto manager. (line 2596)
11917 * BFD_RELOC_TILEGX_TLS_DTPOFF32: howto manager. (line 2642) 12166 * BFD_RELOC_TILEPRO_IMM16_X0: howto manager. (line 2609)
11918 * BFD_RELOC_TILEGX_TLS_DTPOFF64: howto manager. (line 2639) 12167 * BFD_RELOC_TILEPRO_IMM16_X0_GOT: howto manager. (line 2625)
11919 * BFD_RELOC_TILEGX_TLS_TPOFF32: howto manager. (line 2643) 12168 * BFD_RELOC_TILEPRO_IMM16_X0_GOT_HA: howto manager. (line 2631)
11920 * BFD_RELOC_TILEGX_TLS_TPOFF64: howto manager. (line 2640) 12169 * BFD_RELOC_TILEPRO_IMM16_X0_GOT_HI: howto manager. (line 2629)
11921 * BFD_RELOC_TILEPRO_BROFF_X1: howto manager. (line 2478) 12170 * BFD_RELOC_TILEPRO_IMM16_X0_GOT_LO: howto manager. (line 2627)
11922 * BFD_RELOC_TILEPRO_COPY: howto manager. (line 2474) 12171 * BFD_RELOC_TILEPRO_IMM16_X0_HA: howto manager. (line 2615)
11923 * BFD_RELOC_TILEPRO_DEST_IMM8_X1: howto manager. (line 2485) 12172 * BFD_RELOC_TILEPRO_IMM16_X0_HA_PCREL: howto manager. (line 2623)
11924 * BFD_RELOC_TILEPRO_GLOB_DAT: howto manager. (line 2475) 12173 * BFD_RELOC_TILEPRO_IMM16_X0_HI: howto manager. (line 2613)
11925 * BFD_RELOC_TILEPRO_IMM16_X0: howto manager. (line 2488) 12174 * BFD_RELOC_TILEPRO_IMM16_X0_HI_PCREL: howto manager. (line 2621)
11926 * BFD_RELOC_TILEPRO_IMM16_X0_GOT: howto manager. (line 2504) 12175 * BFD_RELOC_TILEPRO_IMM16_X0_LO: howto manager. (line 2611)
11927 * BFD_RELOC_TILEPRO_IMM16_X0_GOT_HA: howto manager. (line 2510) 12176 * BFD_RELOC_TILEPRO_IMM16_X0_LO_PCREL: howto manager. (line 2619)
11928 * BFD_RELOC_TILEPRO_IMM16_X0_GOT_HI: howto manager. (line 2508) 12177 * BFD_RELOC_TILEPRO_IMM16_X0_PCREL: howto manager. (line 2617)
11929 * BFD_RELOC_TILEPRO_IMM16_X0_GOT_LO: howto manager. (line 2506) 12178 * BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD: howto manager. (line 2647)
11930 * BFD_RELOC_TILEPRO_IMM16_X0_HA: howto manager. (line 2494) 12179 * BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_HA: howto manager. (line 2653)
11931 * BFD_RELOC_TILEPRO_IMM16_X0_HA_PCREL: howto manager. (line 2502) 12180 * BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_HI: howto manager. (line 2651)
11932 * BFD_RELOC_TILEPRO_IMM16_X0_HI: howto manager. (line 2492) 12181 * BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_LO: howto manager. (line 2649)
11933 * BFD_RELOC_TILEPRO_IMM16_X0_HI_PCREL: howto manager. (line 2500) 12182 * BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE: howto manager. (line 2655)
11934 * BFD_RELOC_TILEPRO_IMM16_X0_LO: howto manager. (line 2490) 12183 * BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE_HA: howto manager. (line 2661)
11935 * BFD_RELOC_TILEPRO_IMM16_X0_LO_PCREL: howto manager. (line 2498) 12184 * BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE_HI: howto manager. (line 2659)
11936 * BFD_RELOC_TILEPRO_IMM16_X0_PCREL: howto manager. (line 2496) 12185 * BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE_LO: howto manager. (line 2657)
11937 * BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD: howto manager. (line 2520) 12186 * BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE: howto manager. (line 2666)
11938 * BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_HA: howto manager. (line 2526) 12187 * BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE_HA: howto manager. (line 2672)
11939 * BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_HI: howto manager. (line 2524) 12188 * BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE_HI: howto manager. (line 2670)
11940 * BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_LO: howto manager. (line 2522) 12189 * BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE_LO: howto manager. (line 2668)
11941 * BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE: howto manager. (line 2528) 12190 * BFD_RELOC_TILEPRO_IMM16_X1: howto manager. (line 2610)
11942 * BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE_HA: howto manager. (line 2534) 12191 * BFD_RELOC_TILEPRO_IMM16_X1_GOT: howto manager. (line 2626)
11943 * BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE_HI: howto manager. (line 2532) 12192 * BFD_RELOC_TILEPRO_IMM16_X1_GOT_HA: howto manager. (line 2632)
11944 * BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE_LO: howto manager. (line 2530) 12193 * BFD_RELOC_TILEPRO_IMM16_X1_GOT_HI: howto manager. (line 2630)
11945 * BFD_RELOC_TILEPRO_IMM16_X1: howto manager. (line 2489) 12194 * BFD_RELOC_TILEPRO_IMM16_X1_GOT_LO: howto manager. (line 2628)
11946 * BFD_RELOC_TILEPRO_IMM16_X1_GOT: howto manager. (line 2505) 12195 * BFD_RELOC_TILEPRO_IMM16_X1_HA: howto manager. (line 2616)
11947 * BFD_RELOC_TILEPRO_IMM16_X1_GOT_HA: howto manager. (line 2511) 12196 * BFD_RELOC_TILEPRO_IMM16_X1_HA_PCREL: howto manager. (line 2624)
11948 * BFD_RELOC_TILEPRO_IMM16_X1_GOT_HI: howto manager. (line 2509) 12197 * BFD_RELOC_TILEPRO_IMM16_X1_HI: howto manager. (line 2614)
11949 * BFD_RELOC_TILEPRO_IMM16_X1_GOT_LO: howto manager. (line 2507) 12198 * BFD_RELOC_TILEPRO_IMM16_X1_HI_PCREL: howto manager. (line 2622)
11950 * BFD_RELOC_TILEPRO_IMM16_X1_HA: howto manager. (line 2495) 12199 * BFD_RELOC_TILEPRO_IMM16_X1_LO: howto manager. (line 2612)
11951 * BFD_RELOC_TILEPRO_IMM16_X1_HA_PCREL: howto manager. (line 2503) 12200 * BFD_RELOC_TILEPRO_IMM16_X1_LO_PCREL: howto manager. (line 2620)
11952 * BFD_RELOC_TILEPRO_IMM16_X1_HI: howto manager. (line 2493) 12201 * BFD_RELOC_TILEPRO_IMM16_X1_PCREL: howto manager. (line 2618)
11953 * BFD_RELOC_TILEPRO_IMM16_X1_HI_PCREL: howto manager. (line 2501) 12202 * BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD: howto manager. (line 2648)
11954 * BFD_RELOC_TILEPRO_IMM16_X1_LO: howto manager. (line 2491) 12203 * BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD_HA: howto manager. (line 2654)
11955 * BFD_RELOC_TILEPRO_IMM16_X1_LO_PCREL: howto manager. (line 2499) 12204 * BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD_HI: howto manager. (line 2652)
11956 * BFD_RELOC_TILEPRO_IMM16_X1_PCREL: howto manager. (line 2497) 12205 * BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD_LO: howto manager. (line 2650)
11957 * BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD: howto manager. (line 2521) 12206 * BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE: howto manager. (line 2656)
11958 * BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD_HA: howto manager. (line 2527) 12207 * BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE_HA: howto manager. (line 2662)
11959 * BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD_HI: howto manager. (line 2525) 12208 * BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE_HI: howto manager. (line 2660)
11960 * BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD_LO: howto manager. (line 2523) 12209 * BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE_LO: howto manager. (line 2658)
11961 * BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE: howto manager. (line 2529) 12210 * BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE: howto manager. (line 2667)
11962 * BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE_HA: howto manager. (line 2535) 12211 * BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE_HA: howto manager. (line 2673)
11963 * BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE_HI: howto manager. (line 2533) 12212 * BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE_HI: howto manager. (line 2671)
11964 * BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE_LO: howto manager. (line 2531) 12213 * BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE_LO: howto manager. (line 2669)
11965 * BFD_RELOC_TILEPRO_IMM8_X0: howto manager. (line 2481) 12214 * BFD_RELOC_TILEPRO_IMM8_X0: howto manager. (line 2602)
11966 * BFD_RELOC_TILEPRO_IMM8_X1: howto manager. (line 2483) 12215 * BFD_RELOC_TILEPRO_IMM8_X0_TLS_GD_ADD: howto manager. (line 2642)
11967 * BFD_RELOC_TILEPRO_IMM8_Y0: howto manager. (line 2482) 12216 * BFD_RELOC_TILEPRO_IMM8_X1: howto manager. (line 2604)
11968 * BFD_RELOC_TILEPRO_IMM8_Y1: howto manager. (line 2484) 12217 * BFD_RELOC_TILEPRO_IMM8_X1_TLS_GD_ADD: howto manager. (line 2643)
11969 * BFD_RELOC_TILEPRO_JMP_SLOT: howto manager. (line 2476) 12218 * BFD_RELOC_TILEPRO_IMM8_Y0: howto manager. (line 2603)
11970 * BFD_RELOC_TILEPRO_JOFFLONG_X1: howto manager. (line 2479) 12219 * BFD_RELOC_TILEPRO_IMM8_Y0_TLS_GD_ADD: howto manager. (line 2644)
11971 * BFD_RELOC_TILEPRO_JOFFLONG_X1_PLT: howto manager. (line 2480) 12220 * BFD_RELOC_TILEPRO_IMM8_Y1: howto manager. (line 2605)
11972 * BFD_RELOC_TILEPRO_MF_IMM15_X1: howto manager. (line 2487) 12221 * BFD_RELOC_TILEPRO_IMM8_Y1_TLS_GD_ADD: howto manager. (line 2645)
11973 * BFD_RELOC_TILEPRO_MMEND_X0: howto manager. (line 2513) 12222 * BFD_RELOC_TILEPRO_JMP_SLOT: howto manager. (line 2597)
11974 * BFD_RELOC_TILEPRO_MMEND_X1: howto manager. (line 2515) 12223 * BFD_RELOC_TILEPRO_JOFFLONG_X1: howto manager. (line 2600)
11975 * BFD_RELOC_TILEPRO_MMSTART_X0: howto manager. (line 2512) 12224 * BFD_RELOC_TILEPRO_JOFFLONG_X1_PLT: howto manager. (line 2601)
11976 * BFD_RELOC_TILEPRO_MMSTART_X1: howto manager. (line 2514) 12225 * BFD_RELOC_TILEPRO_MF_IMM15_X1: howto manager. (line 2608)
11977 * BFD_RELOC_TILEPRO_MT_IMM15_X1: howto manager. (line 2486) 12226 * BFD_RELOC_TILEPRO_MMEND_X0: howto manager. (line 2634)
11978 * BFD_RELOC_TILEPRO_RELATIVE: howto manager. (line 2477) 12227 * BFD_RELOC_TILEPRO_MMEND_X1: howto manager. (line 2636)
11979 * BFD_RELOC_TILEPRO_SHAMT_X0: howto manager. (line 2516) 12228 * BFD_RELOC_TILEPRO_MMSTART_X0: howto manager. (line 2633)
11980 * BFD_RELOC_TILEPRO_SHAMT_X1: howto manager. (line 2517) 12229 * BFD_RELOC_TILEPRO_MMSTART_X1: howto manager. (line 2635)
11981 * BFD_RELOC_TILEPRO_SHAMT_Y0: howto manager. (line 2518) 12230 * BFD_RELOC_TILEPRO_MT_IMM15_X1: howto manager. (line 2607)
11982 * BFD_RELOC_TILEPRO_SHAMT_Y1: howto manager. (line 2519) 12231 * BFD_RELOC_TILEPRO_RELATIVE: howto manager. (line 2598)
11983 * BFD_RELOC_TILEPRO_TLS_DTPMOD32: howto manager. (line 2536) 12232 * BFD_RELOC_TILEPRO_SHAMT_X0: howto manager. (line 2637)
11984 * BFD_RELOC_TILEPRO_TLS_DTPOFF32: howto manager. (line 2537) 12233 * BFD_RELOC_TILEPRO_SHAMT_X1: howto manager. (line 2638)
11985 * BFD_RELOC_TILEPRO_TLS_TPOFF32: howto manager. (line 2538) 12234 * BFD_RELOC_TILEPRO_SHAMT_Y0: howto manager. (line 2639)
11986 * bfd_reloc_type_lookup: howto manager. (line 2669) 12235 * BFD_RELOC_TILEPRO_SHAMT_Y1: howto manager. (line 2640)
11987 * BFD_RELOC_V850_16_GOT: howto manager. (line 1332) 12236 * BFD_RELOC_TILEPRO_TLS_DTPMOD32: howto manager. (line 2663)
11988 * BFD_RELOC_V850_16_GOTOFF: howto manager. (line 1356) 12237 * BFD_RELOC_TILEPRO_TLS_DTPOFF32: howto manager. (line 2664)
11989 * BFD_RELOC_V850_16_PCREL: howto manager. (line 1302) 12238 * BFD_RELOC_TILEPRO_TLS_GD_CALL: howto manager. (line 2641)
11990 * BFD_RELOC_V850_16_S1: howto manager. (line 1320) 12239 * BFD_RELOC_TILEPRO_TLS_IE_LOAD: howto manager. (line 2646)
11991 * BFD_RELOC_V850_16_SPLIT_OFFSET: howto manager. (line 1317) 12240 * BFD_RELOC_TILEPRO_TLS_TPOFF32: howto manager. (line 2665)
11992 * BFD_RELOC_V850_17_PCREL: howto manager. (line 1305) 12241 * bfd_reloc_type_lookup: howto manager. (line 2796)
11993 * BFD_RELOC_V850_22_PCREL: howto manager. (line 1237) 12242 * BFD_RELOC_V850_16_GOT: howto manager. (line 1381)
11994 * BFD_RELOC_V850_22_PLT_PCREL: howto manager. (line 1338) 12243 * BFD_RELOC_V850_16_GOTOFF: howto manager. (line 1405)
11995 * BFD_RELOC_V850_23: howto manager. (line 1308) 12244 * BFD_RELOC_V850_16_PCREL: howto manager. (line 1351)
11996 * BFD_RELOC_V850_32_ABS: howto manager. (line 1314) 12245 * BFD_RELOC_V850_16_S1: howto manager. (line 1369)
11997 * BFD_RELOC_V850_32_GOT: howto manager. (line 1335) 12246 * BFD_RELOC_V850_16_SPLIT_OFFSET: howto manager. (line 1366)
11998 * BFD_RELOC_V850_32_GOTOFF: howto manager. (line 1359) 12247 * BFD_RELOC_V850_17_PCREL: howto manager. (line 1354)
11999 * BFD_RELOC_V850_32_GOTPCREL: howto manager. (line 1329) 12248 * BFD_RELOC_V850_22_PCREL: howto manager. (line 1286)
12000 * BFD_RELOC_V850_32_PCREL: howto manager. (line 1311) 12249 * BFD_RELOC_V850_22_PLT_PCREL: howto manager. (line 1387)
12001 * BFD_RELOC_V850_32_PLT_PCREL: howto manager. (line 1341) 12250 * BFD_RELOC_V850_23: howto manager. (line 1357)
12002 * BFD_RELOC_V850_9_PCREL: howto manager. (line 1234) 12251 * BFD_RELOC_V850_32_ABS: howto manager. (line 1363)
12003 * BFD_RELOC_V850_ALIGN: howto manager. (line 1295) 12252 * BFD_RELOC_V850_32_GOT: howto manager. (line 1384)
12004 * BFD_RELOC_V850_CALLT_15_16_OFFSET: howto manager. (line 1326) 12253 * BFD_RELOC_V850_32_GOTOFF: howto manager. (line 1408)
12005 * BFD_RELOC_V850_CALLT_16_16_OFFSET: howto manager. (line 1286) 12254 * BFD_RELOC_V850_32_GOTPCREL: howto manager. (line 1378)
12006 * BFD_RELOC_V850_CALLT_6_7_OFFSET: howto manager. (line 1283) 12255 * BFD_RELOC_V850_32_PCREL: howto manager. (line 1360)
12007 * BFD_RELOC_V850_CODE: howto manager. (line 1362) 12256 * BFD_RELOC_V850_32_PLT_PCREL: howto manager. (line 1390)
12008 * BFD_RELOC_V850_COPY: howto manager. (line 1344) 12257 * BFD_RELOC_V850_9_PCREL: howto manager. (line 1283)
12009 * BFD_RELOC_V850_DATA: howto manager. (line 1365) 12258 * BFD_RELOC_V850_ALIGN: howto manager. (line 1344)
12010 * BFD_RELOC_V850_GLOB_DAT: howto manager. (line 1347) 12259 * BFD_RELOC_V850_CALLT_15_16_OFFSET: howto manager. (line 1375)
12011 * BFD_RELOC_V850_JMP_SLOT: howto manager. (line 1350) 12260 * BFD_RELOC_V850_CALLT_16_16_OFFSET: howto manager. (line 1335)
12012 * BFD_RELOC_V850_LO16_S1: howto manager. (line 1323) 12261 * BFD_RELOC_V850_CALLT_6_7_OFFSET: howto manager. (line 1332)
12013 * BFD_RELOC_V850_LO16_SPLIT_OFFSET: howto manager. (line 1298) 12262 * BFD_RELOC_V850_CODE: howto manager. (line 1411)
12014 * BFD_RELOC_V850_LONGCALL: howto manager. (line 1289) 12263 * BFD_RELOC_V850_COPY: howto manager. (line 1393)
12015 * BFD_RELOC_V850_LONGJUMP: howto manager. (line 1292) 12264 * BFD_RELOC_V850_DATA: howto manager. (line 1414)
12016 * BFD_RELOC_V850_RELATIVE: howto manager. (line 1353) 12265 * BFD_RELOC_V850_GLOB_DAT: howto manager. (line 1396)
12017 * BFD_RELOC_V850_SDA_15_16_OFFSET: howto manager. (line 1243) 12266 * BFD_RELOC_V850_JMP_SLOT: howto manager. (line 1399)
12018 * BFD_RELOC_V850_SDA_16_16_OFFSET: howto manager. (line 1240) 12267 * BFD_RELOC_V850_LO16_S1: howto manager. (line 1372)
12019 * BFD_RELOC_V850_SDA_16_16_SPLIT_OFFSET: howto manager. (line 1275) 12268 * BFD_RELOC_V850_LO16_SPLIT_OFFSET: howto manager. (line 1347)
12020 * BFD_RELOC_V850_TDA_16_16_OFFSET: howto manager. (line 1265) 12269 * BFD_RELOC_V850_LONGCALL: howto manager. (line 1338)
12021 * BFD_RELOC_V850_TDA_4_4_OFFSET: howto manager. (line 1272) 12270 * BFD_RELOC_V850_LONGJUMP: howto manager. (line 1341)
12022 * BFD_RELOC_V850_TDA_4_5_OFFSET: howto manager. (line 1268) 12271 * BFD_RELOC_V850_RELATIVE: howto manager. (line 1402)
12023 * BFD_RELOC_V850_TDA_6_8_OFFSET: howto manager. (line 1254) 12272 * BFD_RELOC_V850_SDA_15_16_OFFSET: howto manager. (line 1292)
12024 * BFD_RELOC_V850_TDA_7_7_OFFSET: howto manager. (line 1262) 12273 * BFD_RELOC_V850_SDA_16_16_OFFSET: howto manager. (line 1289)
12025 * BFD_RELOC_V850_TDA_7_8_OFFSET: howto manager. (line 1258) 12274 * BFD_RELOC_V850_SDA_16_16_SPLIT_OFFSET: howto manager. (line 1324)
12026 * BFD_RELOC_V850_ZDA_15_16_OFFSET: howto manager. (line 1250) 12275 * BFD_RELOC_V850_TDA_16_16_OFFSET: howto manager. (line 1314)
12027 * BFD_RELOC_V850_ZDA_16_16_OFFSET: howto manager. (line 1247) 12276 * BFD_RELOC_V850_TDA_4_4_OFFSET: howto manager. (line 1321)
12028 * BFD_RELOC_V850_ZDA_16_16_SPLIT_OFFSET: howto manager. (line 1279) 12277 * BFD_RELOC_V850_TDA_4_5_OFFSET: howto manager. (line 1317)
12029 * BFD_RELOC_VAX_GLOB_DAT: howto manager. (line 2240) 12278 * BFD_RELOC_V850_TDA_6_8_OFFSET: howto manager. (line 1303)
12030 * BFD_RELOC_VAX_JMP_SLOT: howto manager. (line 2241) 12279 * BFD_RELOC_V850_TDA_7_7_OFFSET: howto manager. (line 1311)
12031 * BFD_RELOC_VAX_RELATIVE: howto manager. (line 2242) 12280 * BFD_RELOC_V850_TDA_7_8_OFFSET: howto manager. (line 1307)
12032 * BFD_RELOC_VPE4KMATH_DATA: howto manager. (line 1879) 12281 * BFD_RELOC_V850_ZDA_15_16_OFFSET: howto manager. (line 1299)
12033 * BFD_RELOC_VPE4KMATH_INSN: howto manager. (line 1880) 12282 * BFD_RELOC_V850_ZDA_16_16_OFFSET: howto manager. (line 1296)
12034 * BFD_RELOC_VTABLE_ENTRY: howto manager. (line 1884) 12283 * BFD_RELOC_V850_ZDA_16_16_SPLIT_OFFSET: howto manager. (line 1328)
12035 * BFD_RELOC_VTABLE_INHERIT: howto manager. (line 1883) 12284 * BFD_RELOC_VAX_GLOB_DAT: howto manager. (line 2358)
12036 * BFD_RELOC_X86_64_32S: howto manager. (line 571) 12285 * BFD_RELOC_VAX_JMP_SLOT: howto manager. (line 2359)
12037 * BFD_RELOC_X86_64_COPY: howto manager. (line 566) 12286 * BFD_RELOC_VAX_RELATIVE: howto manager. (line 2360)
12038 * BFD_RELOC_X86_64_DTPMOD64: howto manager. (line 572) 12287 * BFD_RELOC_VPE4KMATH_DATA: howto manager. (line 1935)
12039 * BFD_RELOC_X86_64_DTPOFF32: howto manager. (line 577) 12288 * BFD_RELOC_VPE4KMATH_INSN: howto manager. (line 1936)
12040 * BFD_RELOC_X86_64_DTPOFF64: howto manager. (line 573) 12289 * BFD_RELOC_VTABLE_ENTRY: howto manager. (line 1940)
12041 * BFD_RELOC_X86_64_GLOB_DAT: howto manager. (line 567) 12290 * BFD_RELOC_VTABLE_INHERIT: howto manager. (line 1939)
12042 * BFD_RELOC_X86_64_GOT32: howto manager. (line 564) 12291 * BFD_RELOC_X86_64_32S: howto manager. (line 603)
12043 * BFD_RELOC_X86_64_GOT64: howto manager. (line 582) 12292 * BFD_RELOC_X86_64_COPY: howto manager. (line 598)
12044 * BFD_RELOC_X86_64_GOTOFF64: howto manager. (line 580) 12293 * BFD_RELOC_X86_64_DTPMOD64: howto manager. (line 604)
12045 * BFD_RELOC_X86_64_GOTPC32: howto manager. (line 581) 12294 * BFD_RELOC_X86_64_DTPOFF32: howto manager. (line 609)
12046 * BFD_RELOC_X86_64_GOTPC32_TLSDESC: howto manager. (line 587) 12295 * BFD_RELOC_X86_64_DTPOFF64: howto manager. (line 605)
12047 * BFD_RELOC_X86_64_GOTPC64: howto manager. (line 584) 12296 * BFD_RELOC_X86_64_GLOB_DAT: howto manager. (line 599)
12048 * BFD_RELOC_X86_64_GOTPCREL: howto manager. (line 570) 12297 * BFD_RELOC_X86_64_GOT32: howto manager. (line 596)
12049 * BFD_RELOC_X86_64_GOTPCREL64: howto manager. (line 583) 12298 * BFD_RELOC_X86_64_GOT64: howto manager. (line 614)
12050 * BFD_RELOC_X86_64_GOTPLT64: howto manager. (line 585) 12299 * BFD_RELOC_X86_64_GOTOFF64: howto manager. (line 612)
12051 * BFD_RELOC_X86_64_GOTTPOFF: howto manager. (line 578) 12300 * BFD_RELOC_X86_64_GOTPC32: howto manager. (line 613)
12052 * BFD_RELOC_X86_64_IRELATIVE: howto manager. (line 590) 12301 * BFD_RELOC_X86_64_GOTPC32_TLSDESC: howto manager. (line 619)
12053 * BFD_RELOC_X86_64_JUMP_SLOT: howto manager. (line 568) 12302 * BFD_RELOC_X86_64_GOTPC64: howto manager. (line 616)
12054 * BFD_RELOC_X86_64_PLT32: howto manager. (line 565) 12303 * BFD_RELOC_X86_64_GOTPCREL: howto manager. (line 602)
12055 * BFD_RELOC_X86_64_PLTOFF64: howto manager. (line 586) 12304 * BFD_RELOC_X86_64_GOTPCREL64: howto manager. (line 615)
12056 * BFD_RELOC_X86_64_RELATIVE: howto manager. (line 569) 12305 * BFD_RELOC_X86_64_GOTPLT64: howto manager. (line 617)
12057 * BFD_RELOC_X86_64_TLSDESC: howto manager. (line 589) 12306 * BFD_RELOC_X86_64_GOTTPOFF: howto manager. (line 610)
12058 * BFD_RELOC_X86_64_TLSDESC_CALL: howto manager. (line 588) 12307 * BFD_RELOC_X86_64_IRELATIVE: howto manager. (line 622)
12059 * BFD_RELOC_X86_64_TLSGD: howto manager. (line 575) 12308 * BFD_RELOC_X86_64_JUMP_SLOT: howto manager. (line 600)
12060 * BFD_RELOC_X86_64_TLSLD: howto manager. (line 576) 12309 * BFD_RELOC_X86_64_PLT32: howto manager. (line 597)
12061 * BFD_RELOC_X86_64_TPOFF32: howto manager. (line 579) 12310 * BFD_RELOC_X86_64_PLTOFF64: howto manager. (line 618)
12062 * BFD_RELOC_X86_64_TPOFF64: howto manager. (line 574) 12311 * BFD_RELOC_X86_64_RELATIVE: howto manager. (line 601)
12063 * BFD_RELOC_XC16X_PAG: howto manager. (line 2234) 12312 * BFD_RELOC_X86_64_TLSDESC: howto manager. (line 621)
12064 * BFD_RELOC_XC16X_POF: howto manager. (line 2235) 12313 * BFD_RELOC_X86_64_TLSDESC_CALL: howto manager. (line 620)
12065 * BFD_RELOC_XC16X_SEG: howto manager. (line 2236) 12314 * BFD_RELOC_X86_64_TLSGD: howto manager. (line 607)
12066 * BFD_RELOC_XC16X_SOF: howto manager. (line 2237) 12315 * BFD_RELOC_X86_64_TLSLD: howto manager. (line 608)
12067 * BFD_RELOC_XSTORMY16_12: howto manager. (line 2226) 12316 * BFD_RELOC_X86_64_TPOFF32: howto manager. (line 611)
12068 * BFD_RELOC_XSTORMY16_24: howto manager. (line 2227) 12317 * BFD_RELOC_X86_64_TPOFF64: howto manager. (line 606)
12069 * BFD_RELOC_XSTORMY16_FPTR16: howto manager. (line 2228) 12318 * BFD_RELOC_XC16X_PAG: howto manager. (line 2352)
12070 * BFD_RELOC_XSTORMY16_REL_12: howto manager. (line 2225) 12319 * BFD_RELOC_XC16X_POF: howto manager. (line 2353)
12071 * BFD_RELOC_XTENSA_ASM_EXPAND: howto manager. (line 2346) 12320 * BFD_RELOC_XC16X_SEG: howto manager. (line 2354)
12072 * BFD_RELOC_XTENSA_ASM_SIMPLIFY: howto manager. (line 2351) 12321 * BFD_RELOC_XC16X_SOF: howto manager. (line 2355)
12073 * BFD_RELOC_XTENSA_DIFF16: howto manager. (line 2293) 12322 * BFD_RELOC_XGATE_24: howto manager. (line 2098)
12074 * BFD_RELOC_XTENSA_DIFF32: howto manager. (line 2294) 12323 * BFD_RELOC_XGATE_GPAGE: howto manager. (line 2095)
12075 * BFD_RELOC_XTENSA_DIFF8: howto manager. (line 2292) 12324 * BFD_RELOC_XGATE_IMM3: howto manager. (line 2115)
12076 * BFD_RELOC_XTENSA_GLOB_DAT: howto manager. (line 2282) 12325 * BFD_RELOC_XGATE_IMM4: howto manager. (line 2118)
12077 * BFD_RELOC_XTENSA_JMP_SLOT: howto manager. (line 2283) 12326 * BFD_RELOC_XGATE_IMM5: howto manager. (line 2121)
12078 * BFD_RELOC_XTENSA_OP0: howto manager. (line 2340) 12327 * BFD_RELOC_XGATE_IMM8_HI: howto manager. (line 2111)
12079 * BFD_RELOC_XTENSA_OP1: howto manager. (line 2341) 12328 * BFD_RELOC_XGATE_IMM8_LO: howto manager. (line 2107)
12080 * BFD_RELOC_XTENSA_OP2: howto manager. (line 2342) 12329 * BFD_RELOC_XGATE_LO16: howto manager. (line 2091)
12081 * BFD_RELOC_XTENSA_PLT: howto manager. (line 2287) 12330 * BFD_RELOC_XGATE_PCREL_10: howto manager. (line 2104)
12082 * BFD_RELOC_XTENSA_RELATIVE: howto manager. (line 2284) 12331 * BFD_RELOC_XGATE_PCREL_9: howto manager. (line 2101)
12083 * BFD_RELOC_XTENSA_RTLD: howto manager. (line 2277) 12332 * BFD_RELOC_XGATE_RL_GROUP: howto manager. (line 2086)
12084 * BFD_RELOC_XTENSA_SLOT0_ALT: howto manager. (line 2322) 12333 * BFD_RELOC_XGATE_RL_JUMP: howto manager. (line 2082)
12085 * BFD_RELOC_XTENSA_SLOT0_OP: howto manager. (line 2302) 12334 * BFD_RELOC_XSTORMY16_12: howto manager. (line 2344)
12086 * BFD_RELOC_XTENSA_SLOT10_ALT: howto manager. (line 2332) 12335 * BFD_RELOC_XSTORMY16_24: howto manager. (line 2345)
12087 * BFD_RELOC_XTENSA_SLOT10_OP: howto manager. (line 2312) 12336 * BFD_RELOC_XSTORMY16_FPTR16: howto manager. (line 2346)
12088 * BFD_RELOC_XTENSA_SLOT11_ALT: howto manager. (line 2333) 12337 * BFD_RELOC_XSTORMY16_REL_12: howto manager. (line 2343)
12089 * BFD_RELOC_XTENSA_SLOT11_OP: howto manager. (line 2313) 12338 * BFD_RELOC_XTENSA_ASM_EXPAND: howto manager. (line 2464)
12090 * BFD_RELOC_XTENSA_SLOT12_ALT: howto manager. (line 2334) 12339 * BFD_RELOC_XTENSA_ASM_SIMPLIFY: howto manager. (line 2469)
12091 * BFD_RELOC_XTENSA_SLOT12_OP: howto manager. (line 2314) 12340 * BFD_RELOC_XTENSA_DIFF16: howto manager. (line 2411)
12092 * BFD_RELOC_XTENSA_SLOT13_ALT: howto manager. (line 2335) 12341 * BFD_RELOC_XTENSA_DIFF32: howto manager. (line 2412)
12093 * BFD_RELOC_XTENSA_SLOT13_OP: howto manager. (line 2315) 12342 * BFD_RELOC_XTENSA_DIFF8: howto manager. (line 2410)
12094 * BFD_RELOC_XTENSA_SLOT14_ALT: howto manager. (line 2336) 12343 * BFD_RELOC_XTENSA_GLOB_DAT: howto manager. (line 2400)
12095 * BFD_RELOC_XTENSA_SLOT14_OP: howto manager. (line 2316) 12344 * BFD_RELOC_XTENSA_JMP_SLOT: howto manager. (line 2401)
12096 * BFD_RELOC_XTENSA_SLOT1_ALT: howto manager. (line 2323) 12345 * BFD_RELOC_XTENSA_OP0: howto manager. (line 2458)
12097 * BFD_RELOC_XTENSA_SLOT1_OP: howto manager. (line 2303) 12346 * BFD_RELOC_XTENSA_OP1: howto manager. (line 2459)
12098 * BFD_RELOC_XTENSA_SLOT2_ALT: howto manager. (line 2324) 12347 * BFD_RELOC_XTENSA_OP2: howto manager. (line 2460)
12099 * BFD_RELOC_XTENSA_SLOT2_OP: howto manager. (line 2304) 12348 * BFD_RELOC_XTENSA_PLT: howto manager. (line 2405)
12100 * BFD_RELOC_XTENSA_SLOT3_ALT: howto manager. (line 2325) 12349 * BFD_RELOC_XTENSA_RELATIVE: howto manager. (line 2402)
12101 * BFD_RELOC_XTENSA_SLOT3_OP: howto manager. (line 2305) 12350 * BFD_RELOC_XTENSA_RTLD: howto manager. (line 2395)
12102 * BFD_RELOC_XTENSA_SLOT4_ALT: howto manager. (line 2326) 12351 * BFD_RELOC_XTENSA_SLOT0_ALT: howto manager. (line 2440)
12103 * BFD_RELOC_XTENSA_SLOT4_OP: howto manager. (line 2306) 12352 * BFD_RELOC_XTENSA_SLOT0_OP: howto manager. (line 2420)
12104 * BFD_RELOC_XTENSA_SLOT5_ALT: howto manager. (line 2327) 12353 * BFD_RELOC_XTENSA_SLOT10_ALT: howto manager. (line 2450)
12105 * BFD_RELOC_XTENSA_SLOT5_OP: howto manager. (line 2307) 12354 * BFD_RELOC_XTENSA_SLOT10_OP: howto manager. (line 2430)
12106 * BFD_RELOC_XTENSA_SLOT6_ALT: howto manager. (line 2328) 12355 * BFD_RELOC_XTENSA_SLOT11_ALT: howto manager. (line 2451)
12107 * BFD_RELOC_XTENSA_SLOT6_OP: howto manager. (line 2308) 12356 * BFD_RELOC_XTENSA_SLOT11_OP: howto manager. (line 2431)
12108 * BFD_RELOC_XTENSA_SLOT7_ALT: howto manager. (line 2329) 12357 * BFD_RELOC_XTENSA_SLOT12_ALT: howto manager. (line 2452)
12109 * BFD_RELOC_XTENSA_SLOT7_OP: howto manager. (line 2309) 12358 * BFD_RELOC_XTENSA_SLOT12_OP: howto manager. (line 2432)
12110 * BFD_RELOC_XTENSA_SLOT8_ALT: howto manager. (line 2330) 12359 * BFD_RELOC_XTENSA_SLOT13_ALT: howto manager. (line 2453)
12111 * BFD_RELOC_XTENSA_SLOT8_OP: howto manager. (line 2310) 12360 * BFD_RELOC_XTENSA_SLOT13_OP: howto manager. (line 2433)
12112 * BFD_RELOC_XTENSA_SLOT9_ALT: howto manager. (line 2331) 12361 * BFD_RELOC_XTENSA_SLOT14_ALT: howto manager. (line 2454)
12113 * BFD_RELOC_XTENSA_SLOT9_OP: howto manager. (line 2311) 12362 * BFD_RELOC_XTENSA_SLOT14_OP: howto manager. (line 2434)
12114 * BFD_RELOC_XTENSA_TLS_ARG: howto manager. (line 2361) 12363 * BFD_RELOC_XTENSA_SLOT1_ALT: howto manager. (line 2441)
12115 * BFD_RELOC_XTENSA_TLS_CALL: howto manager. (line 2362) 12364 * BFD_RELOC_XTENSA_SLOT1_OP: howto manager. (line 2421)
12116 * BFD_RELOC_XTENSA_TLS_DTPOFF: howto manager. (line 2358) 12365 * BFD_RELOC_XTENSA_SLOT2_ALT: howto manager. (line 2442)
12117 * BFD_RELOC_XTENSA_TLS_FUNC: howto manager. (line 2360) 12366 * BFD_RELOC_XTENSA_SLOT2_OP: howto manager. (line 2422)
12118 * BFD_RELOC_XTENSA_TLS_TPOFF: howto manager. (line 2359) 12367 * BFD_RELOC_XTENSA_SLOT3_ALT: howto manager. (line 2443)
12119 * BFD_RELOC_XTENSA_TLSDESC_ARG: howto manager. (line 2357) 12368 * BFD_RELOC_XTENSA_SLOT3_OP: howto manager. (line 2423)
12120 * BFD_RELOC_XTENSA_TLSDESC_FN: howto manager. (line 2356) 12369 * BFD_RELOC_XTENSA_SLOT4_ALT: howto manager. (line 2444)
12121 * BFD_RELOC_Z80_DISP8: howto manager. (line 2365) 12370 * BFD_RELOC_XTENSA_SLOT4_OP: howto manager. (line 2424)
12122 * BFD_RELOC_Z8K_CALLR: howto manager. (line 2371) 12371 * BFD_RELOC_XTENSA_SLOT5_ALT: howto manager. (line 2445)
12123 * BFD_RELOC_Z8K_DISP7: howto manager. (line 2368) 12372 * BFD_RELOC_XTENSA_SLOT5_OP: howto manager. (line 2425)
12124 * BFD_RELOC_Z8K_IMM4L: howto manager. (line 2374) 12373 * BFD_RELOC_XTENSA_SLOT6_ALT: howto manager. (line 2446)
12125 * bfd_rename_section: section prototypes. (line 155) 12374 * BFD_RELOC_XTENSA_SLOT6_OP: howto manager. (line 2426)
12126 * bfd_scan_arch: Architectures. (line 463) 12375 * BFD_RELOC_XTENSA_SLOT7_ALT: howto manager. (line 2447)
12127 * bfd_scan_vma: BFD front end. (line 535) 12376 * BFD_RELOC_XTENSA_SLOT7_OP: howto manager. (line 2427)
12128 * bfd_seach_for_target: bfd_target. (line 519) 12377 * BFD_RELOC_XTENSA_SLOT8_ALT: howto manager. (line 2448)
12378 * BFD_RELOC_XTENSA_SLOT8_OP: howto manager. (line 2428)
12379 * BFD_RELOC_XTENSA_SLOT9_ALT: howto manager. (line 2449)
12380 * BFD_RELOC_XTENSA_SLOT9_OP: howto manager. (line 2429)
12381 * BFD_RELOC_XTENSA_TLS_ARG: howto manager. (line 2479)
12382 * BFD_RELOC_XTENSA_TLS_CALL: howto manager. (line 2480)
12383 * BFD_RELOC_XTENSA_TLS_DTPOFF: howto manager. (line 2476)
12384 * BFD_RELOC_XTENSA_TLS_FUNC: howto manager. (line 2478)
12385 * BFD_RELOC_XTENSA_TLS_TPOFF: howto manager. (line 2477)
12386 * BFD_RELOC_XTENSA_TLSDESC_ARG: howto manager. (line 2475)
12387 * BFD_RELOC_XTENSA_TLSDESC_FN: howto manager. (line 2474)
12388 * BFD_RELOC_Z80_DISP8: howto manager. (line 2483)
12389 * BFD_RELOC_Z8K_CALLR: howto manager. (line 2489)
12390 * BFD_RELOC_Z8K_DISP7: howto manager. (line 2486)
12391 * BFD_RELOC_Z8K_IMM4L: howto manager. (line 2492)
12392 * bfd_rename_section: section prototypes. (line 169)
12393 * bfd_scan_arch: Architectures. (line 477)
12394 * bfd_scan_vma: BFD front end. (line 567)
12395 * bfd_seach_for_target: bfd_target. (line 520)
12129 * bfd_section_already_linked: Writing the symbol table. 12396 * bfd_section_already_linked: Writing the symbol table.
12130 (line 55) 12397 (line 55)
12131 * bfd_section_list_clear: section prototypes. (line 8) 12398 * bfd_section_list_clear: section prototypes. (line 8)
12132 * bfd_sections_find_if: section prototypes. (line 185) 12399 * bfd_sections_find_if: section prototypes. (line 199)
12133 * bfd_set_arch_info: Architectures. (line 504) 12400 * bfd_set_arch_info: Architectures. (line 518)
12134 * bfd_set_archive_head: Archives. (line 69) 12401 * bfd_set_archive_head: Archives. (line 69)
12135 * bfd_set_default_target: bfd_target. (line 458) 12402 * bfd_set_assert_handler: BFD front end. (line 429)
12403 * bfd_set_default_target: bfd_target. (line 459)
12136 * bfd_set_error: BFD front end. (line 345) 12404 * bfd_set_error: BFD front end. (line 345)
12137 * bfd_set_error_handler: BFD front end. (line 387) 12405 * bfd_set_error_handler: BFD front end. (line 387)
12138 * bfd_set_error_program_name: BFD front end. (line 396) 12406 * bfd_set_error_program_name: BFD front end. (line 396)
12139 * bfd_set_file_flags: BFD front end. (line 455) 12407 * bfd_set_file_flags: BFD front end. (line 487)
12140 * bfd_set_format: Formats. (line 68) 12408 * bfd_set_format: Formats. (line 68)
12141 * bfd_set_gp_size: BFD front end. (line 525) 12409 * bfd_set_gp_size: BFD front end. (line 557)
12142 * bfd_set_private_flags: BFD front end. (line 602) 12410 * bfd_set_private_flags: BFD front end. (line 634)
12143 * bfd_set_reloc: BFD front end. (line 445) 12411 * bfd_set_reloc: BFD front end. (line 477)
12144 * bfd_set_section_contents: section prototypes. (line 216) 12412 * bfd_set_section_contents: section prototypes. (line 230)
12145 * bfd_set_section_flags: section prototypes. (line 140) 12413 * bfd_set_section_flags: section prototypes. (line 154)
12146 * bfd_set_section_size: section prototypes. (line 202) 12414 * bfd_set_section_size: section prototypes. (line 216)
12147 * bfd_set_start_address: BFD front end. (line 504) 12415 * bfd_set_start_address: BFD front end. (line 536)
12148 * bfd_set_symtab: symbol handling functions. 12416 * bfd_set_symtab: symbol handling functions.
12149 (line 60) 12417 (line 60)
12150 * bfd_symbol_info: symbol handling functions. 12418 * bfd_symbol_info: symbol handling functions.
12151 (line 130) 12419 (line 130)
12152 * bfd_target_list: bfd_target. (line 510) 12420 * bfd_target_list: bfd_target. (line 511)
12153 * bfd_write_bigendian_4byte_int: Internal. (line 13) 12421 * bfd_write_bigendian_4byte_int: Internal. (line 13)
12154 * bfd_zalloc: Opening and Closing. 12422 * bfd_zalloc: Opening and Closing.
12155 (line 232) 12423 (line 236)
12156 * bfd_zalloc2: Opening and Closing. 12424 * bfd_zalloc2: Opening and Closing.
12157 (line 241) 12425 (line 245)
12158 * coff_symbol_type: coff. (line 244) 12426 * coff_symbol_type: coff. (line 244)
12159 * core_file_matches_executable_p: Core Files. (line 39) 12427 * core_file_matches_executable_p: Core Files. (line 39)
12160 * find_separate_debug_file: Opening and Closing. 12428 * find_separate_debug_file: Opening and Closing.
12161 (line 283) 12429 (line 287)
12162 * generic_core_file_matches_executable_p: Core Files. (line 49) 12430 * generic_core_file_matches_executable_p: Core Files. (line 49)
12163 * get_debug_link_info: Opening and Closing. 12431 * get_debug_link_info: Opening and Closing.
12164 (line 264) 12432 (line 268)
12165 * Hash tables: Hash Tables. (line 6) 12433 * Hash tables: Hash Tables. (line 6)
12166 * internal object-file format: Canonical format. (line 11) 12434 * internal object-file format: Canonical format. (line 11)
12167 * Linker: Linker Functions. (line 6) 12435 * Linker: Linker Functions. (line 6)
12168 * Other functions: BFD front end. (line 617) 12436 * Other functions: BFD front end. (line 649)
12169 * separate_debug_file_exists: Opening and Closing. 12437 * separate_debug_file_exists: Opening and Closing.
12170 (line 274) 12438 (line 278)
12171 * struct bfd_iovec: BFD front end. (line 823) 12439 * struct bfd_iovec: BFD front end. (line 855)
12172 * target vector (_bfd_final_link): Performing the Final Link. 12440 * target vector (_bfd_final_link): Performing the Final Link.
12173 (line 6) 12441 (line 6)
12174 * target vector (_bfd_link_add_symbols): Adding Symbols to the Hash Table. 12442 * target vector (_bfd_link_add_symbols): Adding Symbols to the Hash Table.
12175 (line 6) 12443 (line 6)
12176 * target vector (_bfd_link_hash_table_create): Creating a Linker Hash Table. 12444 * target vector (_bfd_link_hash_table_create): Creating a Linker Hash Table.
12177 (line 6) 12445 (line 6)
12178 * The HOWTO Macro: typedef arelent. (line 288) 12446 * The HOWTO Macro: typedef arelent. (line 288)
12179 * what is it?: Overview. (line 6) 12447 * what is it?: Overview. (line 6)
12180 12448
12181 12449
12182  12450 
12183 Tag Table: 12451 Tag Table:
12184 Node: Top1089 12452 Node: Top1089
12185 Node: Overview1428 12453 Node: Overview1428
12186 Node: History2479 12454 Node: History2479
12187 Node: How It Works3425 12455 Node: How It Works3425
12188 Node: What BFD Version 2 Can Do4968 12456 Node: What BFD Version 2 Can Do4968
12189 Node: BFD information loss6283 12457 Node: BFD information loss6283
12190 Node: Canonical format8815 12458 Node: Canonical format8815
12191 Node: BFD front end13187 12459 Node: BFD front end13187
12192 Node: Memory Usage46098 12460 Node: Memory Usage47266
12193 Node: Initialization47326 12461 Node: Initialization48494
12194 Node: Sections47785 12462 Node: Sections48953
12195 Node: Section Input48268 12463 Node: Section Input49436
12196 Node: Section Output49633 12464 Node: Section Output50801
12197 Node: typedef asection52119 12465 Node: typedef asection53287
12198 Node: section prototypes77989 12466 Node: section prototypes78494
12199 Node: Symbols87884 12467 Node: Symbols88750
12200 Node: Reading Symbols89479 12468 Node: Reading Symbols90345
12201 Node: Writing Symbols90586 12469 Node: Writing Symbols91452
12202 Node: Mini Symbols92295 12470 Node: Mini Symbols93193
12203 Node: typedef asymbol93269 12471 Node: typedef asymbol94167
12204 Node: symbol handling functions99328 12472 Node: symbol handling functions100226
12205 Node: Archives104670 12473 Node: Archives105568
12206 Node: Formats108396 12474 Node: Formats109294
12207 Node: Relocations111344 12475 Node: Relocations112242
12208 Node: typedef arelent112071 12476 Node: typedef arelent112969
12209 Node: howto manager127707 12477 Node: howto manager128605
12210 Node: Core Files214123 12478 Node: Core Files219224
12211 Node: Targets216161 12479 Node: Targets221262
12212 Node: bfd_target218131 12480 Node: bfd_target223232
12213 Node: Architectures241021 12481 Node: Architectures246197
12214 Node: Opening and Closing265792 12482 Node: Opening and Closing271999
12215 Node: Internal277248 12483 Node: Internal283518
12216 Node: File Caching283593 12484 Node: File Caching289863
12217 Node: Linker Functions285507 12485 Node: Linker Functions291777
12218 Node: Creating a Linker Hash Table287180 12486 Node: Creating a Linker Hash Table293450
12219 Node: Adding Symbols to the Hash Table288918 12487 Node: Adding Symbols to the Hash Table295188
12220 Node: Differing file formats289818 12488 Node: Differing file formats296088
12221 Node: Adding symbols from an object file291543 12489 Node: Adding symbols from an object file297813
12222 Node: Adding symbols from an archive293694 12490 Node: Adding symbols from an archive299964
12223 Node: Performing the Final Link296623 12491 Node: Performing the Final Link302893
12224 Node: Information provided by the linker297865 12492 Node: Information provided by the linker304135
12225 Node: Relocating the section contents299019 12493 Node: Relocating the section contents305289
12226 Node: Writing the symbol table300770 12494 Node: Writing the symbol table307040
12227 Node: Hash Tables305156 12495 Node: Hash Tables311426
12228 Node: Creating and Freeing a Hash Table306354 12496 Node: Creating and Freeing a Hash Table312624
12229 Node: Looking Up or Entering a String307604 12497 Node: Looking Up or Entering a String313874
12230 Node: Traversing a Hash Table308857 12498 Node: Traversing a Hash Table315127
12231 Node: Deriving a New Hash Table Type309646 12499 Node: Deriving a New Hash Table Type315916
12232 Node: Define the Derived Structures310712 12500 Node: Define the Derived Structures316982
12233 Node: Write the Derived Creation Routine311793 12501 Node: Write the Derived Creation Routine318063
12234 Node: Write Other Derived Routines314417 12502 Node: Write Other Derived Routines320687
12235 Node: BFD back ends315732 12503 Node: BFD back ends322002
12236 Node: What to Put Where316002 12504 Node: What to Put Where322272
12237 Node: aout316182 12505 Node: aout322452
12238 Node: coff322500 12506 Node: coff328770
12239 Node: elf350933 12507 Node: elf357203
12240 Node: mmo351334 12508 Node: mmo357604
12241 Node: File layout352262 12509 Node: File layout358532
12242 Node: Symbol-table357909 12510 Node: Symbol-table364179
12243 Node: mmo section mapping361678 12511 Node: mmo section mapping367948
12244 Node: GNU Free Documentation License365330 12512 Node: GNU Free Documentation License371600
12245 Node: BFD Index390413 12513 Node: BFD Index396683
12246  12514 
12247 End Tag Table 12515 End Tag Table
OLDNEW
« no previous file with comments | « bfd/doc/archures.texi ('k') | bfd/doc/bfdt.texi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698