Home | History | Annotate | Line # | Download | only in bfd
      1 /* ELF64/HPPA support
      2 
      3    Copyright (C) 1999-2024 Free Software Foundation, Inc.
      4 
      5    This file is part of BFD, the Binary File Descriptor library.
      6 
      7    This program is free software; you can redistribute it and/or modify
      8    it under the terms of the GNU General Public License as published by
      9    the Free Software Foundation; either version 3 of the License, or
     10    (at your option) any later version.
     11 
     12    This program is distributed in the hope that it will be useful,
     13    but WITHOUT ANY WARRANTY; without even the implied warranty of
     14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     15    GNU General Public License for more details.
     16 
     17    You should have received a copy of the GNU General Public License
     18    along with this program; if not, write to the Free Software
     19    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
     20    MA 02110-1301, USA.  */
     21 
     22 #ifndef _ELF64_HPPA_H
     23 #define _ELF64_HPPA_H
     24 
     25 #include "elf-bfd.h"
     26 #include "libhppa.h"
     27 #include "elf/hppa.h"
     28 
     29 extern elf_hppa_reloc_type elf64_hppa_reloc_final_type
     30   (bfd *, elf_hppa_reloc_type, int, unsigned int);
     31 
     32 extern elf_hppa_reloc_type ** _bfd_elf64_hppa_gen_reloc_type
     33   (bfd *, elf_hppa_reloc_type, int, unsigned int, int, asymbol *);
     34 
     35 /* Define groups of basic relocations.  FIXME:  These should
     36    be the only basic relocations created by GAS.  The rest
     37    should be internal to the BFD backend.
     38 
     39    The idea is both SOM and ELF define these basic relocation
     40    types so they map into a SOM or ELF specific relocation
     41    as appropriate.  This allows GAS to share much more code
     42    between the two target object formats.  */
     43 
     44 #define R_HPPA_NONE			R_PARISC_NONE
     45 #define R_HPPA				R_PARISC_DIR64
     46 #define R_HPPA_GOTOFF			R_PARISC_DLTREL21L
     47 #define R_HPPA_PCREL_CALL		R_PARISC_PCREL21L
     48 #define R_HPPA_ABS_CALL			R_PARISC_DIR17F
     49 #define R_HPPA_COMPLEX			R_PARISC_UNIMPLEMENTED
     50 
     51 #endif /* _ELF64_HPPA_H */
     52