1/* ELF64/HPPA support
2
3   Copyright 1999, 2000, 2002 Free Software Foundation, Inc.
4
5This file is part of BFD, the Binary File Descriptor library.
6
7This program is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 2 of the License, or
10(at your option) any later version.
11
12This program is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with this program; if not, write to the Free Software
19Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, 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
28elf_hppa_reloc_type elf64_hppa_reloc_final_type
29  PARAMS ((bfd *, elf_hppa_reloc_type, int, unsigned int));
30
31extern 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 */
51