Commit | Line | Data |
---|---|---|
15bda425 JL |
1 | /* ELF64/HPPA support |
2 | ||
3 | Copyright (C) 1999, 2000 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 | extern elf_hppa_reloc_type ** _bfd_elf64_hppa_gen_reloc_type | |
edd21aca | 29 | PARAMS ((bfd *, elf_hppa_reloc_type, int, unsigned int, int, asymbol *)); |
15bda425 JL |
30 | |
31 | /* Define groups of basic relocations. FIXME: These should | |
32 | be the only basic relocations created by GAS. The rest | |
33 | should be internal to the BFD backend. | |
34 | ||
35 | The idea is both SOM and ELF define these basic relocation | |
36 | types so they map into a SOM or ELF specific relocation | |
37 | as appropriate. This allows GAS to share much more code | |
38 | between the two target object formats. */ | |
39 | ||
40 | #define R_HPPA_NONE R_PARISC_NONE | |
41 | #define R_HPPA R_PARISC_DIR64 | |
42 | #define R_HPPA_GOTOFF R_PARISC_DLTREL21L | |
43 | #define R_HPPA_PCREL_CALL R_PARISC_PCREL21L | |
44 | #define R_HPPA_ABS_CALL R_PARISC_DIR17F | |
45 | #define R_HPPA_COMPLEX R_PARISC_UNIMPLEMENTED | |
46 | ||
47 | #endif /* _ELF64_HPPA_H */ |