elf32-hppa.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /* ELF32/HPPA support
  2. This file contains ELF32/HPPA relocation support as specified
  3. in the Stratus FTX/Golf Object File Format (SED-1762) dated
  4. February 1994.
  5. Copyright (C) 1990-2015 Free Software Foundation, Inc.
  6. Written by:
  7. Center for Software Science
  8. Department of Computer Science
  9. University of Utah
  10. This file is part of BFD, the Binary File Descriptor library.
  11. This program is free software; you can redistribute it and/or modify
  12. it under the terms of the GNU General Public License as published by
  13. the Free Software Foundation; either version 3 of the License, or
  14. (at your option) any later version.
  15. This program is distributed in the hope that it will be useful,
  16. but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. GNU General Public License for more details.
  19. You should have received a copy of the GNU General Public License
  20. along with this program; if not, write to the Free Software
  21. Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
  22. MA 02110-1301, USA. */
  23. #ifndef _ELF32_HPPA_H
  24. #define _ELF32_HPPA_H
  25. #include "elf-bfd.h"
  26. #include "libhppa.h"
  27. #include "elf/hppa.h"
  28. int elf32_hppa_setup_section_lists
  29. (bfd *, struct bfd_link_info *);
  30. void elf32_hppa_next_input_section
  31. (struct bfd_link_info *, asection *);
  32. bfd_boolean elf32_hppa_size_stubs
  33. (bfd *, bfd *, struct bfd_link_info *, bfd_boolean, bfd_signed_vma,
  34. asection * (*) (const char *, asection *), void (*) (void));
  35. bfd_boolean elf32_hppa_set_gp
  36. (bfd *, struct bfd_link_info *);
  37. bfd_boolean elf32_hppa_build_stubs
  38. (struct bfd_link_info *);
  39. elf_hppa_reloc_type elf32_hppa_reloc_final_type
  40. (bfd *, elf_hppa_reloc_type, int, unsigned int);
  41. extern elf_hppa_reloc_type ** _bfd_elf32_hppa_gen_reloc_type
  42. (bfd *, elf_hppa_reloc_type, int, unsigned int, int, asymbol *);
  43. /* Define groups of basic relocations. FIXME: These should
  44. be the only basic relocations created by GAS. The rest
  45. should be internal to the BFD backend.
  46. The idea is both SOM and ELF define these basic relocation
  47. types so they map into a SOM or ELF specific relocation
  48. as appropriate. This allows GAS to share much more code
  49. between the two target object formats. */
  50. #define R_HPPA_NONE R_PARISC_NONE
  51. #define R_HPPA R_PARISC_DIR32
  52. #define R_HPPA_GOTOFF R_PARISC_DPREL21L
  53. #define R_HPPA_PCREL_CALL R_PARISC_PCREL21L
  54. #define R_HPPA_ABS_CALL R_PARISC_DIR17F
  55. #define R_HPPA_COMPLEX R_PARISC_UNIMPLEMENTED
  56. #endif /* _ELF32_HPPA_H */