elf32-hppa.h 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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-2022 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. #ifdef __cplusplus
  29. extern "C" {
  30. #endif
  31. void elf32_hppa_init_stub_bfd
  32. (bfd *, struct bfd_link_info *);
  33. int elf32_hppa_setup_section_lists
  34. (bfd *, struct bfd_link_info *);
  35. void elf32_hppa_next_input_section
  36. (struct bfd_link_info *, asection *);
  37. bool elf32_hppa_size_stubs
  38. (bfd *, bfd *, struct bfd_link_info *, bool, bfd_signed_vma,
  39. asection * (*) (const char *, asection *), void (*) (void));
  40. bool elf32_hppa_set_gp
  41. (bfd *, struct bfd_link_info *);
  42. bool elf32_hppa_build_stubs
  43. (struct bfd_link_info *);
  44. elf_hppa_reloc_type elf32_hppa_reloc_final_type
  45. (bfd *, elf_hppa_reloc_type, int, unsigned int);
  46. extern elf_hppa_reloc_type ** _bfd_elf32_hppa_gen_reloc_type
  47. (bfd *, elf_hppa_reloc_type, int, unsigned int, int, asymbol *);
  48. /* Define groups of basic relocations. FIXME: These should
  49. be the only basic relocations created by GAS. The rest
  50. should be internal to the BFD backend.
  51. The idea is both SOM and ELF define these basic relocation
  52. types so they map into a SOM or ELF specific relocation
  53. as appropriate. This allows GAS to share much more code
  54. between the two target object formats. */
  55. #define R_HPPA_NONE R_PARISC_NONE
  56. #define R_HPPA R_PARISC_DIR32
  57. #define R_HPPA_GOTOFF R_PARISC_DPREL21L
  58. #define R_HPPA_PCREL_CALL R_PARISC_PCREL21L
  59. #define R_HPPA_ABS_CALL R_PARISC_DIR17F
  60. #define R_HPPA_COMPLEX R_PARISC_UNIMPLEMENTED
  61. #ifdef __cplusplus
  62. }
  63. #endif
  64. #endif /* _ELF32_HPPA_H */