hp300hpux.h 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. /* Special version of <a.out.h> for use under HP-UX.
  2. Copyright (C) 1988-2015 Free Software Foundation, Inc.
  3. This program is free software; you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation; either version 3 of the License, or
  6. (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program; if not, write to the Free Software
  13. Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
  14. MA 02110-1301, USA. */
  15. struct hp300hpux_exec_bytes
  16. {
  17. unsigned char e_info[4]; /* a_machtype/a_magic */
  18. unsigned char e_spare1[4];
  19. unsigned char e_spare2[4];
  20. unsigned char e_text[4]; /* length of text, in bytes */
  21. unsigned char e_data[4]; /* length of data, in bytes */
  22. unsigned char e_bss[4]; /* length of uninitialized data area , in bytes */
  23. unsigned char e_trsize[4]; /* length of relocation info for text, in bytes*/
  24. unsigned char e_drsize[4]; /* length of relocation info for data, in bytes*/
  25. unsigned char e_passize[4];/* HP = pascal interface size */
  26. unsigned char e_syms[4]; /* HP = symbol table size */
  27. unsigned char e_spare5[4]; /* HP = debug name table size */
  28. unsigned char e_entry[4]; /* start address */
  29. unsigned char e_spare6[4]; /* HP = source line table size */
  30. unsigned char e_supsize[4];/* HP = value table size */
  31. unsigned char e_drelocs[4];
  32. unsigned char e_extension[4]; /* file offset of extension */
  33. };
  34. #define EXEC_BYTES_SIZE 64
  35. struct hp300hpux_nlist_bytes
  36. {
  37. unsigned char e_value[4];
  38. unsigned char e_type[1];
  39. unsigned char e_length[1]; /* length of ascii symbol name */
  40. unsigned char e_almod[2]; /* alignment mod */
  41. unsigned char e_shlib[2]; /* info about dynamic linking */
  42. };
  43. #define EXTERNAL_NLIST_SIZE 10
  44. struct hp300hpux_reloc
  45. {
  46. unsigned char r_address[4];/* offset of of data to relocate */
  47. unsigned char r_index[2]; /* symbol table index of symbol */
  48. unsigned char r_type[1]; /* relocation type */
  49. unsigned char r_length[1]; /* length of item to reloc */
  50. };
  51. struct hp300hpux_header_extension
  52. {
  53. unsigned char e_syms[4];
  54. unsigned char unique_headers[12*4];
  55. unsigned char e_header[2]; /* type of header */
  56. unsigned char e_version[2]; /* version */
  57. unsigned char e_size[4]; /* bytes following*/
  58. unsigned char e_extension[4];/* file offset of next extension */
  59. };
  60. #define EXTERNAL_EXTENSION_HEADER_SIZE (16*4)
  61. /* hpux separates object files (0x106) and impure executables (0x107) */
  62. /* but the bfd code does not distinguish between them. Since we want to*/
  63. /* read hpux .o files, we add an special define and use it below in */
  64. /* offset and address calculations. */
  65. #define HPUX_DOT_O_MAGIC 0x106
  66. #define OMAGIC 0x107 /* object file or impure executable. */
  67. #define NMAGIC 0x108 /* Code indicating pure executable. */
  68. #define ZMAGIC 0x10B /* demand-paged executable. */
  69. #define N_HEADER_IN_TEXT(x) 0
  70. #if 0 /* libaout.h only uses the lower 8 bits */
  71. #define HP98x6_ID 0x20A
  72. #define HP9000S200_ID 0x20C
  73. #endif
  74. #define HP98x6_ID 0x0A
  75. #define HP9000S200_ID 0x0C
  76. #define N_BADMAG(x) ((_N_BADMAG (x)) || (_N_BADMACH (x)))
  77. #define N_DATADDR(x) \
  78. ((N_MAGIC (x) == OMAGIC || N_MAGIC (x) == HPUX_DOT_O_MAGIC) \
  79. ? (N_TXTADDR (x) + N_TXTSIZE (x)) \
  80. : (N_SEGSIZE (x) + ((N_TXTADDR (x) + N_TXTSIZE (x) - 1) \
  81. & ~ (bfd_vma) (N_SEGSIZE (x) - 1))))
  82. #define _N_BADMACH(x) \
  83. (((N_MACHTYPE (x)) != HP9000S200_ID) && ((N_MACHTYPE (x)) != HP98x6_ID))
  84. #define _N_BADMAG(x) (N_MAGIC(x) != HPUX_DOT_O_MAGIC \
  85. && N_MAGIC(x) != OMAGIC \
  86. && N_MAGIC(x) != NMAGIC \
  87. && N_MAGIC(x) != ZMAGIC )
  88. #undef _N_HDROFF
  89. #define _N_HDROFF(x) (SEGMENT_SIZE - (sizeof (struct exec)))
  90. #undef N_DATOFF
  91. #undef N_PASOFF
  92. #undef N_SYMOFF
  93. #undef N_SUPOFF
  94. #undef N_TRELOFF
  95. #undef N_DRELOFF
  96. #undef N_STROFF
  97. #define N_DATOFF(x) ( N_TXTOFF(x) + N_TXTSIZE(x) )
  98. #define N_PASOFF(x) ( N_DATOFF(x) + (x).a_data)
  99. #define N_SYMOFF(x) ( N_PASOFF(x) /* + (x).a_passize*/ )
  100. #define N_SUPOFF(x) ( N_SYMOFF(x) + (x).a_syms )
  101. #define N_TRELOFF(x) ( N_SUPOFF(x) /* + 0 (x).a_supsize*/ )
  102. #define N_DRELOFF(x) ( N_TRELOFF(x) + (x).a_trsize )
  103. #define N_EXTHOFF(x) ( N_DRELOFF(x) /* + 0 (x).a_drsize */)
  104. #define N_STROFF(x) ( 0 /* no string table */ )
  105. /* use these when the file has gnu symbol tables */
  106. #define N_GNU_TRELOFF(x) (N_DATOFF(x) + (x).a_data)
  107. #define N_GNU_DRELOFF(x) (N_GNU_TRELOFF(x) + (x).a_trsize)
  108. #define N_GNU_SYMOFF(x) (N_GNU_DRELOFF(x) + (x).a_drsize)
  109. #define TARGET_PAGE_SIZE 0x1000
  110. #define SEGMENT_SIZE 0x1000
  111. #define TEXT_START_ADDR 0