| 1 | /* ELF64/HPPA support | 
|---|
| 2 |  | 
|---|
| 3 | Copyright 1999, 2000, 2002 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 2 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */ | 
|---|
| 20 |  | 
|---|
| 21 | #ifndef _ELF64_HPPA_H | 
|---|
| 22 | #define _ELF64_HPPA_H | 
|---|
| 23 |  | 
|---|
| 24 | #include "elf-bfd.h" | 
|---|
| 25 | #include "libhppa.h" | 
|---|
| 26 | #include "elf/hppa.h" | 
|---|
| 27 |  | 
|---|
| 28 | elf_hppa_reloc_type elf64_hppa_reloc_final_type | 
|---|
| 29 | PARAMS ((bfd *, elf_hppa_reloc_type, int, unsigned int)); | 
|---|
| 30 |  | 
|---|
| 31 | extern elf_hppa_reloc_type ** _bfd_elf64_hppa_gen_reloc_type | 
|---|
| 32 | PARAMS ((bfd *, elf_hppa_reloc_type, int, unsigned int, int, asymbol *)); | 
|---|
| 33 |  | 
|---|
| 34 | /* Define groups of basic relocations.  FIXME:  These should | 
|---|
| 35 | be the only basic relocations created by GAS.  The rest | 
|---|
| 36 | should be internal to the BFD backend. | 
|---|
| 37 |  | 
|---|
| 38 | The idea is both SOM and ELF define these basic relocation | 
|---|
| 39 | types so they map into a SOM or ELF specific relocation | 
|---|
| 40 | as appropriate.  This allows GAS to share much more code | 
|---|
| 41 | between the two target object formats.  */ | 
|---|
| 42 |  | 
|---|
| 43 | #define R_HPPA_NONE                     R_PARISC_NONE | 
|---|
| 44 | #define R_HPPA                          R_PARISC_DIR64 | 
|---|
| 45 | #define R_HPPA_GOTOFF                   R_PARISC_DLTREL21L | 
|---|
| 46 | #define R_HPPA_PCREL_CALL               R_PARISC_PCREL21L | 
|---|
| 47 | #define R_HPPA_ABS_CALL                 R_PARISC_DIR17F | 
|---|
| 48 | #define R_HPPA_COMPLEX                  R_PARISC_UNIMPLEMENTED | 
|---|
| 49 |  | 
|---|
| 50 | #endif /* _ELF64_HPPA_H */ | 
|---|