Home | History | Annotate | Line # | Download | only in bfd
      1       1.1     skrll /* MIPS ELF specific backend routines.
      2  1.1.1.11  christos    Copyright (C) 2002-2026 Free Software Foundation, Inc.
      3       1.1     skrll 
      4       1.1     skrll    This file is part of BFD, the Binary File Descriptor library.
      5       1.1     skrll 
      6       1.1     skrll    This program is free software; you can redistribute it and/or modify
      7       1.1     skrll    it under the terms of the GNU General Public License as published by
      8       1.1     skrll    the Free Software Foundation; either version 3 of the License, or
      9       1.1     skrll    (at your option) any later version.
     10       1.1     skrll 
     11       1.1     skrll    This program is distributed in the hope that it will be useful,
     12       1.1     skrll    but WITHOUT ANY WARRANTY; without even the implied warranty of
     13       1.1     skrll    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     14       1.1     skrll    GNU General Public License for more details.
     15       1.1     skrll 
     16       1.1     skrll    You should have received a copy of the GNU General Public License
     17       1.1     skrll    along with this program; if not, write to the Free Software
     18       1.1     skrll    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
     19       1.1     skrll    MA 02110-1301, USA.  */
     20       1.1     skrll 
     21       1.1     skrll #include "elf/common.h"
     22       1.1     skrll #include "elf/internal.h"
     23   1.1.1.2  christos #include "elf/mips.h"
     24       1.1     skrll 
     25   1.1.1.9  christos enum reloc_check
     26   1.1.1.9  christos {
     27   1.1.1.9  christos   check_std,
     28   1.1.1.9  christos   check_inplace,
     29   1.1.1.9  christos   check_shuffle
     30   1.1.1.9  christos };
     31   1.1.1.9  christos 
     32   1.1.1.9  christos #ifndef MIPS_DEFAULT_R6
     33   1.1.1.9  christos #define MIPS_DEFAULT_R6 0
     34   1.1.1.9  christos #endif
     35   1.1.1.9  christos 
     36   1.1.1.9  christos struct ecoff_debug_info;
     37   1.1.1.9  christos 
     38   1.1.1.8  christos extern bool _bfd_mips_elf_mkobject
     39  1.1.1.11  christos   (bfd *) ATTRIBUTE_HIDDEN;
     40   1.1.1.9  christos extern bool _bfd_mips_elf_free_cached_info
     41  1.1.1.11  christos   (bfd *) ATTRIBUTE_HIDDEN;
     42   1.1.1.8  christos extern bool _bfd_mips_elf_new_section_hook
     43  1.1.1.11  christos   (bfd *, asection *) ATTRIBUTE_HIDDEN;
     44       1.1     skrll extern void _bfd_mips_elf_symbol_processing
     45  1.1.1.11  christos   (bfd *, asymbol *) ATTRIBUTE_HIDDEN;
     46       1.1     skrll extern unsigned int _bfd_mips_elf_eh_frame_address_size
     47  1.1.1.11  christos   (bfd *, const asection *) ATTRIBUTE_HIDDEN;
     48   1.1.1.8  christos extern bool _bfd_mips_elf_name_local_section_symbols
     49  1.1.1.11  christos   (bfd *) ATTRIBUTE_HIDDEN;
     50   1.1.1.8  christos extern bool _bfd_mips_elf_section_processing
     51  1.1.1.11  christos   (bfd *, Elf_Internal_Shdr *) ATTRIBUTE_HIDDEN;
     52   1.1.1.8  christos extern bool _bfd_mips_elf_section_from_shdr
     53  1.1.1.11  christos   (bfd *, Elf_Internal_Shdr *, const char *, int) ATTRIBUTE_HIDDEN;
     54   1.1.1.8  christos extern bool _bfd_mips_elf_fake_sections
     55  1.1.1.11  christos   (bfd *, Elf_Internal_Shdr *, asection *) ATTRIBUTE_HIDDEN;
     56   1.1.1.8  christos extern bool _bfd_mips_elf_section_from_bfd_section
     57  1.1.1.11  christos   (bfd *, asection *, int *) ATTRIBUTE_HIDDEN;
     58   1.1.1.8  christos extern bool _bfd_mips_elf_add_symbol_hook
     59       1.1     skrll   (bfd *, struct bfd_link_info *, Elf_Internal_Sym *,
     60  1.1.1.11  christos    const char **, flagword *, asection **, bfd_vma *) ATTRIBUTE_HIDDEN;
     61   1.1.1.2  christos extern int _bfd_mips_elf_link_output_symbol_hook
     62       1.1     skrll   (struct bfd_link_info *, const char *, Elf_Internal_Sym *,
     63  1.1.1.11  christos    asection *, struct elf_link_hash_entry *) ATTRIBUTE_HIDDEN;
     64   1.1.1.8  christos extern bool _bfd_mips_elf_create_dynamic_sections
     65  1.1.1.11  christos   (bfd *, struct bfd_link_info *) ATTRIBUTE_HIDDEN;
     66   1.1.1.8  christos extern bool _bfd_mips_elf_check_relocs
     67  1.1.1.11  christos   (bfd *, struct bfd_link_info *, asection *, const Elf_Internal_Rela *)
     68  1.1.1.11  christos   ATTRIBUTE_HIDDEN;
     69   1.1.1.8  christos extern bool _bfd_mips_elf_adjust_dynamic_symbol
     70  1.1.1.11  christos   (struct bfd_link_info *, struct elf_link_hash_entry *) ATTRIBUTE_HIDDEN;
     71  1.1.1.10  christos extern bool _bfd_mips_elf_late_size_sections
     72  1.1.1.11  christos   (bfd *, struct bfd_link_info *) ATTRIBUTE_HIDDEN;
     73   1.1.1.8  christos extern int _bfd_mips_elf_relocate_section
     74       1.1     skrll   (bfd *, struct bfd_link_info *, bfd *, asection *, bfd_byte *,
     75  1.1.1.11  christos    Elf_Internal_Rela *, Elf_Internal_Sym *, asection **) ATTRIBUTE_HIDDEN;
     76   1.1.1.8  christos extern bool _bfd_mips_elf_finish_dynamic_symbol
     77       1.1     skrll   (bfd *, struct bfd_link_info *, struct elf_link_hash_entry *,
     78  1.1.1.11  christos    Elf_Internal_Sym *) ATTRIBUTE_HIDDEN;
     79   1.1.1.8  christos extern bool _bfd_mips_vxworks_finish_dynamic_symbol
     80       1.1     skrll   (bfd *, struct bfd_link_info *, struct elf_link_hash_entry *,
     81  1.1.1.11  christos    Elf_Internal_Sym *) ATTRIBUTE_HIDDEN;
     82   1.1.1.8  christos extern bool _bfd_mips_elf_finish_dynamic_sections
     83  1.1.1.11  christos   (bfd *, struct bfd_link_info *, bfd_byte *) ATTRIBUTE_HIDDEN;
     84   1.1.1.8  christos extern bool _bfd_mips_elf_sort_relocs_p
     85  1.1.1.11  christos   (asection *) ATTRIBUTE_HIDDEN;
     86   1.1.1.7  christos extern void _bfd_mips_final_write_processing
     87  1.1.1.11  christos   (bfd *) ATTRIBUTE_HIDDEN;
     88   1.1.1.8  christos extern bool _bfd_mips_elf_final_write_processing
     89  1.1.1.11  christos   (bfd *) ATTRIBUTE_HIDDEN;
     90       1.1     skrll extern int _bfd_mips_elf_additional_program_headers
     91  1.1.1.11  christos   (bfd *, struct bfd_link_info *) ATTRIBUTE_HIDDEN;
     92   1.1.1.8  christos extern bool _bfd_mips_elf_modify_segment_map
     93  1.1.1.11  christos   (bfd *, struct bfd_link_info *) ATTRIBUTE_HIDDEN;
     94       1.1     skrll extern asection * _bfd_mips_elf_gc_mark_hook
     95  1.1.1.11  christos   (asection *, struct bfd_link_info *, struct elf_reloc_cookie *,
     96  1.1.1.11  christos    struct elf_link_hash_entry *, unsigned int) ATTRIBUTE_HIDDEN;
     97       1.1     skrll extern void _bfd_mips_elf_copy_indirect_symbol
     98       1.1     skrll   (struct bfd_link_info *, struct elf_link_hash_entry *,
     99  1.1.1.11  christos    struct elf_link_hash_entry *) ATTRIBUTE_HIDDEN;
    100   1.1.1.7  christos extern void _bfd_mips_elf_hide_symbol
    101  1.1.1.11  christos   (struct bfd_link_info *, struct elf_link_hash_entry *, bool) ATTRIBUTE_HIDDEN;
    102   1.1.1.8  christos extern bool _bfd_mips_elf_ignore_discarded_relocs
    103  1.1.1.11  christos   (asection *) ATTRIBUTE_HIDDEN;
    104   1.1.1.8  christos extern bool _bfd_mips_elf_is_target_special_symbol
    105  1.1.1.11  christos   (bfd *abfd, asymbol *sym) ATTRIBUTE_HIDDEN;
    106  1.1.1.11  christos extern bool _bfd_mips_elf_finalize_section_relocs
    107  1.1.1.11  christos   (bfd *, asection *, arelent **, unsigned int) ATTRIBUTE_HIDDEN;
    108   1.1.1.8  christos extern bool _bfd_mips_elf_find_nearest_line
    109   1.1.1.4  christos   (bfd *, asymbol **, asection *, bfd_vma,
    110  1.1.1.11  christos    const char **, const char **, unsigned int *, unsigned int *)
    111  1.1.1.11  christos   ATTRIBUTE_HIDDEN;
    112   1.1.1.9  christos #define _bfd_mips_elf_find_nearest_line_with_alt \
    113   1.1.1.9  christos   _bfd_nosymbols_find_nearest_line_with_alt
    114   1.1.1.8  christos extern bool _bfd_mips_elf_find_inliner_info
    115  1.1.1.11  christos   (bfd *, const char **, const char **, unsigned int *) ATTRIBUTE_HIDDEN;
    116   1.1.1.8  christos extern bool _bfd_mips_elf_set_section_contents
    117  1.1.1.11  christos   (bfd *, asection *, const void *, file_ptr, bfd_size_type) ATTRIBUTE_HIDDEN;
    118       1.1     skrll extern bfd_byte *_bfd_elf_mips_get_relocated_section_contents
    119       1.1     skrll   (bfd *, struct bfd_link_info *, struct bfd_link_order *,
    120  1.1.1.11  christos    bfd_byte *, bool, asymbol **) ATTRIBUTE_HIDDEN;
    121   1.1.1.8  christos extern bool _bfd_mips_elf_relax_section
    122   1.1.1.3  christos   (bfd *abfd, asection *sec, struct bfd_link_info *link_info,
    123  1.1.1.11  christos    bool *again) ATTRIBUTE_HIDDEN;
    124       1.1     skrll extern struct bfd_link_hash_table *_bfd_mips_elf_link_hash_table_create
    125  1.1.1.11  christos   (bfd *) ATTRIBUTE_HIDDEN;
    126       1.1     skrll extern struct bfd_link_hash_table *_bfd_mips_vxworks_link_hash_table_create
    127  1.1.1.11  christos   (bfd *) ATTRIBUTE_HIDDEN;
    128   1.1.1.8  christos extern bool _bfd_mips_elf_final_link
    129  1.1.1.11  christos   (bfd *, struct bfd_link_info *) ATTRIBUTE_HIDDEN;
    130   1.1.1.8  christos extern bool _bfd_mips_elf_merge_private_bfd_data
    131  1.1.1.11  christos   (bfd *, struct bfd_link_info *) ATTRIBUTE_HIDDEN;
    132   1.1.1.8  christos extern bool _bfd_mips_elf_set_private_flags
    133  1.1.1.11  christos   (bfd *, flagword) ATTRIBUTE_HIDDEN;
    134   1.1.1.4  christos extern const char * _bfd_mips_fp_abi_string
    135  1.1.1.11  christos   (int) ATTRIBUTE_HIDDEN;
    136   1.1.1.8  christos extern bool _bfd_mips_elf_print_private_bfd_data
    137  1.1.1.11  christos   (bfd *, void *) ATTRIBUTE_HIDDEN;
    138   1.1.1.8  christos extern bool _bfd_mips_elf_discard_info
    139  1.1.1.11  christos   (bfd *, struct elf_reloc_cookie *, struct bfd_link_info *) ATTRIBUTE_HIDDEN;
    140   1.1.1.8  christos extern bool _bfd_mips_elf_write_section
    141  1.1.1.11  christos   (bfd *, struct bfd_link_info *, asection *, bfd_byte *) ATTRIBUTE_HIDDEN;
    142       1.1     skrll 
    143   1.1.1.8  christos extern bool _bfd_mips_elf_read_ecoff_info
    144  1.1.1.11  christos   (bfd *, asection *, struct ecoff_debug_info *) ATTRIBUTE_HIDDEN;
    145   1.1.1.3  christos extern void _bfd_mips_elf_reloc_unshuffle
    146  1.1.1.11  christos   (bfd *, int, bool, bfd_byte *) ATTRIBUTE_HIDDEN;
    147   1.1.1.3  christos extern void _bfd_mips_elf_reloc_shuffle
    148  1.1.1.11  christos   (bfd *, int, bool, bfd_byte *) ATTRIBUTE_HIDDEN;
    149   1.1.1.9  christos extern bool _bfd_mips_reloc_offset_in_range
    150  1.1.1.11  christos   (bfd *, asection *, arelent *, enum reloc_check) ATTRIBUTE_HIDDEN;
    151       1.1     skrll extern bfd_reloc_status_type _bfd_mips_elf_gprel16_with_gp
    152  1.1.1.11  christos   (bfd *, asymbol *, arelent *, asection *, bool, void *, bfd_vma)
    153  1.1.1.11  christos   ATTRIBUTE_HIDDEN;
    154       1.1     skrll extern bfd_reloc_status_type _bfd_mips_elf32_gprel16_reloc
    155  1.1.1.11  christos   (bfd *, arelent *, asymbol *, void *, asection *, bfd *, char **)
    156  1.1.1.11  christos   ATTRIBUTE_HIDDEN;
    157       1.1     skrll extern bfd_reloc_status_type _bfd_mips_elf_hi16_reloc
    158  1.1.1.11  christos   (bfd *, arelent *, asymbol *, void *, asection *, bfd *, char **)
    159  1.1.1.11  christos   ATTRIBUTE_HIDDEN;
    160       1.1     skrll extern bfd_reloc_status_type _bfd_mips_elf_got16_reloc
    161  1.1.1.11  christos   (bfd *, arelent *, asymbol *, void *, asection *, bfd *, char **)
    162  1.1.1.11  christos   ATTRIBUTE_HIDDEN;
    163       1.1     skrll extern bfd_reloc_status_type _bfd_mips_elf_lo16_reloc
    164  1.1.1.11  christos   (bfd *, arelent *, asymbol *, void *, asection *, bfd *, char **)
    165  1.1.1.11  christos   ATTRIBUTE_HIDDEN;
    166       1.1     skrll extern bfd_reloc_status_type _bfd_mips_elf_generic_reloc
    167  1.1.1.11  christos   (bfd *, arelent *, asymbol *, void *, asection *, bfd *, char **)
    168  1.1.1.11  christos   ATTRIBUTE_HIDDEN;
    169       1.1     skrll extern unsigned long _bfd_elf_mips_mach
    170       1.1     skrll   (flagword);
    171       1.1     skrll extern bfd_vma _bfd_mips_elf_sign_extend
    172  1.1.1.11  christos   (bfd_vma, int) ATTRIBUTE_HIDDEN;
    173       1.1     skrll extern void _bfd_mips_elf_merge_symbol_attribute
    174  1.1.1.11  christos   (struct elf_link_hash_entry *, unsigned int, bool, bool) ATTRIBUTE_HIDDEN;
    175  1.1.1.11  christos extern char *_bfd_mips_elf_get_target_dtag
    176  1.1.1.11  christos   (bfd_vma) ATTRIBUTE_HIDDEN;
    177   1.1.1.8  christos extern bool _bfd_mips_elf_ignore_undef_symbol
    178  1.1.1.11  christos   (struct elf_link_hash_entry *) ATTRIBUTE_HIDDEN;
    179       1.1     skrll extern void _bfd_mips_elf_use_plts_and_copy_relocs
    180       1.1     skrll   (struct bfd_link_info *);
    181   1.1.1.6  christos extern void _bfd_mips_elf_linker_flags
    182   1.1.1.8  christos   (struct bfd_link_info *, bool, bool, bool);
    183   1.1.1.7  christos extern void _bfd_mips_elf_compact_branches
    184   1.1.1.8  christos   (struct bfd_link_info *, bool);
    185   1.1.1.8  christos extern bool _bfd_mips_elf_init_stubs
    186       1.1     skrll   (struct bfd_link_info *,
    187       1.1     skrll    asection *(*) (const char *, asection *, asection *));
    188       1.1     skrll extern bfd_vma _bfd_mips_elf_plt_sym_val
    189  1.1.1.11  christos   (bfd_vma, const asection *, const arelent *rel) ATTRIBUTE_HIDDEN;
    190   1.1.1.4  christos extern long _bfd_mips_elf_get_synthetic_symtab
    191  1.1.1.11  christos   (bfd *, long, asymbol **, long, asymbol **, asymbol **) ATTRIBUTE_HIDDEN;
    192   1.1.1.8  christos extern bool _bfd_mips_elf_gc_mark_extra_sections
    193  1.1.1.11  christos   (struct bfd_link_info *, elf_gc_mark_hook_fn) ATTRIBUTE_HIDDEN;
    194   1.1.1.8  christos extern bool _bfd_mips_init_file_header
    195  1.1.1.11  christos   (bfd *abfd, struct bfd_link_info *link_info) ATTRIBUTE_HIDDEN;
    196       1.1     skrll 
    197  1.1.1.11  christos extern const struct bfd_elf_special_section
    198  1.1.1.11  christos   _bfd_mips_elf_special_sections [] ATTRIBUTE_HIDDEN;
    199       1.1     skrll 
    200  1.1.1.11  christos extern bool _bfd_mips_elf_common_definition
    201  1.1.1.11  christos   (Elf_Internal_Sym *) ATTRIBUTE_HIDDEN;
    202       1.1     skrll 
    203  1.1.1.11  christos extern int _bfd_mips_elf_compact_eh_encoding
    204  1.1.1.11  christos   (struct bfd_link_info *) ATTRIBUTE_HIDDEN;
    205  1.1.1.11  christos extern int _bfd_mips_elf_cant_unwind_opcode
    206  1.1.1.11  christos   (struct bfd_link_info *) ATTRIBUTE_HIDDEN;
    207   1.1.1.4  christos 
    208   1.1.1.7  christos extern void _bfd_mips_elf_record_xhash_symbol
    209  1.1.1.11  christos   (struct elf_link_hash_entry *h, bfd_vma xlat_loc) ATTRIBUTE_HIDDEN;
    210   1.1.1.7  christos 
    211   1.1.1.7  christos /* MIPS ABI flags data access.  For the disassembler.  */
    212   1.1.1.7  christos extern struct elf_internal_abiflags_v0 *bfd_mips_elf_get_abiflags (bfd *);
    213   1.1.1.7  christos 
    214   1.1.1.8  christos static inline bool
    215   1.1.1.2  christos gprel16_reloc_p (unsigned int r_type)
    216   1.1.1.2  christos {
    217   1.1.1.3  christos   return (r_type == R_MIPS_GPREL16
    218   1.1.1.3  christos 	  || r_type == R_MIPS16_GPREL
    219   1.1.1.3  christos 	  || r_type == R_MICROMIPS_GPREL16
    220   1.1.1.3  christos 	  || r_type == R_MICROMIPS_GPREL7_S2);
    221   1.1.1.3  christos }
    222   1.1.1.3  christos 
    223   1.1.1.8  christos static inline bool
    224   1.1.1.3  christos literal_reloc_p (int r_type)
    225   1.1.1.3  christos {
    226   1.1.1.3  christos   return r_type == R_MIPS_LITERAL || r_type == R_MICROMIPS_LITERAL;
    227   1.1.1.2  christos }
    228   1.1.1.2  christos 
    229       1.1     skrll #define elf_backend_common_definition   _bfd_mips_elf_common_definition
    230       1.1     skrll #define elf_backend_name_local_section_symbols \
    231       1.1     skrll   _bfd_mips_elf_name_local_section_symbols
    232       1.1     skrll #define elf_backend_special_sections _bfd_mips_elf_special_sections
    233       1.1     skrll #define elf_backend_eh_frame_address_size _bfd_mips_elf_eh_frame_address_size
    234       1.1     skrll #define elf_backend_merge_symbol_attribute  _bfd_mips_elf_merge_symbol_attribute
    235       1.1     skrll #define elf_backend_ignore_undef_symbol _bfd_mips_elf_ignore_undef_symbol
    236   1.1.1.7  christos #define elf_backend_init_file_header _bfd_mips_init_file_header
    237   1.1.1.4  christos #define elf_backend_compact_eh_encoding _bfd_mips_elf_compact_eh_encoding
    238   1.1.1.4  christos #define elf_backend_cant_unwind_opcode _bfd_mips_elf_cant_unwind_opcode
    239   1.1.1.7  christos #define elf_backend_record_xhash_symbol _bfd_mips_elf_record_xhash_symbol
    240   1.1.1.8  christos #define elf_backend_always_renumber_dynsyms true
    241