mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2960 lines
115 KiB

  1. # --- ROCK-COPYRIGHT-NOTE-BEGIN ---
  2. #
  3. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  4. # Please add additional copyright information _after_ the line containing
  5. # the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
  6. # the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
  7. #
  8. # ROCK Linux: rock-src/package/base/dietlibc/elf_h_update.patch
  9. # ROCK Linux is Copyright (C) 1998 - 2003 Clifford Wolf
  10. #
  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 2 of the License, or
  14. # (at your option) any later version. A copy of the GNU General Public
  15. # License can be found at Documentation/COPYING.
  16. #
  17. # Many people helped and are helping developing ROCK Linux. Please
  18. # have a look at http://www.rocklinux.org/ and the Documentation/TEAM
  19. # file for details.
  20. #
  21. # --- ROCK-COPYRIGHT-NOTE-END ---
  22. ===================================================================
  23. RCS file: /cvs/linuxtv/dietlibc/include/elf.h,v
  24. retrieving revision 1.7
  25. retrieving revision 1.11
  26. diff -u -r1.7 -r1.11
  27. --- dietlibc/include/elf.h 2002/02/21 11:26:31 1.7
  28. +++ dietlibc/include/elf.h 2003/10/10 13:41:13 1.11
  29. @@ -1,382 +1,1830 @@
  30. #ifndef _ELF_H
  31. -#define _ELF_H
  32. +#define _ELF_H 1
  33. +
  34. +/* Standard ELF types. */
  35. #include <inttypes.h>
  36. -/* 32-bit ELF base types. */
  37. -typedef uint32_t Elf32_Addr;
  38. -typedef uint16_t Elf32_Half;
  39. -typedef uint32_t Elf32_Off;
  40. -typedef int32_t Elf32_Sword;
  41. -typedef uint32_t Elf32_Word;
  42. -
  43. -/* 64-bit ELF base types. */
  44. -typedef uint64_t Elf64_Addr;
  45. -typedef uint16_t Elf64_Half;
  46. -typedef int16_t Elf64_SHalf;
  47. -typedef uint64_t Elf64_Off;
  48. -typedef int32_t Elf64_Sword;
  49. -typedef uint32_t Elf64_Word;
  50. -typedef uint64_t Elf64_Xword;
  51. -typedef int64_t Elf64_Sxword;
  52. -
  53. -/* These constants are for the segment types stored in the image headers */
  54. -#define PT_NULL 0
  55. -#define PT_LOAD 1
  56. -#define PT_DYNAMIC 2
  57. -#define PT_INTERP 3
  58. -#define PT_NOTE 4
  59. -#define PT_SHLIB 5
  60. -#define PT_PHDR 6
  61. -#define PT_LOPROC 0x70000000
  62. -#define PT_HIPROC 0x7fffffff
  63. -#define PT_MIPS_REGINFO 0x70000000
  64. -
  65. -/* Flags in the e_flags field of the header */
  66. -#define EF_MIPS_NOREORDER 0x00000001
  67. -#define EF_MIPS_PIC 0x00000002
  68. -#define EF_MIPS_CPIC 0x00000004
  69. -#define EF_MIPS_ARCH 0xf0000000
  70. -
  71. -/* These constants define the different elf file types */
  72. -#define ET_NONE 0
  73. -#define ET_REL 1
  74. -#define ET_EXEC 2
  75. -#define ET_DYN 3
  76. -#define ET_CORE 4
  77. -#define ET_LOPROC 0xff00
  78. -#define ET_HIPROC 0xffff
  79. -
  80. -/* These constants define the various ELF target machines */
  81. -#define EM_NONE 0
  82. -#define EM_M32 1
  83. -#define EM_SPARC 2
  84. -#define EM_386 3
  85. -#define EM_68K 4
  86. -#define EM_88K 5
  87. -#define EM_486 6 /* Perhaps disused */
  88. -#define EM_860 7
  89. -
  90. -#define EM_MIPS 8 /* MIPS R3000 (officially, big-endian only) */
  91. -#define EM_MIPS_RS4_BE 10 /* MIPS R4000 big-endian */
  92. -
  93. -#define EM_PARISC 15 /* HPPA */
  94. -#define EM_SPARC32PLUS 18 /* Sun's "v8plus" */
  95. -#define EM_PPC 20 /* PowerPC */
  96. -#define EM_S390 22 /* IBM S/390 */
  97. -
  98. -#define EM_ARM 40 /* ARM */
  99. -#define EM_SH 42 /* SuperH */
  100. -#define EM_SPARCV9 43 /* SPARC v9 64-bit */
  101. -#define EM_IA_64 50 /* HP/Intel IA-64 */
  102. -#define EM_X8664 62 /* AMD x86-64 */
  103. -#define EM_CRIS 76 /* Axis Communications 32-bit embedded processor */
  104. -
  105. -/*
  106. - * This is an interim value that we will use until the committee comes
  107. - * up with a final number.
  108. - */
  109. +__BEGIN_DECLS
  110. +
  111. +/* Type for a 16-bit quantity. */
  112. +typedef uint16_t Elf32_Half;
  113. +typedef uint16_t Elf64_Half;
  114. +
  115. +/* Types for signed and unsigned 32-bit quantities. */
  116. +typedef uint32_t Elf32_Word;
  117. +typedef int32_t Elf32_Sword;
  118. +typedef uint32_t Elf64_Word;
  119. +typedef int32_t Elf64_Sword;
  120. +
  121. +/* Types for signed and unsigned 64-bit quantities. */
  122. +typedef uint64_t Elf32_Xword;
  123. +typedef int64_t Elf32_Sxword;
  124. +typedef uint64_t Elf64_Xword;
  125. +typedef int64_t Elf64_Sxword;
  126. +
  127. +/* Type of addresses. */
  128. +typedef uint32_t Elf32_Addr;
  129. +typedef uint64_t Elf64_Addr;
  130. +
  131. +/* Type of file offsets. */
  132. +typedef uint32_t Elf32_Off;
  133. +typedef uint64_t Elf64_Off;
  134. +
  135. +/* Type for section indices, which are 16-bit quantities. */
  136. +typedef uint16_t Elf32_Section;
  137. +typedef uint16_t Elf64_Section;
  138. +
  139. +/* Type for version symbol information. */
  140. +typedef Elf32_Half Elf32_Versym;
  141. +typedef Elf64_Half Elf64_Versym;
  142. +
  143. +
  144. +/* The ELF file header. This appears at the start of every ELF file. */
  145. +
  146. +#define EI_NIDENT (16)
  147. +
  148. +typedef struct
  149. +{
  150. + unsigned char e_ident[EI_NIDENT]; /* Magic number and other info */
  151. + Elf32_Half e_type; /* Object file type */
  152. + Elf32_Half e_machine; /* Architecture */
  153. + Elf32_Word e_version; /* Object file version */
  154. + Elf32_Addr e_entry; /* Entry point virtual address */
  155. + Elf32_Off e_phoff; /* Program header table file offset */
  156. + Elf32_Off e_shoff; /* Section header table file offset */
  157. + Elf32_Word e_flags; /* Processor-specific flags */
  158. + Elf32_Half e_ehsize; /* ELF header size in bytes */
  159. + Elf32_Half e_phentsize; /* Program header table entry size */
  160. + Elf32_Half e_phnum; /* Program header table entry count */
  161. + Elf32_Half e_shentsize; /* Section header table entry size */
  162. + Elf32_Half e_shnum; /* Section header table entry count */
  163. + Elf32_Half e_shstrndx; /* Section header string table index */
  164. +} Elf32_Ehdr;
  165. +
  166. +typedef struct
  167. +{
  168. + unsigned char e_ident[EI_NIDENT]; /* Magic number and other info */
  169. + Elf64_Half e_type; /* Object file type */
  170. + Elf64_Half e_machine; /* Architecture */
  171. + Elf64_Word e_version; /* Object file version */
  172. + Elf64_Addr e_entry; /* Entry point virtual address */
  173. + Elf64_Off e_phoff; /* Program header table file offset */
  174. + Elf64_Off e_shoff; /* Section header table file offset */
  175. + Elf64_Word e_flags; /* Processor-specific flags */
  176. + Elf64_Half e_ehsize; /* ELF header size in bytes */
  177. + Elf64_Half e_phentsize; /* Program header table entry size */
  178. + Elf64_Half e_phnum; /* Program header table entry count */
  179. + Elf64_Half e_shentsize; /* Section header table entry size */
  180. + Elf64_Half e_shnum; /* Section header table entry count */
  181. + Elf64_Half e_shstrndx; /* Section header string table index */
  182. +} Elf64_Ehdr;
  183. +
  184. +/* Fields in the e_ident array. The EI_* macros are indices into the
  185. + array. The macros under each EI_* macro are the values the byte
  186. + may have. */
  187. +
  188. +#define EI_MAG0 0 /* File identification byte 0 index */
  189. +#define ELFMAG0 0x7f /* Magic number byte 0 */
  190. +
  191. +#define EI_MAG1 1 /* File identification byte 1 index */
  192. +#define ELFMAG1 'E' /* Magic number byte 1 */
  193. +
  194. +#define EI_MAG2 2 /* File identification byte 2 index */
  195. +#define ELFMAG2 'L' /* Magic number byte 2 */
  196. +
  197. +#define EI_MAG3 3 /* File identification byte 3 index */
  198. +#define ELFMAG3 'F' /* Magic number byte 3 */
  199. +
  200. +/* Conglomeration of the identification bytes, for easy testing as a word. */
  201. +#define ELFMAG "\177ELF"
  202. +#define SELFMAG 4
  203. +
  204. +#define EI_CLASS 4 /* File class byte index */
  205. +#define ELFCLASSNONE 0 /* Invalid class */
  206. +#define ELFCLASS32 1 /* 32-bit objects */
  207. +#define ELFCLASS64 2 /* 64-bit objects */
  208. +#define ELFCLASSNUM 3
  209. +
  210. +#define EI_DATA 5 /* Data encoding byte index */
  211. +#define ELFDATANONE 0 /* Invalid data encoding */
  212. +#define ELFDATA2LSB 1 /* 2's complement, little endian */
  213. +#define ELFDATA2MSB 2 /* 2's complement, big endian */
  214. +#define ELFDATANUM 3
  215. +
  216. +#define EI_VERSION 6 /* File version byte index */
  217. + /* Value must be EV_CURRENT */
  218. +
  219. +#define EI_OSABI 7 /* OS ABI identification */
  220. +#define ELFOSABI_NONE 0 /* UNIX System V ABI */
  221. +#define ELFOSABI_SYSV 0 /* Alias. */
  222. +#define ELFOSABI_HPUX 1 /* HP-UX */
  223. +#define ELFOSABI_NETBSD 2 /* NetBSD. */
  224. +#define ELFOSABI_LINUX 3 /* Linux. */
  225. +#define ELFOSABI_SOLARIS 6 /* Sun Solaris. */
  226. +#define ELFOSABI_AIX 7 /* IBM AIX. */
  227. +#define ELFOSABI_IRIX 8 /* SGI Irix. */
  228. +#define ELFOSABI_FREEBSD 9 /* FreeBSD. */
  229. +#define ELFOSABI_TRU64 10 /* Compaq TRU64 UNIX. */
  230. +#define ELFOSABI_MODESTO 11 /* Novell Modesto. */
  231. +#define ELFOSABI_OPENBSD 12 /* OpenBSD. */
  232. +#define ELFOSABI_ARM 97 /* ARM */
  233. +#define ELFOSABI_STANDALONE 255 /* Standalone (embedded) application */
  234. +
  235. +#define EI_ABIVERSION 8 /* ABI version */
  236. +
  237. +#define EI_PAD 9 /* Byte index of padding bytes */
  238. +
  239. +/* Legal values for e_type (object file type). */
  240. +
  241. +#define ET_NONE 0 /* No file type */
  242. +#define ET_REL 1 /* Relocatable file */
  243. +#define ET_EXEC 2 /* Executable file */
  244. +#define ET_DYN 3 /* Shared object file */
  245. +#define ET_CORE 4 /* Core file */
  246. +#define ET_NUM 5 /* Number of defined types */
  247. +#define ET_LOOS 0xfe00 /* OS-specific range start */
  248. +#define ET_HIOS 0xfeff /* OS-specific range end */
  249. +#define ET_LOPROC 0xff00 /* Processor-specific range start */
  250. +#define ET_HIPROC 0xffff /* Processor-specific range end */
  251. +
  252. +/* Legal values for e_machine (architecture). */
  253. +
  254. +#define EM_NONE 0 /* No machine */
  255. +#define EM_M32 1 /* AT&T WE 32100 */
  256. +#define EM_SPARC 2 /* SUN SPARC */
  257. +#define EM_386 3 /* Intel 80386 */
  258. +#define EM_68K 4 /* Motorola m68k family */
  259. +#define EM_88K 5 /* Motorola m88k family */
  260. +#define EM_860 7 /* Intel 80860 */
  261. +#define EM_MIPS 8 /* MIPS R3000 big-endian */
  262. +#define EM_S370 9 /* IBM System/370 */
  263. +#define EM_MIPS_RS3_LE 10 /* MIPS R3000 little-endian */
  264. +
  265. +#define EM_PARISC 15 /* HPPA */
  266. +#define EM_VPP500 17 /* Fujitsu VPP500 */
  267. +#define EM_SPARC32PLUS 18 /* Sun's "v8plus" */
  268. +#define EM_960 19 /* Intel 80960 */
  269. +#define EM_PPC 20 /* PowerPC */
  270. +#define EM_PPC64 21 /* PowerPC 64-bit */
  271. +#define EM_S390 22 /* IBM S390 */
  272. +
  273. +#define EM_V800 36 /* NEC V800 series */
  274. +#define EM_FR20 37 /* Fujitsu FR20 */
  275. +#define EM_RH32 38 /* TRW RH-32 */
  276. +#define EM_RCE 39 /* Motorola RCE */
  277. +#define EM_ARM 40 /* ARM */
  278. +#define EM_FAKE_ALPHA 41 /* Digital Alpha */
  279. +#define EM_SH 42 /* Hitachi SH */
  280. +#define EM_SPARCV9 43 /* SPARC v9 64-bit */
  281. +#define EM_TRICORE 44 /* Siemens Tricore */
  282. +#define EM_ARC 45 /* Argonaut RISC Core */
  283. +#define EM_H8_300 46 /* Hitachi H8/300 */
  284. +#define EM_H8_300H 47 /* Hitachi H8/300H */
  285. +#define EM_H8S 48 /* Hitachi H8S */
  286. +#define EM_H8_500 49 /* Hitachi H8/500 */
  287. +#define EM_IA_64 50 /* Intel Merced */
  288. +#define EM_MIPS_X 51 /* Stanford MIPS-X */
  289. +#define EM_COLDFIRE 52 /* Motorola Coldfire */
  290. +#define EM_68HC12 53 /* Motorola M68HC12 */
  291. +#define EM_MMA 54 /* Fujitsu MMA Multimedia Accelerator*/
  292. +#define EM_PCP 55 /* Siemens PCP */
  293. +#define EM_NCPU 56 /* Sony nCPU embeeded RISC */
  294. +#define EM_NDR1 57 /* Denso NDR1 microprocessor */
  295. +#define EM_STARCORE 58 /* Motorola Start*Core processor */
  296. +#define EM_ME16 59 /* Toyota ME16 processor */
  297. +#define EM_ST100 60 /* STMicroelectronic ST100 processor */
  298. +#define EM_TINYJ 61 /* Advanced Logic Corp. Tinyj emb.fam*/
  299. +#define EM_X86_64 62 /* AMD x86-64 architecture */
  300. +#define EM_PDSP 63 /* Sony DSP Processor */
  301. +
  302. +#define EM_FX66 66 /* Siemens FX66 microcontroller */
  303. +#define EM_ST9PLUS 67 /* STMicroelectronics ST9+ 8/16 mc */
  304. +#define EM_ST7 68 /* STmicroelectronics ST7 8 bit mc */
  305. +#define EM_68HC16 69 /* Motorola MC68HC16 microcontroller */
  306. +#define EM_68HC11 70 /* Motorola MC68HC11 microcontroller */
  307. +#define EM_68HC08 71 /* Motorola MC68HC08 microcontroller */
  308. +#define EM_68HC05 72 /* Motorola MC68HC05 microcontroller */
  309. +#define EM_SVX 73 /* Silicon Graphics SVx */
  310. +#define EM_ST19 74 /* STMicroelectronics ST19 8 bit mc */
  311. +#define EM_VAX 75 /* Digital VAX */
  312. +#define EM_CRIS 76 /* Axis Communications 32-bit embedded processor */
  313. +#define EM_JAVELIN 77 /* Infineon Technologies 32-bit embedded processor */
  314. +#define EM_FIREPATH 78 /* Element 14 64-bit DSP Processor */
  315. +#define EM_ZSP 79 /* LSI Logic 16-bit DSP Processor */
  316. +#define EM_MMIX 80 /* Donald Knuth's educational 64-bit processor */
  317. +#define EM_HUANY 81 /* Harvard University machine-independent object files */
  318. +#define EM_PRISM 82 /* SiTera Prism */
  319. +#define EM_AVR 83 /* Atmel AVR 8-bit microcontroller */
  320. +#define EM_FR30 84 /* Fujitsu FR30 */
  321. +#define EM_D10V 85 /* Mitsubishi D10V */
  322. +#define EM_D30V 86 /* Mitsubishi D30V */
  323. +#define EM_V850 87 /* NEC v850 */
  324. +#define EM_M32R 88 /* Mitsubishi M32R */
  325. +#define EM_MN10300 89 /* Matsushita MN10300 */
  326. +#define EM_MN10200 90 /* Matsushita MN10200 */
  327. +#define EM_PJ 91 /* picoJava */
  328. +#define EM_OPENRISC 92 /* OpenRISC 32-bit embedded processor */
  329. +#define EM_ARC_A5 93 /* ARC Cores Tangent-A5 */
  330. +#define EM_XTENSA 94 /* Tensilica Xtensa Architecture */
  331. +#define EM_NUM 95
  332. +
  333. +/* If it is necessary to assign new unofficial EM_* values, please
  334. + pick large random numbers (0x8523, 0xa7f2, etc.) to minimize the
  335. + chances of collision with official or non-GNU unofficial values. */
  336. +
  337. #define EM_ALPHA 0x9026
  338. -/*
  339. - * This is the old interim value for S/390 architecture
  340. - */
  341. -#define EM_S390_OLD 0xA390
  342. -
  343. -/* This is the info that is needed to parse the dynamic section of the file */
  344. -#define DT_NULL 0
  345. -#define DT_NEEDED 1
  346. -#define DT_PLTRELSZ 2
  347. -#define DT_PLTGOT 3
  348. -#define DT_HASH 4
  349. -#define DT_STRTAB 5
  350. -#define DT_SYMTAB 6
  351. -#define DT_RELA 7
  352. -#define DT_RELASZ 8
  353. -#define DT_RELAENT 9
  354. -#define DT_STRSZ 10
  355. -#define DT_SYMENT 11
  356. -#define DT_INIT 12
  357. -#define DT_FINI 13
  358. -#define DT_SONAME 14
  359. -#define DT_RPATH 15
  360. -#define DT_SYMBOLIC 16
  361. -#define DT_REL 17
  362. -#define DT_RELSZ 18
  363. -#define DT_RELENT 19
  364. -#define DT_PLTREL 20
  365. -#define DT_DEBUG 21
  366. -#define DT_TEXTREL 22
  367. -#define DT_JMPREL 23
  368. -#define DT_NUM 24
  369. -#define DT_LOPROC 0x70000000
  370. -#define DT_HIPROC 0x7fffffff
  371. -#define DT_MIPS_RLD_VERSION 0x70000001
  372. -#define DT_MIPS_TIME_STAMP 0x70000002
  373. -#define DT_MIPS_ICHECKSUM 0x70000003
  374. -#define DT_MIPS_IVERSION 0x70000004
  375. -#define DT_MIPS_FLAGS 0x70000005
  376. - #define RHF_NONE 0
  377. - #define RHF_HARDWAY 1
  378. - #define RHF_NOTPOT 2
  379. -#define DT_MIPS_BASE_ADDRESS 0x70000006
  380. -#define DT_MIPS_CONFLICT 0x70000008
  381. -#define DT_MIPS_LIBLIST 0x70000009
  382. -#define DT_MIPS_LOCAL_GOTNO 0x7000000a
  383. -#define DT_MIPS_CONFLICTNO 0x7000000b
  384. -#define DT_MIPS_LIBLISTNO 0x70000010
  385. -#define DT_MIPS_SYMTABNO 0x70000011
  386. -#define DT_MIPS_UNREFEXTNO 0x70000012
  387. -#define DT_MIPS_GOTSYM 0x70000013
  388. -#define DT_MIPS_HIPAGENO 0x70000014
  389. -#define DT_MIPS_RLD_MAP 0x70000016
  390. -
  391. -/* This info is needed when parsing the symbol table */
  392. -#define STB_LOCAL 0
  393. -#define STB_GLOBAL 1
  394. -#define STB_WEAK 2
  395. -
  396. -#define STT_NOTYPE 0
  397. -#define STT_OBJECT 1
  398. -#define STT_FUNC 2
  399. -#define STT_SECTION 3
  400. -#define STT_FILE 4
  401. +/* Legal values for e_version (version). */
  402. +
  403. +#define EV_NONE 0 /* Invalid ELF version */
  404. +#define EV_CURRENT 1 /* Current version */
  405. +#define EV_NUM 2
  406. +
  407. +/* Section header. */
  408. +
  409. +typedef struct
  410. +{
  411. + Elf32_Word sh_name; /* Section name (string tbl index) */
  412. + Elf32_Word sh_type; /* Section type */
  413. + Elf32_Word sh_flags; /* Section flags */
  414. + Elf32_Addr sh_addr; /* Section virtual addr at execution */
  415. + Elf32_Off sh_offset; /* Section file offset */
  416. + Elf32_Word sh_size; /* Section size in bytes */
  417. + Elf32_Word sh_link; /* Link to another section */
  418. + Elf32_Word sh_info; /* Additional section information */
  419. + Elf32_Word sh_addralign; /* Section alignment */
  420. + Elf32_Word sh_entsize; /* Entry size if section holds table */
  421. +} Elf32_Shdr;
  422. +
  423. +typedef struct
  424. +{
  425. + Elf64_Word sh_name; /* Section name (string tbl index) */
  426. + Elf64_Word sh_type; /* Section type */
  427. + Elf64_Xword sh_flags; /* Section flags */
  428. + Elf64_Addr sh_addr; /* Section virtual addr at execution */
  429. + Elf64_Off sh_offset; /* Section file offset */
  430. + Elf64_Xword sh_size; /* Section size in bytes */
  431. + Elf64_Word sh_link; /* Link to another section */
  432. + Elf64_Word sh_info; /* Additional section information */
  433. + Elf64_Xword sh_addralign; /* Section alignment */
  434. + Elf64_Xword sh_entsize; /* Entry size if section holds table */
  435. +} Elf64_Shdr;
  436. +
  437. +/* Special section indices. */
  438. +
  439. +#define SHN_UNDEF 0 /* Undefined section */
  440. +#define SHN_LORESERVE 0xff00 /* Start of reserved indices */
  441. +#define SHN_LOPROC 0xff00 /* Start of processor-specific */
  442. +#define SHN_HIPROC 0xff1f /* End of processor-specific */
  443. +#define SHN_LOOS 0xff20 /* Start of OS-specific */
  444. +#define SHN_HIOS 0xff3f /* End of OS-specific */
  445. +#define SHN_ABS 0xfff1 /* Associated symbol is absolute */
  446. +#define SHN_COMMON 0xfff2 /* Associated symbol is common */
  447. +#define SHN_XINDEX 0xffff /* Index is in extra table. */
  448. +#define SHN_HIRESERVE 0xffff /* End of reserved indices */
  449. +
  450. +/* Legal values for sh_type (section type). */
  451. +
  452. +#define SHT_NULL 0 /* Section header table entry unused */
  453. +#define SHT_PROGBITS 1 /* Program data */
  454. +#define SHT_SYMTAB 2 /* Symbol table */
  455. +#define SHT_STRTAB 3 /* String table */
  456. +#define SHT_RELA 4 /* Relocation entries with addends */
  457. +#define SHT_HASH 5 /* Symbol hash table */
  458. +#define SHT_DYNAMIC 6 /* Dynamic linking information */
  459. +#define SHT_NOTE 7 /* Notes */
  460. +#define SHT_NOBITS 8 /* Program space with no data (bss) */
  461. +#define SHT_REL 9 /* Relocation entries, no addends */
  462. +#define SHT_SHLIB 10 /* Reserved */
  463. +#define SHT_DYNSYM 11 /* Dynamic linker symbol table */
  464. +#define SHT_INIT_ARRAY 14 /* Array of constructors */
  465. +#define SHT_FINI_ARRAY 15 /* Array of destructors */
  466. +#define SHT_PREINIT_ARRAY 16 /* Array of pre-constructors */
  467. +#define SHT_GROUP 17 /* Section group */
  468. +#define SHT_SYMTAB_SHNDX 18 /* Extended section indeces */
  469. +#define SHT_NUM 19 /* Number of defined types. */
  470. +#define SHT_LOOS 0x60000000 /* Start OS-specific */
  471. +#define SHT_GNU_LIBLIST 0x6ffffff7 /* Prelink library list */
  472. +#define SHT_CHECKSUM 0x6ffffff8 /* Checksum for DSO content. */
  473. +#define SHT_LOSUNW 0x6ffffffa /* Sun-specific low bound. */
  474. +#define SHT_SUNW_move 0x6ffffffa
  475. +#define SHT_SUNW_COMDAT 0x6ffffffb
  476. +#define SHT_SUNW_syminfo 0x6ffffffc
  477. +#define SHT_GNU_verdef 0x6ffffffd /* Version definition section. */
  478. +#define SHT_GNU_verneed 0x6ffffffe /* Version needs section. */
  479. +#define SHT_GNU_versym 0x6fffffff /* Version symbol table. */
  480. +#define SHT_HISUNW 0x6fffffff /* Sun-specific high bound. */
  481. +#define SHT_HIOS 0x6fffffff /* End OS-specific type */
  482. +#define SHT_LOPROC 0x70000000 /* Start of processor-specific */
  483. +#define SHT_HIPROC 0x7fffffff /* End of processor-specific */
  484. +#define SHT_LOUSER 0x80000000 /* Start of application-specific */
  485. +#define SHT_HIUSER 0x8fffffff /* End of application-specific */
  486. +
  487. +/* Legal values for sh_flags (section flags). */
  488. +
  489. +#define SHF_WRITE (1 << 0) /* Writable */
  490. +#define SHF_ALLOC (1 << 1) /* Occupies memory during execution */
  491. +#define SHF_EXECINSTR (1 << 2) /* Executable */
  492. +#define SHF_MERGE (1 << 4) /* Might be merged */
  493. +#define SHF_STRINGS (1 << 5) /* Contains nul-terminated strings */
  494. +#define SHF_INFO_LINK (1 << 6) /* `sh_info' contains SHT index */
  495. +#define SHF_LINK_ORDER (1 << 7) /* Preserve order after combining */
  496. +#define SHF_OS_NONCONFORMING (1 << 8) /* Non-standard OS specific handling
  497. + required */
  498. +#define SHF_GROUP (1 << 9) /* Section is member of a group. */
  499. +#define SHF_TLS (1 << 10) /* Section hold thread-local data. */
  500. +#define SHF_MASKOS 0x0ff00000 /* OS-specific. */
  501. +#define SHF_MASKPROC 0xf0000000 /* Processor-specific */
  502. +
  503. +/* Section group handling. */
  504. +#define GRP_COMDAT 0x1 /* Mark group as COMDAT. */
  505. +
  506. +/* Symbol table entry. */
  507. +
  508. +typedef struct
  509. +{
  510. + Elf32_Word st_name; /* Symbol name (string tbl index) */
  511. + Elf32_Addr st_value; /* Symbol value */
  512. + Elf32_Word st_size; /* Symbol size */
  513. + unsigned char st_info; /* Symbol type and binding */
  514. + unsigned char st_other; /* Symbol visibility */
  515. + Elf32_Section st_shndx; /* Section index */
  516. +} Elf32_Sym;
  517. +
  518. +typedef struct
  519. +{
  520. + Elf64_Word st_name; /* Symbol name (string tbl index) */
  521. + unsigned char st_info; /* Symbol type and binding */
  522. + unsigned char st_other; /* Symbol visibility */
  523. + Elf64_Section st_shndx; /* Section index */
  524. + Elf64_Addr st_value; /* Symbol value */
  525. + Elf64_Xword st_size; /* Symbol size */
  526. +} Elf64_Sym;
  527. +
  528. +/* The syminfo section if available contains additional information about
  529. + every dynamic symbol. */
  530. -#define ELF32_ST_BIND(x) ((x) >> 4)
  531. -#define ELF32_ST_TYPE(x) (((unsigned int) x) & 0xf)
  532. +typedef struct
  533. +{
  534. + Elf32_Half si_boundto; /* Direct bindings, symbol bound to */
  535. + Elf32_Half si_flags; /* Per symbol flags */
  536. +} Elf32_Syminfo;
  537. +
  538. +typedef struct
  539. +{
  540. + Elf64_Half si_boundto; /* Direct bindings, symbol bound to */
  541. + Elf64_Half si_flags; /* Per symbol flags */
  542. +} Elf64_Syminfo;
  543. +
  544. +/* Possible values for si_boundto. */
  545. +#define SYMINFO_BT_SELF 0xffff /* Symbol bound to self */
  546. +#define SYMINFO_BT_PARENT 0xfffe /* Symbol bound to parent */
  547. +#define SYMINFO_BT_LOWRESERVE 0xff00 /* Beginning of reserved entries */
  548. +
  549. +/* Possible bitmasks for si_flags. */
  550. +#define SYMINFO_FLG_DIRECT 0x0001 /* Direct bound symbol */
  551. +#define SYMINFO_FLG_PASSTHRU 0x0002 /* Pass-thru symbol for translator */
  552. +#define SYMINFO_FLG_COPY 0x0004 /* Symbol is a copy-reloc */
  553. +#define SYMINFO_FLG_LAZYLOAD 0x0008 /* Symbol bound to object to be lazy
  554. + loaded */
  555. +/* Syminfo version values. */
  556. +#define SYMINFO_NONE 0
  557. +#define SYMINFO_CURRENT 1
  558. +#define SYMINFO_NUM 2
  559. +
  560. +
  561. +/* How to extract and insert information held in the st_info field. */
  562. +
  563. +#define ELF32_ST_BIND(val) (((unsigned char) (val)) >> 4)
  564. +#define ELF32_ST_TYPE(val) ((val) & 0xf)
  565. +#define ELF32_ST_INFO(bind, type) (((bind) << 4) + ((type) & 0xf))
  566. +/* Both Elf32_Sym and Elf64_Sym use the same one-byte st_info field. */
  567. #define ELF64_ST_BIND(val) ELF32_ST_BIND (val)
  568. #define ELF64_ST_TYPE(val) ELF32_ST_TYPE (val)
  569. +#define ELF64_ST_INFO(bind, type) ELF32_ST_INFO ((bind), (type))
  570. +
  571. +/* Legal values for ST_BIND subfield of st_info (symbol binding). */
  572. +
  573. +#define STB_LOCAL 0 /* Local symbol */
  574. +#define STB_GLOBAL 1 /* Global symbol */
  575. +#define STB_WEAK 2 /* Weak symbol */
  576. +#define STB_NUM 3 /* Number of defined types. */
  577. +#define STB_LOOS 10 /* Start of OS-specific */
  578. +#define STB_HIOS 12 /* End of OS-specific */
  579. +#define STB_LOPROC 13 /* Start of processor-specific */
  580. +#define STB_HIPROC 15 /* End of processor-specific */
  581. +
  582. +/* Legal values for ST_TYPE subfield of st_info (symbol type). */
  583. +
  584. +#define STT_NOTYPE 0 /* Symbol type is unspecified */
  585. +#define STT_OBJECT 1 /* Symbol is a data object */
  586. +#define STT_FUNC 2 /* Symbol is a code object */
  587. +#define STT_SECTION 3 /* Symbol associated with a section */
  588. +#define STT_FILE 4 /* Symbol's name is file name */
  589. +#define STT_COMMON 5 /* Symbol is a common data object */
  590. +#define STT_TLS 6 /* Symbol is thread-local data object*/
  591. +#define STT_NUM 7 /* Number of defined types. */
  592. +#define STT_LOOS 10 /* Start of OS-specific */
  593. +#define STT_HIOS 12 /* End of OS-specific */
  594. +#define STT_LOPROC 13 /* Start of processor-specific */
  595. +#define STT_HIPROC 15 /* End of processor-specific */
  596. +
  597. +
  598. +/* Symbol table indices are found in the hash buckets and chain table
  599. + of a symbol hash table section. This special index value indicates
  600. + the end of a chain, meaning no further symbols are found in that bucket. */
  601. +
  602. +#define STN_UNDEF 0 /* End of a chain. */
  603. +
  604. +
  605. +/* How to extract and insert information held in the st_other field. */
  606. +
  607. +#define ELF32_ST_VISIBILITY(o) ((o) & 0x03)
  608. +
  609. +/* For ELF64 the definitions are the same. */
  610. +#define ELF64_ST_VISIBILITY(o) ELF32_ST_VISIBILITY (o)
  611. +
  612. +/* Symbol visibility specification encoded in the st_other field. */
  613. +#define STV_DEFAULT 0 /* Default symbol visibility rules */
  614. +#define STV_INTERNAL 1 /* Processor specific hidden class */
  615. +#define STV_HIDDEN 2 /* Sym unavailable in other modules */
  616. +#define STV_PROTECTED 3 /* Not preemptible, not exported */
  617. +
  618. +
  619. +/* Relocation table entry without addend (in section of type SHT_REL). */
  620. +
  621. +typedef struct
  622. +{
  623. + Elf32_Addr r_offset; /* Address */
  624. + Elf32_Word r_info; /* Relocation type and symbol index */
  625. +} Elf32_Rel;
  626. -/* Symbolic values for the entries in the auxiliary table
  627. - put on the initial stack */
  628. -#define AT_NULL 0 /* end of vector */
  629. -#define AT_IGNORE 1 /* entry should be ignored */
  630. -#define AT_EXECFD 2 /* file descriptor of program */
  631. -#define AT_PHDR 3 /* program headers for program */
  632. -#define AT_PHENT 4 /* size of program header entry */
  633. -#define AT_PHNUM 5 /* number of program headers */
  634. -#define AT_PAGESZ 6 /* system page size */
  635. -#define AT_BASE 7 /* base address of interpreter */
  636. -#define AT_FLAGS 8 /* flags */
  637. -#define AT_ENTRY 9 /* entry point of program */
  638. -#define AT_NOTELF 10 /* program is not ELF */
  639. -#define AT_UID 11 /* real uid */
  640. -#define AT_EUID 12 /* effective uid */
  641. -#define AT_GID 13 /* real gid */
  642. -#define AT_EGID 14 /* effective gid */
  643. -#define AT_PLATFORM 15 /* string identifying CPU for optimizations */
  644. -#define AT_HWCAP 16 /* arch dependent hints at CPU capabilities */
  645. -#define AT_CLKTCK 17 /* frequency at which times() increments */
  646. -
  647. -typedef struct dynamic{
  648. - Elf32_Sword d_tag;
  649. - union{
  650. - Elf32_Sword d_val;
  651. - Elf32_Addr d_ptr;
  652. - } d_un;
  653. +/* I have seen two different definitions of the Elf64_Rel and
  654. + Elf64_Rela structures, so we'll leave them out until Novell (or
  655. + whoever) gets their act together. */
  656. +/* The following, at least, is used on Sparc v9, MIPS, and Alpha. */
  657. +
  658. +typedef struct
  659. +{
  660. + Elf64_Addr r_offset; /* Address */
  661. + Elf64_Xword r_info; /* Relocation type and symbol index */
  662. +} Elf64_Rel;
  663. +
  664. +/* Relocation table entry with addend (in section of type SHT_RELA). */
  665. +
  666. +typedef struct
  667. +{
  668. + Elf32_Addr r_offset; /* Address */
  669. + Elf32_Word r_info; /* Relocation type and symbol index */
  670. + Elf32_Sword r_addend; /* Addend */
  671. +} Elf32_Rela;
  672. +
  673. +typedef struct
  674. +{
  675. + Elf64_Addr r_offset; /* Address */
  676. + Elf64_Xword r_info; /* Relocation type and symbol index */
  677. + Elf64_Sxword r_addend; /* Addend */
  678. +} Elf64_Rela;
  679. +
  680. +/* How to extract and insert information held in the r_info field. */
  681. +
  682. +#define ELF32_R_SYM(val) ((val) >> 8)
  683. +#define ELF32_R_TYPE(val) ((val) & 0xff)
  684. +#define ELF32_R_INFO(sym, type) (((sym) << 8) + ((type) & 0xff))
  685. +
  686. +#define ELF64_R_SYM(i) ((i) >> 32)
  687. +#define ELF64_R_TYPE(i) ((i) & 0xffffffff)
  688. +#define ELF64_R_INFO(sym,type) ((((Elf64_Xword) (sym)) << 32) + (type))
  689. +
  690. +/* Program segment header. */
  691. +
  692. +typedef struct
  693. +{
  694. + Elf32_Word p_type; /* Segment type */
  695. + Elf32_Off p_offset; /* Segment file offset */
  696. + Elf32_Addr p_vaddr; /* Segment virtual address */
  697. + Elf32_Addr p_paddr; /* Segment physical address */
  698. + Elf32_Word p_filesz; /* Segment size in file */
  699. + Elf32_Word p_memsz; /* Segment size in memory */
  700. + Elf32_Word p_flags; /* Segment flags */
  701. + Elf32_Word p_align; /* Segment alignment */
  702. +} Elf32_Phdr;
  703. +
  704. +typedef struct
  705. +{
  706. + Elf64_Word p_type; /* Segment type */
  707. + Elf64_Word p_flags; /* Segment flags */
  708. + Elf64_Off p_offset; /* Segment file offset */
  709. + Elf64_Addr p_vaddr; /* Segment virtual address */
  710. + Elf64_Addr p_paddr; /* Segment physical address */
  711. + Elf64_Xword p_filesz; /* Segment size in file */
  712. + Elf64_Xword p_memsz; /* Segment size in memory */
  713. + Elf64_Xword p_align; /* Segment alignment */
  714. +} Elf64_Phdr;
  715. +
  716. +/* Legal values for p_type (segment type). */
  717. +
  718. +#define PT_NULL 0 /* Program header table entry unused */
  719. +#define PT_LOAD 1 /* Loadable program segment */
  720. +#define PT_DYNAMIC 2 /* Dynamic linking information */
  721. +#define PT_INTERP 3 /* Program interpreter */
  722. +#define PT_NOTE 4 /* Auxiliary information */
  723. +#define PT_SHLIB 5 /* Reserved */
  724. +#define PT_PHDR 6 /* Entry for header table itself */
  725. +#define PT_TLS 7 /* Thread-local storage segment */
  726. +#define PT_NUM 8 /* Number of defined types */
  727. +#define PT_LOOS 0x60000000 /* Start of OS-specific */
  728. +#define PT_GNU_EH_FRAME 0x6474e550 /* GCC .eh_frame_hdr segment */
  729. +#define PT_GNU_STACK 0x6474e551 /* Indicates stack executability */
  730. +#define PT_LOSUNW 0x6ffffffa
  731. +#define PT_SUNWBSS 0x6ffffffa /* Sun Specific segment */
  732. +#define PT_SUNWSTACK 0x6ffffffb /* Stack segment */
  733. +#define PT_HISUNW 0x6fffffff
  734. +#define PT_HIOS 0x6fffffff /* End of OS-specific */
  735. +#define PT_LOPROC 0x70000000 /* Start of processor-specific */
  736. +#define PT_HIPROC 0x7fffffff /* End of processor-specific */
  737. +
  738. +/* Legal values for p_flags (segment flags). */
  739. +
  740. +#define PF_X (1 << 0) /* Segment is executable */
  741. +#define PF_W (1 << 1) /* Segment is writable */
  742. +#define PF_R (1 << 2) /* Segment is readable */
  743. +#define PF_MASKOS 0x0ff00000 /* OS-specific */
  744. +#define PF_MASKPROC 0xf0000000 /* Processor-specific */
  745. +
  746. +/* Legal values for note segment descriptor types for core files. */
  747. +
  748. +#define NT_PRSTATUS 1 /* Contains copy of prstatus struct */
  749. +#define NT_FPREGSET 2 /* Contains copy of fpregset struct */
  750. +#define NT_PRPSINFO 3 /* Contains copy of prpsinfo struct */
  751. +#define NT_PRXREG 4 /* Contains copy of prxregset struct */
  752. +#define NT_TASKSTRUCT 4 /* Contains copy of task structure */
  753. +#define NT_PLATFORM 5 /* String from sysinfo(SI_PLATFORM) */
  754. +#define NT_AUXV 6 /* Contains copy of auxv array */
  755. +#define NT_GWINDOWS 7 /* Contains copy of gwindows struct */
  756. +#define NT_ASRS 8 /* Contains copy of asrset struct */
  757. +#define NT_PSTATUS 10 /* Contains copy of pstatus struct */
  758. +#define NT_PSINFO 13 /* Contains copy of psinfo struct */
  759. +#define NT_PRCRED 14 /* Contains copy of prcred struct */
  760. +#define NT_UTSNAME 15 /* Contains copy of utsname struct */
  761. +#define NT_LWPSTATUS 16 /* Contains copy of lwpstatus struct */
  762. +#define NT_LWPSINFO 17 /* Contains copy of lwpinfo struct */
  763. +#define NT_PRFPXREG 20 /* Contains copy of fprxregset struct*/
  764. +
  765. +/* Legal values for the note segment descriptor types for object files. */
  766. +
  767. +#define NT_VERSION 1 /* Contains a version string. */
  768. +
  769. +
  770. +/* Dynamic section entry. */
  771. +
  772. +typedef struct
  773. +{
  774. + Elf32_Sword d_tag; /* Dynamic entry type */
  775. + union
  776. + {
  777. + Elf32_Word d_val; /* Integer value */
  778. + Elf32_Addr d_ptr; /* Address value */
  779. + } d_un;
  780. } Elf32_Dyn;
  781. -typedef struct {
  782. - Elf64_Sxword d_tag; /* entry tag value */
  783. - union {
  784. - Elf64_Xword d_val;
  785. - Elf64_Addr d_ptr;
  786. - } d_un;
  787. +typedef struct
  788. +{
  789. + Elf64_Sxword d_tag; /* Dynamic entry type */
  790. + union
  791. + {
  792. + Elf64_Xword d_val; /* Integer value */
  793. + Elf64_Addr d_ptr; /* Address value */
  794. + } d_un;
  795. } Elf64_Dyn;
  796. -/* The following are used with relocations */
  797. -#define ELF32_R_SYM(x) ((x) >> 8)
  798. -#define ELF32_R_TYPE(x) ((x) & 0xff)
  799. -
  800. -#define ELF64_R_SYM(x) ((x) >> 32)
  801. -#define ELF64_R_TYPE(x) ((x) & 0xffffffff)
  802. -
  803. -#define R_386_NONE 0
  804. -#define R_386_32 1
  805. -#define R_386_PC32 2
  806. -#define R_386_GOT32 3
  807. -#define R_386_PLT32 4
  808. -#define R_386_COPY 5
  809. -#define R_386_GLOB_DAT 6
  810. -#define R_386_JMP_SLOT 7
  811. -#define R_386_RELATIVE 8
  812. -#define R_386_GOTOFF 9
  813. -#define R_386_GOTPC 10
  814. -#define R_386_NUM 11
  815. -
  816. -#define R_MIPS_NONE 0
  817. -#define R_MIPS_16 1
  818. -#define R_MIPS_32 2
  819. -#define R_MIPS_REL32 3
  820. -#define R_MIPS_26 4
  821. -#define R_MIPS_HI16 5
  822. -#define R_MIPS_LO16 6
  823. -#define R_MIPS_GPREL16 7
  824. -#define R_MIPS_LITERAL 8
  825. -#define R_MIPS_GOT16 9
  826. -#define R_MIPS_PC16 10
  827. -#define R_MIPS_CALL16 11
  828. -#define R_MIPS_GPREL32 12
  829. -/* The remaining relocs are defined on Irix, although they are not
  830. - in the MIPS ELF ABI. */
  831. -#define R_MIPS_UNUSED1 13
  832. -#define R_MIPS_UNUSED2 14
  833. -#define R_MIPS_UNUSED3 15
  834. +/* Legal values for d_tag (dynamic entry type). */
  835. +
  836. +#define DT_NULL 0 /* Marks end of dynamic section */
  837. +#define DT_NEEDED 1 /* Name of needed library */
  838. +#define DT_PLTRELSZ 2 /* Size in bytes of PLT relocs */
  839. +#define DT_PLTGOT 3 /* Processor defined value */
  840. +#define DT_HASH 4 /* Address of symbol hash table */
  841. +#define DT_STRTAB 5 /* Address of string table */
  842. +#define DT_SYMTAB 6 /* Address of symbol table */
  843. +#define DT_RELA 7 /* Address of Rela relocs */
  844. +#define DT_RELASZ 8 /* Total size of Rela relocs */
  845. +#define DT_RELAENT 9 /* Size of one Rela reloc */
  846. +#define DT_STRSZ 10 /* Size of string table */
  847. +#define DT_SYMENT 11 /* Size of one symbol table entry */
  848. +#define DT_INIT 12 /* Address of init function */
  849. +#define DT_FINI 13 /* Address of termination function */
  850. +#define DT_SONAME 14 /* Name of shared object */
  851. +#define DT_RPATH 15 /* Library search path (deprecated) */
  852. +#define DT_SYMBOLIC 16 /* Start symbol search here */
  853. +#define DT_REL 17 /* Address of Rel relocs */
  854. +#define DT_RELSZ 18 /* Total size of Rel relocs */
  855. +#define DT_RELENT 19 /* Size of one Rel reloc */
  856. +#define DT_PLTREL 20 /* Type of reloc in PLT */
  857. +#define DT_DEBUG 21 /* For debugging; unspecified */
  858. +#define DT_TEXTREL 22 /* Reloc might modify .text */
  859. +#define DT_JMPREL 23 /* Address of PLT relocs */
  860. +#define DT_BIND_NOW 24 /* Process relocations of object */
  861. +#define DT_INIT_ARRAY 25 /* Array with addresses of init fct */
  862. +#define DT_FINI_ARRAY 26 /* Array with addresses of fini fct */
  863. +#define DT_INIT_ARRAYSZ 27 /* Size in bytes of DT_INIT_ARRAY */
  864. +#define DT_FINI_ARRAYSZ 28 /* Size in bytes of DT_FINI_ARRAY */
  865. +#define DT_RUNPATH 29 /* Library search path */
  866. +#define DT_FLAGS 30 /* Flags for the object being loaded */
  867. +#define DT_ENCODING 32 /* Start of encoded range */
  868. +#define DT_PREINIT_ARRAY 32 /* Array with addresses of preinit fct*/
  869. +#define DT_PREINIT_ARRAYSZ 33 /* size in bytes of DT_PREINIT_ARRAY */
  870. +#define DT_NUM 34 /* Number used */
  871. +#define DT_LOOS 0x6000000d /* Start of OS-specific */
  872. +#define DT_HIOS 0x6ffff000 /* End of OS-specific */
  873. +#define DT_LOPROC 0x70000000 /* Start of processor-specific */
  874. +#define DT_HIPROC 0x7fffffff /* End of processor-specific */
  875. +#define DT_PROCNUM DT_MIPS_NUM /* Most used by any processor */
  876. +
  877. +/* DT_* entries which fall between DT_VALRNGHI & DT_VALRNGLO use the
  878. + Dyn.d_un.d_val field of the Elf*_Dyn structure. This follows Sun's
  879. + approach. */
  880. +#define DT_VALRNGLO 0x6ffffd00
  881. +#define DT_GNU_PRELINKED 0x6ffffdf5 /* Prelinking timestamp */
  882. +#define DT_GNU_CONFLICTSZ 0x6ffffdf6 /* Size of conflict section */
  883. +#define DT_GNU_LIBLISTSZ 0x6ffffdf7 /* Size of library list */
  884. +#define DT_CHECKSUM 0x6ffffdf8
  885. +#define DT_PLTPADSZ 0x6ffffdf9
  886. +#define DT_MOVEENT 0x6ffffdfa
  887. +#define DT_MOVESZ 0x6ffffdfb
  888. +#define DT_FEATURE_1 0x6ffffdfc /* Feature selection (DTF_*). */
  889. +#define DT_POSFLAG_1 0x6ffffdfd /* Flags for DT_* entries, effecting
  890. + the following DT_* entry. */
  891. +#define DT_SYMINSZ 0x6ffffdfe /* Size of syminfo table (in bytes) */
  892. +#define DT_SYMINENT 0x6ffffdff /* Entry size of syminfo */
  893. +#define DT_VALRNGHI 0x6ffffdff
  894. +#define DT_VALTAGIDX(tag) (DT_VALRNGHI - (tag)) /* Reverse order! */
  895. +#define DT_VALNUM 12
  896. +
  897. +/* DT_* entries which fall between DT_ADDRRNGHI & DT_ADDRRNGLO use the
  898. + Dyn.d_un.d_ptr field of the Elf*_Dyn structure.
  899. +
  900. + If any adjustment is made to the ELF object after it has been
  901. + built these entries will need to be adjusted. */
  902. +#define DT_ADDRRNGLO 0x6ffffe00
  903. +#define DT_GNU_CONFLICT 0x6ffffef8 /* Start of conflict section */
  904. +#define DT_GNU_LIBLIST 0x6ffffef9 /* Library list */
  905. +#define DT_CONFIG 0x6ffffefa /* Configuration information. */
  906. +#define DT_DEPAUDIT 0x6ffffefb /* Dependency auditing. */
  907. +#define DT_AUDIT 0x6ffffefc /* Object auditing. */
  908. +#define DT_PLTPAD 0x6ffffefd /* PLT padding. */
  909. +#define DT_MOVETAB 0x6ffffefe /* Move table. */
  910. +#define DT_SYMINFO 0x6ffffeff /* Syminfo table. */
  911. +#define DT_ADDRRNGHI 0x6ffffeff
  912. +#define DT_ADDRTAGIDX(tag) (DT_ADDRRNGHI - (tag)) /* Reverse order! */
  913. +#define DT_ADDRNUM 10
  914. +
  915. +/* The versioning entry types. The next are defined as part of the
  916. + GNU extension. */
  917. +#define DT_VERSYM 0x6ffffff0
  918. +
  919. +#define DT_RELACOUNT 0x6ffffff9
  920. +#define DT_RELCOUNT 0x6ffffffa
  921. +
  922. +/* These were chosen by Sun. */
  923. +#define DT_FLAGS_1 0x6ffffffb /* State flags, see DF_1_* below. */
  924. +#define DT_VERDEF 0x6ffffffc /* Address of version definition
  925. + table */
  926. +#define DT_VERDEFNUM 0x6ffffffd /* Number of version definitions */
  927. +#define DT_VERNEED 0x6ffffffe /* Address of table with needed
  928. + versions */
  929. +#define DT_VERNEEDNUM 0x6fffffff /* Number of needed versions */
  930. +#define DT_VERSIONTAGIDX(tag) (DT_VERNEEDNUM - (tag)) /* Reverse order! */
  931. +#define DT_VERSIONTAGNUM 16
  932. +
  933. +/* Sun added these machine-independent extensions in the "processor-specific"
  934. + range. Be compatible. */
  935. +#define DT_AUXILIARY 0x7ffffffd /* Shared object to load before self */
  936. +#define DT_FILTER 0x7fffffff /* Shared object to get values from */
  937. +#define DT_EXTRATAGIDX(tag) ((Elf32_Word)-((Elf32_Sword) (tag) <<1>>1)-1)
  938. +#define DT_EXTRANUM 3
  939. +
  940. +/* Values of `d_un.d_val' in the DT_FLAGS entry. */
  941. +#define DF_ORIGIN 0x00000001 /* Object may use DF_ORIGIN */
  942. +#define DF_SYMBOLIC 0x00000002 /* Symbol resolutions starts here */
  943. +#define DF_TEXTREL 0x00000004 /* Object contains text relocations */
  944. +#define DF_BIND_NOW 0x00000008 /* No lazy binding for this object */
  945. +#define DF_STATIC_TLS 0x00000010 /* Module uses the static TLS model */
  946. +
  947. +/* State flags selectable in the `d_un.d_val' element of the DT_FLAGS_1
  948. + entry in the dynamic section. */
  949. +#define DF_1_NOW 0x00000001 /* Set RTLD_NOW for this object. */
  950. +#define DF_1_GLOBAL 0x00000002 /* Set RTLD_GLOBAL for this object. */
  951. +#define DF_1_GROUP 0x00000004 /* Set RTLD_GROUP for this object. */
  952. +#define DF_1_NODELETE 0x00000008 /* Set RTLD_NODELETE for this object.*/
  953. +#define DF_1_LOADFLTR 0x00000010 /* Trigger filtee loading at runtime.*/
  954. +#define DF_1_INITFIRST 0x00000020 /* Set RTLD_INITFIRST for this object*/
  955. +#define DF_1_NOOPEN 0x00000040 /* Set RTLD_NOOPEN for this object. */
  956. +#define DF_1_ORIGIN 0x00000080 /* $ORIGIN must be handled. */
  957. +#define DF_1_DIRECT 0x00000100 /* Direct binding enabled. */
  958. +#define DF_1_TRANS 0x00000200
  959. +#define DF_1_INTERPOSE 0x00000400 /* Object is used to interpose. */
  960. +#define DF_1_NODEFLIB 0x00000800 /* Ignore default lib search path. */
  961. +#define DF_1_NODUMP 0x00001000 /* Object can't be dldump'ed. */
  962. +#define DF_1_CONFALT 0x00002000 /* Configuration alternative created.*/
  963. +#define DF_1_ENDFILTEE 0x00004000 /* Filtee terminates filters search. */
  964. +#define DF_1_DISPRELDNE 0x00008000 /* Disp reloc applied at build time. */
  965. +#define DF_1_DISPRELPND 0x00010000 /* Disp reloc applied at run-time. */
  966. +
  967. +/* Flags for the feature selection in DT_FEATURE_1. */
  968. +#define DTF_1_PARINIT 0x00000001
  969. +#define DTF_1_CONFEXP 0x00000002
  970. +
  971. +/* Flags in the DT_POSFLAG_1 entry effecting only the next DT_* entry. */
  972. +#define DF_P1_LAZYLOAD 0x00000001 /* Lazyload following object. */
  973. +#define DF_P1_GROUPPERM 0x00000002 /* Symbols from next object are not
  974. + generally available. */
  975. +
  976. +/* Version definition sections. */
  977. +
  978. +typedef struct
  979. +{
  980. + Elf32_Half vd_version; /* Version revision */
  981. + Elf32_Half vd_flags; /* Version information */
  982. + Elf32_Half vd_ndx; /* Version Index */
  983. + Elf32_Half vd_cnt; /* Number of associated aux entries */
  984. + Elf32_Word vd_hash; /* Version name hash value */
  985. + Elf32_Word vd_aux; /* Offset in bytes to verdaux array */
  986. + Elf32_Word vd_next; /* Offset in bytes to next verdef
  987. + entry */
  988. +} Elf32_Verdef;
  989. +
  990. +typedef struct
  991. +{
  992. + Elf64_Half vd_version; /* Version revision */
  993. + Elf64_Half vd_flags; /* Version information */
  994. + Elf64_Half vd_ndx; /* Version Index */
  995. + Elf64_Half vd_cnt; /* Number of associated aux entries */
  996. + Elf64_Word vd_hash; /* Version name hash value */
  997. + Elf64_Word vd_aux; /* Offset in bytes to verdaux array */
  998. + Elf64_Word vd_next; /* Offset in bytes to next verdef
  999. + entry */
  1000. +} Elf64_Verdef;
  1001. +
  1002. +
  1003. +/* Legal values for vd_version (version revision). */
  1004. +#define VER_DEF_NONE 0 /* No version */
  1005. +#define VER_DEF_CURRENT 1 /* Current version */
  1006. +#define VER_DEF_NUM 2 /* Given version number */
  1007. +
  1008. +/* Legal values for vd_flags (version information flags). */
  1009. +#define VER_FLG_BASE 0x1 /* Version definition of file itself */
  1010. +#define VER_FLG_WEAK 0x2 /* Weak version identifier */
  1011. +
  1012. +/* Versym symbol index values. */
  1013. +#define VER_NDX_LOCAL 0 /* Symbol is local. */
  1014. +#define VER_NDX_GLOBAL 1 /* Symbol is global. */
  1015. +#define VER_NDX_LORESERVE 0xff00 /* Beginning of reserved entries. */
  1016. +#define VER_NDX_ELIMINATE 0xff01 /* Symbol is to be eliminated. */
  1017. +
  1018. +/* Auxialiary version information. */
  1019. +
  1020. +typedef struct
  1021. +{
  1022. + Elf32_Word vda_name; /* Version or dependency names */
  1023. + Elf32_Word vda_next; /* Offset in bytes to next verdaux
  1024. + entry */
  1025. +} Elf32_Verdaux;
  1026. +
  1027. +typedef struct
  1028. +{
  1029. + Elf64_Word vda_name; /* Version or dependency names */
  1030. + Elf64_Word vda_next; /* Offset in bytes to next verdaux
  1031. + entry */
  1032. +} Elf64_Verdaux;
  1033. +
  1034. +
  1035. +/* Version dependency section. */
  1036. +
  1037. +typedef struct
  1038. +{
  1039. + Elf32_Half vn_version; /* Version of structure */
  1040. + Elf32_Half vn_cnt; /* Number of associated aux entries */
  1041. + Elf32_Word vn_file; /* Offset of filename for this
  1042. + dependency */
  1043. + Elf32_Word vn_aux; /* Offset in bytes to vernaux array */
  1044. + Elf32_Word vn_next; /* Offset in bytes to next verneed
  1045. + entry */
  1046. +} Elf32_Verneed;
  1047. +
  1048. +typedef struct
  1049. +{
  1050. + Elf64_Half vn_version; /* Version of structure */
  1051. + Elf64_Half vn_cnt; /* Number of associated aux entries */
  1052. + Elf64_Word vn_file; /* Offset of filename for this
  1053. + dependency */
  1054. + Elf64_Word vn_aux; /* Offset in bytes to vernaux array */
  1055. + Elf64_Word vn_next; /* Offset in bytes to next verneed
  1056. + entry */
  1057. +} Elf64_Verneed;
  1058. +
  1059. +
  1060. +/* Legal values for vn_version (version revision). */
  1061. +#define VER_NEED_NONE 0 /* No version */
  1062. +#define VER_NEED_CURRENT 1 /* Current version */
  1063. +#define VER_NEED_NUM 2 /* Given version number */
  1064. +
  1065. +/* Auxiliary needed version information. */
  1066. +
  1067. +typedef struct
  1068. +{
  1069. + Elf32_Word vna_hash; /* Hash value of dependency name */
  1070. + Elf32_Half vna_flags; /* Dependency specific information */
  1071. + Elf32_Half vna_other; /* Unused */
  1072. + Elf32_Word vna_name; /* Dependency name string offset */
  1073. + Elf32_Word vna_next; /* Offset in bytes to next vernaux
  1074. + entry */
  1075. +} Elf32_Vernaux;
  1076. +
  1077. +typedef struct
  1078. +{
  1079. + Elf64_Word vna_hash; /* Hash value of dependency name */
  1080. + Elf64_Half vna_flags; /* Dependency specific information */
  1081. + Elf64_Half vna_other; /* Unused */
  1082. + Elf64_Word vna_name; /* Dependency name string offset */
  1083. + Elf64_Word vna_next; /* Offset in bytes to next vernaux
  1084. + entry */
  1085. +} Elf64_Vernaux;
  1086. +
  1087. +
  1088. +/* Legal values for vna_flags. */
  1089. +#define VER_FLG_WEAK 0x2 /* Weak version identifier */
  1090. +
  1091. +
  1092. +/* Auxiliary vector. */
  1093. +
  1094. +/* This vector is normally only used by the program interpreter. The
  1095. + usual definition in an ABI supplement uses the name auxv_t. The
  1096. + vector is not usually defined in a standard <elf.h> file, but it
  1097. + can't hurt. We rename it to avoid conflicts. The sizes of these
  1098. + types are an arrangement between the exec server and the program
  1099. + interpreter, so we don't fully specify them here. */
  1100. +
  1101. +typedef struct
  1102. +{
  1103. + int a_type; /* Entry type */
  1104. + union
  1105. + {
  1106. + long int a_val; /* Integer value */
  1107. + void *a_ptr; /* Pointer value */
  1108. + void (*a_fcn) (void); /* Function pointer value */
  1109. + } a_un;
  1110. +} Elf32_auxv_t;
  1111. +
  1112. +typedef struct
  1113. +{
  1114. + long int a_type; /* Entry type */
  1115. + union
  1116. + {
  1117. + long int a_val; /* Integer value */
  1118. + void *a_ptr; /* Pointer value */
  1119. + void (*a_fcn) (void); /* Function pointer value */
  1120. + } a_un;
  1121. +} Elf64_auxv_t;
  1122. +
  1123. +/* Legal values for a_type (entry type). */
  1124. +
  1125. +#define AT_NULL 0 /* End of vector */
  1126. +#define AT_IGNORE 1 /* Entry should be ignored */
  1127. +#define AT_EXECFD 2 /* File descriptor of program */
  1128. +#define AT_PHDR 3 /* Program headers for program */
  1129. +#define AT_PHENT 4 /* Size of program header entry */
  1130. +#define AT_PHNUM 5 /* Number of program headers */
  1131. +#define AT_PAGESZ 6 /* System page size */
  1132. +#define AT_BASE 7 /* Base address of interpreter */
  1133. +#define AT_FLAGS 8 /* Flags */
  1134. +#define AT_ENTRY 9 /* Entry point of program */
  1135. +#define AT_NOTELF 10 /* Program is not ELF */
  1136. +#define AT_UID 11 /* Real uid */
  1137. +#define AT_EUID 12 /* Effective uid */
  1138. +#define AT_GID 13 /* Real gid */
  1139. +#define AT_EGID 14 /* Effective gid */
  1140. +#define AT_CLKTCK 17 /* Frequency of times() */
  1141. +
  1142. +/* Some more special a_type values describing the hardware. */
  1143. +#define AT_PLATFORM 15 /* String identifying platform. */
  1144. +#define AT_HWCAP 16 /* Machine dependent hints about
  1145. + processor capabilities. */
  1146. +
  1147. +/* This entry gives some information about the FPU initialization
  1148. + performed by the kernel. */
  1149. +#define AT_FPUCW 18 /* Used FPU control word. */
  1150. +
  1151. +/* Cache block sizes. */
  1152. +#define AT_DCACHEBSIZE 19 /* Data cache block size. */
  1153. +#define AT_ICACHEBSIZE 20 /* Instruction cache block size. */
  1154. +#define AT_UCACHEBSIZE 21 /* Unified cache block size. */
  1155. +
  1156. +/* A special ignored value for PPC, used by the kernel to control the
  1157. + interpretation of the AUXV. Must be > 16. */
  1158. +#define AT_IGNOREPPC 22 /* Entry should be ignored. */
  1159. +
  1160. +#define AT_SECURE 23 /* Boolean, was exec setuid-like? */
  1161. +
  1162. +/* Pointer to the global system page used for system calls and other
  1163. + nice things. */
  1164. +#define AT_SYSINFO 32
  1165. +#define AT_SYSINFO_EHDR 33
  1166. +
  1167. +
  1168. +/* Note section contents. Each entry in the note section begins with
  1169. + a header of a fixed form. */
  1170. +
  1171. +typedef struct
  1172. +{
  1173. + Elf32_Word n_namesz; /* Length of the note's name. */
  1174. + Elf32_Word n_descsz; /* Length of the note's descriptor. */
  1175. + Elf32_Word n_type; /* Type of the note. */
  1176. +} Elf32_Nhdr;
  1177. +
  1178. +typedef struct
  1179. +{
  1180. + Elf64_Word n_namesz; /* Length of the note's name. */
  1181. + Elf64_Word n_descsz; /* Length of the note's descriptor. */
  1182. + Elf64_Word n_type; /* Type of the note. */
  1183. +} Elf64_Nhdr;
  1184. +
  1185. +/* Known names of notes. */
  1186. +
  1187. +/* Solaris entries in the note section have this name. */
  1188. +#define ELF_NOTE_SOLARIS "SUNW Solaris"
  1189. +
  1190. +/* Note entries for GNU systems have this name. */
  1191. +#define ELF_NOTE_GNU "GNU"
  1192. +
  1193. +
  1194. +/* Defined types of notes for Solaris. */
  1195. +
  1196. +/* Value of descriptor (one word) is desired pagesize for the binary. */
  1197. +#define ELF_NOTE_PAGESIZE_HINT 1
  1198. +
  1199. +
  1200. +/* Defined note types for GNU systems. */
  1201. +
  1202. +/* ABI information. The descriptor consists of words:
  1203. + word 0: OS descriptor
  1204. + word 1: major version of the ABI
  1205. + word 2: minor version of the ABI
  1206. + word 3: subminor version of the ABI
  1207. +*/
  1208. +#define ELF_NOTE_ABI 1
  1209. +
  1210. +/* Known OSes. These value can appear in word 0 of an ELF_NOTE_ABI
  1211. + note section entry. */
  1212. +#define ELF_NOTE_OS_LINUX 0
  1213. +#define ELF_NOTE_OS_GNU 1
  1214. +#define ELF_NOTE_OS_SOLARIS2 2
  1215. +#define ELF_NOTE_OS_FREEBSD 3
  1216. +
  1217. +
  1218. +/* Move records. */
  1219. +typedef struct
  1220. +{
  1221. + Elf32_Xword m_value; /* Symbol value. */
  1222. + Elf32_Word m_info; /* Size and index. */
  1223. + Elf32_Word m_poffset; /* Symbol offset. */
  1224. + Elf32_Half m_repeat; /* Repeat count. */
  1225. + Elf32_Half m_stride; /* Stride info. */
  1226. +} Elf32_Move;
  1227. +
  1228. +typedef struct
  1229. +{
  1230. + Elf64_Xword m_value; /* Symbol value. */
  1231. + Elf64_Xword m_info; /* Size and index. */
  1232. + Elf64_Xword m_poffset; /* Symbol offset. */
  1233. + Elf64_Half m_repeat; /* Repeat count. */
  1234. + Elf64_Half m_stride; /* Stride info. */
  1235. +} Elf64_Move;
  1236. +
  1237. +/* Macro to construct move records. */
  1238. +#define ELF32_M_SYM(info) ((info) >> 8)
  1239. +#define ELF32_M_SIZE(info) ((unsigned char) (info))
  1240. +#define ELF32_M_INFO(sym, size) (((sym) << 8) + (unsigned char) (size))
  1241. +
  1242. +#define ELF64_M_SYM(info) ELF32_M_SYM (info)
  1243. +#define ELF64_M_SIZE(info) ELF32_M_SIZE (info)
  1244. +#define ELF64_M_INFO(sym, size) ELF32_M_INFO (sym, size)
  1245. +
  1246. +
  1247. +/* Motorola 68k specific definitions. */
  1248. +
  1249. +/* Values for Elf32_Ehdr.e_flags. */
  1250. +#define EF_CPU32 0x00810000
  1251. +
  1252. +/* m68k relocs. */
  1253. +
  1254. +#define R_68K_NONE 0 /* No reloc */
  1255. +#define R_68K_32 1 /* Direct 32 bit */
  1256. +#define R_68K_16 2 /* Direct 16 bit */
  1257. +#define R_68K_8 3 /* Direct 8 bit */
  1258. +#define R_68K_PC32 4 /* PC relative 32 bit */
  1259. +#define R_68K_PC16 5 /* PC relative 16 bit */
  1260. +#define R_68K_PC8 6 /* PC relative 8 bit */
  1261. +#define R_68K_GOT32 7 /* 32 bit PC relative GOT entry */
  1262. +#define R_68K_GOT16 8 /* 16 bit PC relative GOT entry */
  1263. +#define R_68K_GOT8 9 /* 8 bit PC relative GOT entry */
  1264. +#define R_68K_GOT32O 10 /* 32 bit GOT offset */
  1265. +#define R_68K_GOT16O 11 /* 16 bit GOT offset */
  1266. +#define R_68K_GOT8O 12 /* 8 bit GOT offset */
  1267. +#define R_68K_PLT32 13 /* 32 bit PC relative PLT address */
  1268. +#define R_68K_PLT16 14 /* 16 bit PC relative PLT address */
  1269. +#define R_68K_PLT8 15 /* 8 bit PC relative PLT address */
  1270. +#define R_68K_PLT32O 16 /* 32 bit PLT offset */
  1271. +#define R_68K_PLT16O 17 /* 16 bit PLT offset */
  1272. +#define R_68K_PLT8O 18 /* 8 bit PLT offset */
  1273. +#define R_68K_COPY 19 /* Copy symbol at runtime */
  1274. +#define R_68K_GLOB_DAT 20 /* Create GOT entry */
  1275. +#define R_68K_JMP_SLOT 21 /* Create PLT entry */
  1276. +#define R_68K_RELATIVE 22 /* Adjust by program base */
  1277. +/* Keep this the last entry. */
  1278. +#define R_68K_NUM 23
  1279. +
  1280. +/* Intel 80386 specific definitions. */
  1281. +
  1282. +/* i386 relocs. */
  1283. +
  1284. +#define R_386_NONE 0 /* No reloc */
  1285. +#define R_386_32 1 /* Direct 32 bit */
  1286. +#define R_386_PC32 2 /* PC relative 32 bit */
  1287. +#define R_386_GOT32 3 /* 32 bit GOT entry */
  1288. +#define R_386_PLT32 4 /* 32 bit PLT address */
  1289. +#define R_386_COPY 5 /* Copy symbol at runtime */
  1290. +#define R_386_GLOB_DAT 6 /* Create GOT entry */
  1291. +#define R_386_JMP_SLOT 7 /* Create PLT entry */
  1292. +#define R_386_RELATIVE 8 /* Adjust by program base */
  1293. +#define R_386_GOTOFF 9 /* 32 bit offset to GOT */
  1294. +#define R_386_GOTPC 10 /* 32 bit PC relative offset to GOT */
  1295. +#define R_386_32PLT 11
  1296. +#define R_386_TLS_TPOFF 14 /* Offset in static TLS block */
  1297. +#define R_386_TLS_IE 15 /* Address of GOT entry for static TLS
  1298. + block offset */
  1299. +#define R_386_TLS_GOTIE 16 /* GOT entry for static TLS block
  1300. + offset */
  1301. +#define R_386_TLS_LE 17 /* Offset relative to static TLS
  1302. + block */
  1303. +#define R_386_TLS_GD 18 /* Direct 32 bit for GNU version of
  1304. + general dynamic thread local data */
  1305. +#define R_386_TLS_LDM 19 /* Direct 32 bit for GNU version of
  1306. + local dynamic thread local data
  1307. + in LE code */
  1308. +#define R_386_16 20
  1309. +#define R_386_PC16 21
  1310. +#define R_386_8 22
  1311. +#define R_386_PC8 23
  1312. +#define R_386_TLS_GD_32 24 /* Direct 32 bit for general dynamic
  1313. + thread local data */
  1314. +#define R_386_TLS_GD_PUSH 25 /* Tag for pushl in GD TLS code */
  1315. +#define R_386_TLS_GD_CALL 26 /* Relocation for call to
  1316. + __tls_get_addr() */
  1317. +#define R_386_TLS_GD_POP 27 /* Tag for popl in GD TLS code */
  1318. +#define R_386_TLS_LDM_32 28 /* Direct 32 bit for local dynamic
  1319. + thread local data in LE code */
  1320. +#define R_386_TLS_LDM_PUSH 29 /* Tag for pushl in LDM TLS code */
  1321. +#define R_386_TLS_LDM_CALL 30 /* Relocation for call to
  1322. + __tls_get_addr() in LDM code */
  1323. +#define R_386_TLS_LDM_POP 31 /* Tag for popl in LDM TLS code */
  1324. +#define R_386_TLS_LDO_32 32 /* Offset relative to TLS block */
  1325. +#define R_386_TLS_IE_32 33 /* GOT entry for negated static TLS
  1326. + block offset */
  1327. +#define R_386_TLS_LE_32 34 /* Negated offset relative to static
  1328. + TLS block */
  1329. +#define R_386_TLS_DTPMOD32 35 /* ID of module containing symbol */
  1330. +#define R_386_TLS_DTPOFF32 36 /* Offset in TLS block */
  1331. +#define R_386_TLS_TPOFF32 37 /* Negated offset in static TLS block */
  1332. +/* Keep this the last entry. */
  1333. +#define R_386_NUM 38
  1334. +
  1335. +/* SUN SPARC specific definitions. */
  1336. +
  1337. +/* Legal values for ST_TYPE subfield of st_info (symbol type). */
  1338. +
  1339. +#define STT_REGISTER 13 /* Global register reserved to app. */
  1340. +
  1341. +/* Values for Elf64_Ehdr.e_flags. */
  1342. +
  1343. +#define EF_SPARCV9_MM 3
  1344. +#define EF_SPARCV9_TSO 0
  1345. +#define EF_SPARCV9_PSO 1
  1346. +#define EF_SPARCV9_RMO 2
  1347. +#define EF_SPARC_LEDATA 0x800000 /* little endian data */
  1348. +#define EF_SPARC_EXT_MASK 0xFFFF00
  1349. +#define EF_SPARC_32PLUS 0x000100 /* generic V8+ features */
  1350. +#define EF_SPARC_SUN_US1 0x000200 /* Sun UltraSPARC1 extensions */
  1351. +#define EF_SPARC_HAL_R1 0x000400 /* HAL R1 extensions */
  1352. +#define EF_SPARC_SUN_US3 0x000800 /* Sun UltraSPARCIII extensions */
  1353. +
  1354. +/* SPARC relocs. */
  1355. +
  1356. +#define R_SPARC_NONE 0 /* No reloc */
  1357. +#define R_SPARC_8 1 /* Direct 8 bit */
  1358. +#define R_SPARC_16 2 /* Direct 16 bit */
  1359. +#define R_SPARC_32 3 /* Direct 32 bit */
  1360. +#define R_SPARC_DISP8 4 /* PC relative 8 bit */
  1361. +#define R_SPARC_DISP16 5 /* PC relative 16 bit */
  1362. +#define R_SPARC_DISP32 6 /* PC relative 32 bit */
  1363. +#define R_SPARC_WDISP30 7 /* PC relative 30 bit shifted */
  1364. +#define R_SPARC_WDISP22 8 /* PC relative 22 bit shifted */
  1365. +#define R_SPARC_HI22 9 /* High 22 bit */
  1366. +#define R_SPARC_22 10 /* Direct 22 bit */
  1367. +#define R_SPARC_13 11 /* Direct 13 bit */
  1368. +#define R_SPARC_LO10 12 /* Truncated 10 bit */
  1369. +#define R_SPARC_GOT10 13 /* Truncated 10 bit GOT entry */
  1370. +#define R_SPARC_GOT13 14 /* 13 bit GOT entry */
  1371. +#define R_SPARC_GOT22 15 /* 22 bit GOT entry shifted */
  1372. +#define R_SPARC_PC10 16 /* PC relative 10 bit truncated */
  1373. +#define R_SPARC_PC22 17 /* PC relative 22 bit shifted */
  1374. +#define R_SPARC_WPLT30 18 /* 30 bit PC relative PLT address */
  1375. +#define R_SPARC_COPY 19 /* Copy symbol at runtime */
  1376. +#define R_SPARC_GLOB_DAT 20 /* Create GOT entry */
  1377. +#define R_SPARC_JMP_SLOT 21 /* Create PLT entry */
  1378. +#define R_SPARC_RELATIVE 22 /* Adjust by program base */
  1379. +#define R_SPARC_UA32 23 /* Direct 32 bit unaligned */
  1380. +
  1381. +/* Additional Sparc64 relocs. */
  1382. +
  1383. +#define R_SPARC_PLT32 24 /* Direct 32 bit ref to PLT entry */
  1384. +#define R_SPARC_HIPLT22 25 /* High 22 bit PLT entry */
  1385. +#define R_SPARC_LOPLT10 26 /* Truncated 10 bit PLT entry */
  1386. +#define R_SPARC_PCPLT32 27 /* PC rel 32 bit ref to PLT entry */
  1387. +#define R_SPARC_PCPLT22 28 /* PC rel high 22 bit PLT entry */
  1388. +#define R_SPARC_PCPLT10 29 /* PC rel trunc 10 bit PLT entry */
  1389. +#define R_SPARC_10 30 /* Direct 10 bit */
  1390. +#define R_SPARC_11 31 /* Direct 11 bit */
  1391. +#define R_SPARC_64 32 /* Direct 64 bit */
  1392. +#define R_SPARC_OLO10 33 /* 10bit with secondary 13bit addend */
  1393. +#define R_SPARC_HH22 34 /* Top 22 bits of direct 64 bit */
  1394. +#define R_SPARC_HM10 35 /* High middle 10 bits of ... */
  1395. +#define R_SPARC_LM22 36 /* Low middle 22 bits of ... */
  1396. +#define R_SPARC_PC_HH22 37 /* Top 22 bits of pc rel 64 bit */
  1397. +#define R_SPARC_PC_HM10 38 /* High middle 10 bit of ... */
  1398. +#define R_SPARC_PC_LM22 39 /* Low miggle 22 bits of ... */
  1399. +#define R_SPARC_WDISP16 40 /* PC relative 16 bit shifted */
  1400. +#define R_SPARC_WDISP19 41 /* PC relative 19 bit shifted */
  1401. +#define R_SPARC_7 43 /* Direct 7 bit */
  1402. +#define R_SPARC_5 44 /* Direct 5 bit */
  1403. +#define R_SPARC_6 45 /* Direct 6 bit */
  1404. +#define R_SPARC_DISP64 46 /* PC relative 64 bit */
  1405. +#define R_SPARC_PLT64 47 /* Direct 64 bit ref to PLT entry */
  1406. +#define R_SPARC_HIX22 48 /* High 22 bit complemented */
  1407. +#define R_SPARC_LOX10 49 /* Truncated 11 bit complemented */
  1408. +#define R_SPARC_H44 50 /* Direct high 12 of 44 bit */
  1409. +#define R_SPARC_M44 51 /* Direct mid 22 of 44 bit */
  1410. +#define R_SPARC_L44 52 /* Direct low 10 of 44 bit */
  1411. +#define R_SPARC_REGISTER 53 /* Global register usage */
  1412. +#define R_SPARC_UA64 54 /* Direct 64 bit unaligned */
  1413. +#define R_SPARC_UA16 55 /* Direct 16 bit unaligned */
  1414. +#define R_SPARC_TLS_GD_HI22 56
  1415. +#define R_SPARC_TLS_GD_LO10 57
  1416. +#define R_SPARC_TLS_GD_ADD 58
  1417. +#define R_SPARC_TLS_GD_CALL 59
  1418. +#define R_SPARC_TLS_LDM_HI22 60
  1419. +#define R_SPARC_TLS_LDM_LO10 61
  1420. +#define R_SPARC_TLS_LDM_ADD 62
  1421. +#define R_SPARC_TLS_LDM_CALL 63
  1422. +#define R_SPARC_TLS_LDO_HIX22 64
  1423. +#define R_SPARC_TLS_LDO_LOX10 65
  1424. +#define R_SPARC_TLS_LDO_ADD 66
  1425. +#define R_SPARC_TLS_IE_HI22 67
  1426. +#define R_SPARC_TLS_IE_LO10 68
  1427. +#define R_SPARC_TLS_IE_LD 69
  1428. +#define R_SPARC_TLS_IE_LDX 70
  1429. +#define R_SPARC_TLS_IE_ADD 71
  1430. +#define R_SPARC_TLS_LE_HIX22 72
  1431. +#define R_SPARC_TLS_LE_LOX10 73
  1432. +#define R_SPARC_TLS_DTPMOD32 74
  1433. +#define R_SPARC_TLS_DTPMOD64 75
  1434. +#define R_SPARC_TLS_DTPOFF32 76
  1435. +#define R_SPARC_TLS_DTPOFF64 77
  1436. +#define R_SPARC_TLS_TPOFF32 78
  1437. +#define R_SPARC_TLS_TPOFF64 79
  1438. +/* Keep this the last entry. */
  1439. +#define R_SPARC_NUM 80
  1440. +
  1441. +/* For Sparc64, legal values for d_tag of Elf64_Dyn. */
  1442. +
  1443. +#define DT_SPARC_REGISTER 0x70000001
  1444. +#define DT_SPARC_NUM 2
  1445. +
  1446. +/* Bits present in AT_HWCAP, primarily for Sparc32. */
  1447. +
  1448. +#define HWCAP_SPARC_FLUSH 1 /* The cpu supports flush insn. */
  1449. +#define HWCAP_SPARC_STBAR 2
  1450. +#define HWCAP_SPARC_SWAP 4
  1451. +#define HWCAP_SPARC_MULDIV 8
  1452. +#define HWCAP_SPARC_V9 16 /* The cpu is v9, so v8plus is ok. */
  1453. +#define HWCAP_SPARC_ULTRA3 32
  1454. +
  1455. +/* MIPS R3000 specific definitions. */
  1456. +
  1457. +/* Legal values for e_flags field of Elf32_Ehdr. */
  1458. +
  1459. +#define EF_MIPS_NOREORDER 1 /* A .noreorder directive was used */
  1460. +#define EF_MIPS_PIC 2 /* Contains PIC code */
  1461. +#define EF_MIPS_CPIC 4 /* Uses PIC calling sequence */
  1462. +#define EF_MIPS_XGOT 8
  1463. +#define EF_MIPS_64BIT_WHIRL 16
  1464. +#define EF_MIPS_ABI2 32
  1465. +#define EF_MIPS_ABI_ON32 64
  1466. +#define EF_MIPS_ARCH 0xf0000000 /* MIPS architecture level */
  1467. +
  1468. +/* Legal values for MIPS architecture level. */
  1469. +
  1470. +#define EF_MIPS_ARCH_1 0x00000000 /* -mips1 code. */
  1471. +#define EF_MIPS_ARCH_2 0x10000000 /* -mips2 code. */
  1472. +#define EF_MIPS_ARCH_3 0x20000000 /* -mips3 code. */
  1473. +#define EF_MIPS_ARCH_4 0x30000000 /* -mips4 code. */
  1474. +#define EF_MIPS_ARCH_5 0x40000000 /* -mips5 code. */
  1475. +#define EF_MIPS_ARCH_32 0x60000000 /* MIPS32 code. */
  1476. +#define EF_MIPS_ARCH_64 0x70000000 /* MIPS64 code. */
  1477. +
  1478. +/* The following are non-official names and should not be used. */
  1479. +
  1480. +#define E_MIPS_ARCH_1 0x00000000 /* -mips1 code. */
  1481. +#define E_MIPS_ARCH_2 0x10000000 /* -mips2 code. */
  1482. +#define E_MIPS_ARCH_3 0x20000000 /* -mips3 code. */
  1483. +#define E_MIPS_ARCH_4 0x30000000 /* -mips4 code. */
  1484. +#define E_MIPS_ARCH_5 0x40000000 /* -mips5 code. */
  1485. +#define E_MIPS_ARCH_32 0x60000000 /* MIPS32 code. */
  1486. +#define E_MIPS_ARCH_64 0x70000000 /* MIPS64 code. */
  1487. +
  1488. +/* Special section indices. */
  1489. +
  1490. +#define SHN_MIPS_ACOMMON 0xff00 /* Allocated common symbols */
  1491. +#define SHN_MIPS_TEXT 0xff01 /* Allocated test symbols. */
  1492. +#define SHN_MIPS_DATA 0xff02 /* Allocated data symbols. */
  1493. +#define SHN_MIPS_SCOMMON 0xff03 /* Small common symbols */
  1494. +#define SHN_MIPS_SUNDEFINED 0xff04 /* Small undefined symbols */
  1495. +
  1496. +/* Legal values for sh_type field of Elf32_Shdr. */
  1497. +
  1498. +#define SHT_MIPS_LIBLIST 0x70000000 /* Shared objects used in link */
  1499. +#define SHT_MIPS_MSYM 0x70000001
  1500. +#define SHT_MIPS_CONFLICT 0x70000002 /* Conflicting symbols */
  1501. +#define SHT_MIPS_GPTAB 0x70000003 /* Global data area sizes */
  1502. +#define SHT_MIPS_UCODE 0x70000004 /* Reserved for SGI/MIPS compilers */
  1503. +#define SHT_MIPS_DEBUG 0x70000005 /* MIPS ECOFF debugging information*/
  1504. +#define SHT_MIPS_REGINFO 0x70000006 /* Register usage information */
  1505. +#define SHT_MIPS_PACKAGE 0x70000007
  1506. +#define SHT_MIPS_PACKSYM 0x70000008
  1507. +#define SHT_MIPS_RELD 0x70000009
  1508. +#define SHT_MIPS_IFACE 0x7000000b
  1509. +#define SHT_MIPS_CONTENT 0x7000000c
  1510. +#define SHT_MIPS_OPTIONS 0x7000000d /* Miscellaneous options. */
  1511. +#define SHT_MIPS_SHDR 0x70000010
  1512. +#define SHT_MIPS_FDESC 0x70000011
  1513. +#define SHT_MIPS_EXTSYM 0x70000012
  1514. +#define SHT_MIPS_DENSE 0x70000013
  1515. +#define SHT_MIPS_PDESC 0x70000014
  1516. +#define SHT_MIPS_LOCSYM 0x70000015
  1517. +#define SHT_MIPS_AUXSYM 0x70000016
  1518. +#define SHT_MIPS_OPTSYM 0x70000017
  1519. +#define SHT_MIPS_LOCSTR 0x70000018
  1520. +#define SHT_MIPS_LINE 0x70000019
  1521. +#define SHT_MIPS_RFDESC 0x7000001a
  1522. +#define SHT_MIPS_DELTASYM 0x7000001b
  1523. +#define SHT_MIPS_DELTAINST 0x7000001c
  1524. +#define SHT_MIPS_DELTACLASS 0x7000001d
  1525. +#define SHT_MIPS_DWARF 0x7000001e /* DWARF debugging information. */
  1526. +#define SHT_MIPS_DELTADECL 0x7000001f
  1527. +#define SHT_MIPS_SYMBOL_LIB 0x70000020
  1528. +#define SHT_MIPS_EVENTS 0x70000021 /* Event section. */
  1529. +#define SHT_MIPS_TRANSLATE 0x70000022
  1530. +#define SHT_MIPS_PIXIE 0x70000023
  1531. +#define SHT_MIPS_XLATE 0x70000024
  1532. +#define SHT_MIPS_XLATE_DEBUG 0x70000025
  1533. +#define SHT_MIPS_WHIRL 0x70000026
  1534. +#define SHT_MIPS_EH_REGION 0x70000027
  1535. +#define SHT_MIPS_XLATE_OLD 0x70000028
  1536. +#define SHT_MIPS_PDR_EXCEPTION 0x70000029
  1537. +
  1538. +/* Legal values for sh_flags field of Elf32_Shdr. */
  1539. +
  1540. +#define SHF_MIPS_GPREL 0x10000000 /* Must be part of global data area */
  1541. +#define SHF_MIPS_MERGE 0x20000000
  1542. +#define SHF_MIPS_ADDR 0x40000000
  1543. +#define SHF_MIPS_STRINGS 0x80000000
  1544. +#define SHF_MIPS_NOSTRIP 0x08000000
  1545. +#define SHF_MIPS_LOCAL 0x04000000
  1546. +#define SHF_MIPS_NAMES 0x02000000
  1547. +#define SHF_MIPS_NODUPE 0x01000000
  1548. +
  1549. +
  1550. +/* Symbol tables. */
  1551. +
  1552. +/* MIPS specific values for `st_other'. */
  1553. +#define STO_MIPS_DEFAULT 0x0
  1554. +#define STO_MIPS_INTERNAL 0x1
  1555. +#define STO_MIPS_HIDDEN 0x2
  1556. +#define STO_MIPS_PROTECTED 0x3
  1557. +#define STO_MIPS_SC_ALIGN_UNUSED 0xff
  1558. +
  1559. +/* MIPS specific values for `st_info'. */
  1560. +#define STB_MIPS_SPLIT_COMMON 13
  1561. +
  1562. +/* Entries found in sections of type SHT_MIPS_GPTAB. */
  1563. +
  1564. +typedef union
  1565. +{
  1566. + struct
  1567. + {
  1568. + Elf32_Word gt_current_g_value; /* -G value used for compilation */
  1569. + Elf32_Word gt_unused; /* Not used */
  1570. + } gt_header; /* First entry in section */
  1571. + struct
  1572. + {
  1573. + Elf32_Word gt_g_value; /* If this value were used for -G */
  1574. + Elf32_Word gt_bytes; /* This many bytes would be used */
  1575. + } gt_entry; /* Subsequent entries in section */
  1576. +} Elf32_gptab;
  1577. +
  1578. +/* Entry found in sections of type SHT_MIPS_REGINFO. */
  1579. +
  1580. +typedef struct
  1581. +{
  1582. + Elf32_Word ri_gprmask; /* General registers used */
  1583. + Elf32_Word ri_cprmask[4]; /* Coprocessor registers used */
  1584. + Elf32_Sword ri_gp_value; /* $gp register value */
  1585. +} Elf32_RegInfo;
  1586. +
  1587. +/* Entries found in sections of type SHT_MIPS_OPTIONS. */
  1588. +
  1589. +typedef struct
  1590. +{
  1591. + unsigned char kind; /* Determines interpretation of the
  1592. + variable part of descriptor. */
  1593. + unsigned char size; /* Size of descriptor, including header. */
  1594. + Elf32_Section section; /* Section header index of section affected,
  1595. + 0 for global options. */
  1596. + Elf32_Word info; /* Kind-specific information. */
  1597. +} Elf_Options;
  1598. +
  1599. +/* Values for `kind' field in Elf_Options. */
  1600. +
  1601. +#define ODK_NULL 0 /* Undefined. */
  1602. +#define ODK_REGINFO 1 /* Register usage information. */
  1603. +#define ODK_EXCEPTIONS 2 /* Exception processing options. */
  1604. +#define ODK_PAD 3 /* Section padding options. */
  1605. +#define ODK_HWPATCH 4 /* Hardware workarounds performed */
  1606. +#define ODK_FILL 5 /* record the fill value used by the linker. */
  1607. +#define ODK_TAGS 6 /* reserve space for desktop tools to write. */
  1608. +#define ODK_HWAND 7 /* HW workarounds. 'AND' bits when merging. */
  1609. +#define ODK_HWOR 8 /* HW workarounds. 'OR' bits when merging. */
  1610. +
  1611. +/* Values for `info' in Elf_Options for ODK_EXCEPTIONS entries. */
  1612. +
  1613. +#define OEX_FPU_MIN 0x1f /* FPE's which MUST be enabled. */
  1614. +#define OEX_FPU_MAX 0x1f00 /* FPE's which MAY be enabled. */
  1615. +#define OEX_PAGE0 0x10000 /* page zero must be mapped. */
  1616. +#define OEX_SMM 0x20000 /* Force sequential memory mode? */
  1617. +#define OEX_FPDBUG 0x40000 /* Force floating point debug mode? */
  1618. +#define OEX_PRECISEFP OEX_FPDBUG
  1619. +#define OEX_DISMISS 0x80000 /* Dismiss invalid address faults? */
  1620. +
  1621. +#define OEX_FPU_INVAL 0x10
  1622. +#define OEX_FPU_DIV0 0x08
  1623. +#define OEX_FPU_OFLO 0x04
  1624. +#define OEX_FPU_UFLO 0x02
  1625. +#define OEX_FPU_INEX 0x01
  1626. +
  1627. +/* Masks for `info' in Elf_Options for an ODK_HWPATCH entry. */
  1628. +
  1629. +#define OHW_R4KEOP 0x1 /* R4000 end-of-page patch. */
  1630. +#define OHW_R8KPFETCH 0x2 /* may need R8000 prefetch patch. */
  1631. +#define OHW_R5KEOP 0x4 /* R5000 end-of-page patch. */
  1632. +#define OHW_R5KCVTL 0x8 /* R5000 cvt.[ds].l bug. clean=1. */
  1633. +
  1634. +#define OPAD_PREFIX 0x1
  1635. +#define OPAD_POSTFIX 0x2
  1636. +#define OPAD_SYMBOL 0x4
  1637. +
  1638. +/* Entry found in `.options' section. */
  1639. +
  1640. +typedef struct
  1641. +{
  1642. + Elf32_Word hwp_flags1; /* Extra flags. */
  1643. + Elf32_Word hwp_flags2; /* Extra flags. */
  1644. +} Elf_Options_Hw;
  1645. +
  1646. +/* Masks for `info' in ElfOptions for ODK_HWAND and ODK_HWOR entries. */
  1647. +
  1648. +#define OHWA0_R4KEOP_CHECKED 0x00000001
  1649. +#define OHWA1_R4KEOP_CLEAN 0x00000002
  1650. +
  1651. +/* MIPS relocs. */
  1652. +
  1653. +#define R_MIPS_NONE 0 /* No reloc */
  1654. +#define R_MIPS_16 1 /* Direct 16 bit */
  1655. +#define R_MIPS_32 2 /* Direct 32 bit */
  1656. +#define R_MIPS_REL32 3 /* PC relative 32 bit */
  1657. +#define R_MIPS_26 4 /* Direct 26 bit shifted */
  1658. +#define R_MIPS_HI16 5 /* High 16 bit */
  1659. +#define R_MIPS_LO16 6 /* Low 16 bit */
  1660. +#define R_MIPS_GPREL16 7 /* GP relative 16 bit */
  1661. +#define R_MIPS_LITERAL 8 /* 16 bit literal entry */
  1662. +#define R_MIPS_GOT16 9 /* 16 bit GOT entry */
  1663. +#define R_MIPS_PC16 10 /* PC relative 16 bit */
  1664. +#define R_MIPS_CALL16 11 /* 16 bit GOT entry for function */
  1665. +#define R_MIPS_GPREL32 12 /* GP relative 32 bit */
  1666. +
  1667. #define R_MIPS_SHIFT5 16
  1668. #define R_MIPS_SHIFT6 17
  1669. #define R_MIPS_64 18
  1670. #define R_MIPS_GOT_DISP 19
  1671. #define R_MIPS_GOT_PAGE 20
  1672. #define R_MIPS_GOT_OFST 21
  1673. -/*
  1674. - * The following two relocation types are specified in the MIPS ABI
  1675. - * conformance guide version 1.2 but not yet in the psABI.
  1676. - */
  1677. -#define R_MIPS_GOTHI16 22
  1678. -#define R_MIPS_GOTLO16 23
  1679. +#define R_MIPS_GOT_HI16 22
  1680. +#define R_MIPS_GOT_LO16 23
  1681. #define R_MIPS_SUB 24
  1682. #define R_MIPS_INSERT_A 25
  1683. #define R_MIPS_INSERT_B 26
  1684. #define R_MIPS_DELETE 27
  1685. #define R_MIPS_HIGHER 28
  1686. #define R_MIPS_HIGHEST 29
  1687. -/*
  1688. - * The following two relocation types are specified in the MIPS ABI
  1689. - * conformance guide version 1.2 but not yet in the psABI.
  1690. - */
  1691. -#define R_MIPS_CALLHI16 30
  1692. -#define R_MIPS_CALLLO16 31
  1693. -/*
  1694. - * This range is reserved for vendor specific relocations.
  1695. - */
  1696. -#define R_MIPS_LOVENDOR 100
  1697. -#define R_MIPS_HIVENDOR 127
  1698. -
  1699. -
  1700. -/*
  1701. - * Sparc ELF relocation types
  1702. - */
  1703. -#define R_SPARC_NONE 0
  1704. -#define R_SPARC_8 1
  1705. -#define R_SPARC_16 2
  1706. -#define R_SPARC_32 3
  1707. -#define R_SPARC_DISP8 4
  1708. -#define R_SPARC_DISP16 5
  1709. -#define R_SPARC_DISP32 6
  1710. -#define R_SPARC_WDISP30 7
  1711. -#define R_SPARC_WDISP22 8
  1712. -#define R_SPARC_HI22 9
  1713. -#define R_SPARC_22 10
  1714. -#define R_SPARC_13 11
  1715. -#define R_SPARC_LO10 12
  1716. -#define R_SPARC_GOT10 13
  1717. -#define R_SPARC_GOT13 14
  1718. -#define R_SPARC_GOT22 15
  1719. -#define R_SPARC_PC10 16
  1720. -#define R_SPARC_PC22 17
  1721. -#define R_SPARC_WPLT30 18
  1722. -#define R_SPARC_COPY 19
  1723. -#define R_SPARC_GLOB_DAT 20
  1724. -#define R_SPARC_JMP_SLOT 21
  1725. -#define R_SPARC_RELATIVE 22
  1726. -#define R_SPARC_UA32 23
  1727. -#define R_SPARC_PLT32 24
  1728. -#define R_SPARC_HIPLT22 25
  1729. -#define R_SPARC_LOPLT10 26
  1730. -#define R_SPARC_PCPLT32 27
  1731. -#define R_SPARC_PCPLT22 28
  1732. -#define R_SPARC_PCPLT10 29
  1733. -#define R_SPARC_10 30
  1734. -#define R_SPARC_11 31
  1735. -#define R_SPARC_WDISP16 40
  1736. -#define R_SPARC_WDISP19 41
  1737. -#define R_SPARC_7 43
  1738. -#define R_SPARC_5 44
  1739. -#define R_SPARC_6 45
  1740. +#define R_MIPS_CALL_HI16 30
  1741. +#define R_MIPS_CALL_LO16 31
  1742. +#define R_MIPS_SCN_DISP 32
  1743. +#define R_MIPS_REL16 33
  1744. +#define R_MIPS_ADD_IMMEDIATE 34
  1745. +#define R_MIPS_PJUMP 35
  1746. +#define R_MIPS_RELGOT 36
  1747. +#define R_MIPS_JALR 37
  1748. +/* Keep this the last entry. */
  1749. +#define R_MIPS_NUM 38
  1750. -/* Bits present in AT_HWCAP, primarily for Sparc32. */
  1751. +/* Legal values for p_type field of Elf32_Phdr. */
  1752. -#define HWCAP_SPARC_FLUSH 1 /* CPU supports flush instruction. */
  1753. -#define HWCAP_SPARC_STBAR 2
  1754. -#define HWCAP_SPARC_SWAP 4
  1755. -#define HWCAP_SPARC_MULDIV 8
  1756. -#define HWCAP_SPARC_V9 16
  1757. -#define HWCAP_SPARC_ULTRA3 32
  1758. +#define PT_MIPS_REGINFO 0x70000000 /* Register usage information */
  1759. +#define PT_MIPS_RTPROC 0x70000001 /* Runtime procedure table. */
  1760. +#define PT_MIPS_OPTIONS 0x70000002
  1761. +
  1762. +/* Special program header types. */
  1763. +
  1764. +#define PF_MIPS_LOCAL 0x10000000
  1765. +
  1766. +/* Legal values for d_tag field of Elf32_Dyn. */
  1767. +
  1768. +#define DT_MIPS_RLD_VERSION 0x70000001 /* Runtime linker interface version */
  1769. +#define DT_MIPS_TIME_STAMP 0x70000002 /* Timestamp */
  1770. +#define DT_MIPS_ICHECKSUM 0x70000003 /* Checksum */
  1771. +#define DT_MIPS_IVERSION 0x70000004 /* Version string (string tbl index) */
  1772. +#define DT_MIPS_FLAGS 0x70000005 /* Flags */
  1773. +#define DT_MIPS_BASE_ADDRESS 0x70000006 /* Base address */
  1774. +#define DT_MIPS_MSYM 0x70000007
  1775. +#define DT_MIPS_CONFLICT 0x70000008 /* Address of CONFLICT section */
  1776. +#define DT_MIPS_LIBLIST 0x70000009 /* Address of LIBLIST section */
  1777. +#define DT_MIPS_LOCAL_GOTNO 0x7000000a /* Number of local GOT entries */
  1778. +#define DT_MIPS_CONFLICTNO 0x7000000b /* Number of CONFLICT entries */
  1779. +#define DT_MIPS_LIBLISTNO 0x70000010 /* Number of LIBLIST entries */
  1780. +#define DT_MIPS_SYMTABNO 0x70000011 /* Number of DYNSYM entries */
  1781. +#define DT_MIPS_UNREFEXTNO 0x70000012 /* First external DYNSYM */
  1782. +#define DT_MIPS_GOTSYM 0x70000013 /* First GOT entry in DYNSYM */
  1783. +#define DT_MIPS_HIPAGENO 0x70000014 /* Number of GOT page table entries */
  1784. +#define DT_MIPS_RLD_MAP 0x70000016 /* Address of run time loader map. */
  1785. +#define DT_MIPS_DELTA_CLASS 0x70000017 /* Delta C++ class definition. */
  1786. +#define DT_MIPS_DELTA_CLASS_NO 0x70000018 /* Number of entries in
  1787. + DT_MIPS_DELTA_CLASS. */
  1788. +#define DT_MIPS_DELTA_INSTANCE 0x70000019 /* Delta C++ class instances. */
  1789. +#define DT_MIPS_DELTA_INSTANCE_NO 0x7000001a /* Number of entries in
  1790. + DT_MIPS_DELTA_INSTANCE. */
  1791. +#define DT_MIPS_DELTA_RELOC 0x7000001b /* Delta relocations. */
  1792. +#define DT_MIPS_DELTA_RELOC_NO 0x7000001c /* Number of entries in
  1793. + DT_MIPS_DELTA_RELOC. */
  1794. +#define DT_MIPS_DELTA_SYM 0x7000001d /* Delta symbols that Delta
  1795. + relocations refer to. */
  1796. +#define DT_MIPS_DELTA_SYM_NO 0x7000001e /* Number of entries in
  1797. + DT_MIPS_DELTA_SYM. */
  1798. +#define DT_MIPS_DELTA_CLASSSYM 0x70000020 /* Delta symbols that hold the
  1799. + class declaration. */
  1800. +#define DT_MIPS_DELTA_CLASSSYM_NO 0x70000021 /* Number of entries in
  1801. + DT_MIPS_DELTA_CLASSSYM. */
  1802. +#define DT_MIPS_CXX_FLAGS 0x70000022 /* Flags indicating for C++ flavor. */
  1803. +#define DT_MIPS_PIXIE_INIT 0x70000023
  1804. +#define DT_MIPS_SYMBOL_LIB 0x70000024
  1805. +#define DT_MIPS_LOCALPAGE_GOTIDX 0x70000025
  1806. +#define DT_MIPS_LOCAL_GOTIDX 0x70000026
  1807. +#define DT_MIPS_HIDDEN_GOTIDX 0x70000027
  1808. +#define DT_MIPS_PROTECTED_GOTIDX 0x70000028
  1809. +#define DT_MIPS_OPTIONS 0x70000029 /* Address of .options. */
  1810. +#define DT_MIPS_INTERFACE 0x7000002a /* Address of .interface. */
  1811. +#define DT_MIPS_DYNSTR_ALIGN 0x7000002b
  1812. +#define DT_MIPS_INTERFACE_SIZE 0x7000002c /* Size of the .interface section. */
  1813. +#define DT_MIPS_RLD_TEXT_RESOLVE_ADDR 0x7000002d /* Address of rld_text_rsolve
  1814. + function stored in GOT. */
  1815. +#define DT_MIPS_PERF_SUFFIX 0x7000002e /* Default suffix of dso to be added
  1816. + by rld on dlopen() calls. */
  1817. +#define DT_MIPS_COMPACT_SIZE 0x7000002f /* (O32)Size of compact rel section. */
  1818. +#define DT_MIPS_GP_VALUE 0x70000030 /* GP value for aux GOTs. */
  1819. +#define DT_MIPS_AUX_DYNAMIC 0x70000031 /* Address of aux .dynamic. */
  1820. +#define DT_MIPS_NUM 0x32
  1821. +
  1822. +/* Legal values for DT_MIPS_FLAGS Elf32_Dyn entry. */
  1823. +
  1824. +#define RHF_NONE 0 /* No flags */
  1825. +#define RHF_QUICKSTART (1 << 0) /* Use quickstart */
  1826. +#define RHF_NOTPOT (1 << 1) /* Hash size not power of 2 */
  1827. +#define RHF_NO_LIBRARY_REPLACEMENT (1 << 2) /* Ignore LD_LIBRARY_PATH */
  1828. +#define RHF_NO_MOVE (1 << 3)
  1829. +#define RHF_SGI_ONLY (1 << 4)
  1830. +#define RHF_GUARANTEE_INIT (1 << 5)
  1831. +#define RHF_DELTA_C_PLUS_PLUS (1 << 6)
  1832. +#define RHF_GUARANTEE_START_INIT (1 << 7)
  1833. +#define RHF_PIXIE (1 << 8)
  1834. +#define RHF_DEFAULT_DELAY_LOAD (1 << 9)
  1835. +#define RHF_REQUICKSTART (1 << 10)
  1836. +#define RHF_REQUICKSTARTED (1 << 11)
  1837. +#define RHF_CORD (1 << 12)
  1838. +#define RHF_NO_UNRES_UNDEF (1 << 13)
  1839. +#define RHF_RLD_ORDER_SAFE (1 << 14)
  1840. +
  1841. +/* Entries found in sections of type SHT_MIPS_LIBLIST. */
  1842. +
  1843. +typedef struct
  1844. +{
  1845. + Elf32_Word l_name; /* Name (string table index) */
  1846. + Elf32_Word l_time_stamp; /* Timestamp */
  1847. + Elf32_Word l_checksum; /* Checksum */
  1848. + Elf32_Word l_version; /* Interface version */
  1849. + Elf32_Word l_flags; /* Flags */
  1850. +} Elf32_Lib;
  1851. +
  1852. +typedef struct
  1853. +{
  1854. + Elf64_Word l_name; /* Name (string table index) */
  1855. + Elf64_Word l_time_stamp; /* Timestamp */
  1856. + Elf64_Word l_checksum; /* Checksum */
  1857. + Elf64_Word l_version; /* Interface version */
  1858. + Elf64_Word l_flags; /* Flags */
  1859. +} Elf64_Lib;
  1860. +
  1861. +
  1862. +/* Legal values for l_flags. */
  1863. +
  1864. +#define LL_NONE 0
  1865. +#define LL_EXACT_MATCH (1 << 0) /* Require exact match */
  1866. +#define LL_IGNORE_INT_VER (1 << 1) /* Ignore interface version */
  1867. +#define LL_REQUIRE_MINOR (1 << 2)
  1868. +#define LL_EXPORTS (1 << 3)
  1869. +#define LL_DELAY_LOAD (1 << 4)
  1870. +#define LL_DELTA (1 << 5)
  1871. +
  1872. +/* Entries found in sections of type SHT_MIPS_CONFLICT. */
  1873. +
  1874. +typedef Elf32_Addr Elf32_Conflict;
  1875. +
  1876. +
  1877. +/* HPPA specific definitions. */
  1878. +
  1879. +/* Legal values for e_flags field of Elf32_Ehdr. */
  1880. +
  1881. +#define EF_PARISC_TRAPNIL 0x00010000 /* Trap nil pointer dereference. */
  1882. +#define EF_PARISC_EXT 0x00020000 /* Program uses arch. extensions. */
  1883. +#define EF_PARISC_LSB 0x00040000 /* Program expects little endian. */
  1884. +#define EF_PARISC_WIDE 0x00080000 /* Program expects wide mode. */
  1885. +#define EF_PARISC_NO_KABP 0x00100000 /* No kernel assisted branch
  1886. + prediction. */
  1887. +#define EF_PARISC_LAZYSWAP 0x00400000 /* Allow lazy swapping. */
  1888. +#define EF_PARISC_ARCH 0x0000ffff /* Architecture version. */
  1889. +
  1890. +/* Defined values for `e_flags & EF_PARISC_ARCH' are: */
  1891. +
  1892. +#define EFA_PARISC_1_0 0x020b /* PA-RISC 1.0 big-endian. */
  1893. +#define EFA_PARISC_1_1 0x0210 /* PA-RISC 1.1 big-endian. */
  1894. +#define EFA_PARISC_2_0 0x0214 /* PA-RISC 2.0 big-endian. */
  1895. +
  1896. +/* Additional section indeces. */
  1897. +
  1898. +#define SHN_PARISC_ANSI_COMMON 0xff00 /* Section for tenatively declared
  1899. + symbols in ANSI C. */
  1900. +#define SHN_PARISC_HUGE_COMMON 0xff01 /* Common blocks in huge model. */
  1901. +
  1902. +/* Legal values for sh_type field of Elf32_Shdr. */
  1903. +
  1904. +#define SHT_PARISC_EXT 0x70000000 /* Contains product specific ext. */
  1905. +#define SHT_PARISC_UNWIND 0x70000001 /* Unwind information. */
  1906. +#define SHT_PARISC_DOC 0x70000002 /* Debug info for optimized code. */
  1907. +
  1908. +/* Legal values for sh_flags field of Elf32_Shdr. */
  1909. +
  1910. +#define SHF_PARISC_SHORT 0x20000000 /* Section with short addressing. */
  1911. +#define SHF_PARISC_HUGE 0x40000000 /* Section far from gp. */
  1912. +#define SHF_PARISC_SBP 0x80000000 /* Static branch prediction code. */
  1913. +
  1914. +/* Legal values for ST_TYPE subfield of st_info (symbol type). */
  1915. +
  1916. +#define STT_PARISC_MILLICODE 13 /* Millicode function entry point. */
  1917. +
  1918. +#define STT_HP_OPAQUE (STT_LOOS + 0x1)
  1919. +#define STT_HP_STUB (STT_LOOS + 0x2)
  1920. +
  1921. +/* HPPA relocs. */
  1922. +
  1923. +#define R_PARISC_NONE 0 /* No reloc. */
  1924. +#define R_PARISC_DIR32 1 /* Direct 32-bit reference. */
  1925. +#define R_PARISC_DIR21L 2 /* Left 21 bits of eff. address. */
  1926. +#define R_PARISC_DIR17R 3 /* Right 17 bits of eff. address. */
  1927. +#define R_PARISC_DIR17F 4 /* 17 bits of eff. address. */
  1928. +#define R_PARISC_DIR14R 6 /* Right 14 bits of eff. address. */
  1929. +#define R_PARISC_PCREL32 9 /* 32-bit rel. address. */
  1930. +#define R_PARISC_PCREL21L 10 /* Left 21 bits of rel. address. */
  1931. +#define R_PARISC_PCREL17R 11 /* Right 17 bits of rel. address. */
  1932. +#define R_PARISC_PCREL17F 12 /* 17 bits of rel. address. */
  1933. +#define R_PARISC_PCREL14R 14 /* Right 14 bits of rel. address. */
  1934. +#define R_PARISC_DPREL21L 18 /* Left 21 bits of rel. address. */
  1935. +#define R_PARISC_DPREL14R 22 /* Right 14 bits of rel. address. */
  1936. +#define R_PARISC_GPREL21L 26 /* GP-relative, left 21 bits. */
  1937. +#define R_PARISC_GPREL14R 30 /* GP-relative, right 14 bits. */
  1938. +#define R_PARISC_LTOFF21L 34 /* LT-relative, left 21 bits. */
  1939. +#define R_PARISC_LTOFF14R 38 /* LT-relative, right 14 bits. */
  1940. +#define R_PARISC_SECREL32 41 /* 32 bits section rel. address. */
  1941. +#define R_PARISC_SEGBASE 48 /* No relocation, set segment base. */
  1942. +#define R_PARISC_SEGREL32 49 /* 32 bits segment rel. address. */
  1943. +#define R_PARISC_PLTOFF21L 50 /* PLT rel. address, left 21 bits. */
  1944. +#define R_PARISC_PLTOFF14R 54 /* PLT rel. address, right 14 bits. */
  1945. +#define R_PARISC_LTOFF_FPTR32 57 /* 32 bits LT-rel. function pointer. */
  1946. +#define R_PARISC_LTOFF_FPTR21L 58 /* LT-rel. fct ptr, left 21 bits. */
  1947. +#define R_PARISC_LTOFF_FPTR14R 62 /* LT-rel. fct ptr, right 14 bits. */
  1948. +#define R_PARISC_FPTR64 64 /* 64 bits function address. */
  1949. +#define R_PARISC_PLABEL32 65 /* 32 bits function address. */
  1950. +#define R_PARISC_PCREL64 72 /* 64 bits PC-rel. address. */
  1951. +#define R_PARISC_PCREL22F 74 /* 22 bits PC-rel. address. */
  1952. +#define R_PARISC_PCREL14WR 75 /* PC-rel. address, right 14 bits. */
  1953. +#define R_PARISC_PCREL14DR 76 /* PC rel. address, right 14 bits. */
  1954. +#define R_PARISC_PCREL16F 77 /* 16 bits PC-rel. address. */
  1955. +#define R_PARISC_PCREL16WF 78 /* 16 bits PC-rel. address. */
  1956. +#define R_PARISC_PCREL16DF 79 /* 16 bits PC-rel. address. */
  1957. +#define R_PARISC_DIR64 80 /* 64 bits of eff. address. */
  1958. +#define R_PARISC_DIR14WR 83 /* 14 bits of eff. address. */
  1959. +#define R_PARISC_DIR14DR 84 /* 14 bits of eff. address. */
  1960. +#define R_PARISC_DIR16F 85 /* 16 bits of eff. address. */
  1961. +#define R_PARISC_DIR16WF 86 /* 16 bits of eff. address. */
  1962. +#define R_PARISC_DIR16DF 87 /* 16 bits of eff. address. */
  1963. +#define R_PARISC_GPREL64 88 /* 64 bits of GP-rel. address. */
  1964. +#define R_PARISC_GPREL14WR 91 /* GP-rel. address, right 14 bits. */
  1965. +#define R_PARISC_GPREL14DR 92 /* GP-rel. address, right 14 bits. */
  1966. +#define R_PARISC_GPREL16F 93 /* 16 bits GP-rel. address. */
  1967. +#define R_PARISC_GPREL16WF 94 /* 16 bits GP-rel. address. */
  1968. +#define R_PARISC_GPREL16DF 95 /* 16 bits GP-rel. address. */
  1969. +#define R_PARISC_LTOFF64 96 /* 64 bits LT-rel. address. */
  1970. +#define R_PARISC_LTOFF14WR 99 /* LT-rel. address, right 14 bits. */
  1971. +#define R_PARISC_LTOFF14DR 100 /* LT-rel. address, right 14 bits. */
  1972. +#define R_PARISC_LTOFF16F 101 /* 16 bits LT-rel. address. */
  1973. +#define R_PARISC_LTOFF16WF 102 /* 16 bits LT-rel. address. */
  1974. +#define R_PARISC_LTOFF16DF 103 /* 16 bits LT-rel. address. */
  1975. +#define R_PARISC_SECREL64 104 /* 64 bits section rel. address. */
  1976. +#define R_PARISC_SEGREL64 112 /* 64 bits segment rel. address. */
  1977. +#define R_PARISC_PLTOFF14WR 115 /* PLT-rel. address, right 14 bits. */
  1978. +#define R_PARISC_PLTOFF14DR 116 /* PLT-rel. address, right 14 bits. */
  1979. +#define R_PARISC_PLTOFF16F 117 /* 16 bits LT-rel. address. */
  1980. +#define R_PARISC_PLTOFF16WF 118 /* 16 bits PLT-rel. address. */
  1981. +#define R_PARISC_PLTOFF16DF 119 /* 16 bits PLT-rel. address. */
  1982. +#define R_PARISC_LTOFF_FPTR64 120 /* 64 bits LT-rel. function ptr. */
  1983. +#define R_PARISC_LTOFF_FPTR14WR 123 /* LT-rel. fct. ptr., right 14 bits. */
  1984. +#define R_PARISC_LTOFF_FPTR14DR 124 /* LT-rel. fct. ptr., right 14 bits. */
  1985. +#define R_PARISC_LTOFF_FPTR16F 125 /* 16 bits LT-rel. function ptr. */
  1986. +#define R_PARISC_LTOFF_FPTR16WF 126 /* 16 bits LT-rel. function ptr. */
  1987. +#define R_PARISC_LTOFF_FPTR16DF 127 /* 16 bits LT-rel. function ptr. */
  1988. +#define R_PARISC_LORESERVE 128
  1989. +#define R_PARISC_COPY 128 /* Copy relocation. */
  1990. +#define R_PARISC_IPLT 129 /* Dynamic reloc, imported PLT */
  1991. +#define R_PARISC_EPLT 130 /* Dynamic reloc, exported PLT */
  1992. +#define R_PARISC_TPREL32 153 /* 32 bits TP-rel. address. */
  1993. +#define R_PARISC_TPREL21L 154 /* TP-rel. address, left 21 bits. */
  1994. +#define R_PARISC_TPREL14R 158 /* TP-rel. address, right 14 bits. */
  1995. +#define R_PARISC_LTOFF_TP21L 162 /* LT-TP-rel. address, left 21 bits. */
  1996. +#define R_PARISC_LTOFF_TP14R 166 /* LT-TP-rel. address, right 14 bits.*/
  1997. +#define R_PARISC_LTOFF_TP14F 167 /* 14 bits LT-TP-rel. address. */
  1998. +#define R_PARISC_TPREL64 216 /* 64 bits TP-rel. address. */
  1999. +#define R_PARISC_TPREL14WR 219 /* TP-rel. address, right 14 bits. */
  2000. +#define R_PARISC_TPREL14DR 220 /* TP-rel. address, right 14 bits. */
  2001. +#define R_PARISC_TPREL16F 221 /* 16 bits TP-rel. address. */
  2002. +#define R_PARISC_TPREL16WF 222 /* 16 bits TP-rel. address. */
  2003. +#define R_PARISC_TPREL16DF 223 /* 16 bits TP-rel. address. */
  2004. +#define R_PARISC_LTOFF_TP64 224 /* 64 bits LT-TP-rel. address. */
  2005. +#define R_PARISC_LTOFF_TP14WR 227 /* LT-TP-rel. address, right 14 bits.*/
  2006. +#define R_PARISC_LTOFF_TP14DR 228 /* LT-TP-rel. address, right 14 bits.*/
  2007. +#define R_PARISC_LTOFF_TP16F 229 /* 16 bits LT-TP-rel. address. */
  2008. +#define R_PARISC_LTOFF_TP16WF 230 /* 16 bits LT-TP-rel. address. */
  2009. +#define R_PARISC_LTOFF_TP16DF 231 /* 16 bits LT-TP-rel. address. */
  2010. +#define R_PARISC_HIRESERVE 255
  2011. +
  2012. +/* Legal values for p_type field of Elf32_Phdr/Elf64_Phdr. */
  2013. +
  2014. +#define PT_HP_TLS (PT_LOOS + 0x0)
  2015. +#define PT_HP_CORE_NONE (PT_LOOS + 0x1)
  2016. +#define PT_HP_CORE_VERSION (PT_LOOS + 0x2)
  2017. +#define PT_HP_CORE_KERNEL (PT_LOOS + 0x3)
  2018. +#define PT_HP_CORE_COMM (PT_LOOS + 0x4)
  2019. +#define PT_HP_CORE_PROC (PT_LOOS + 0x5)
  2020. +#define PT_HP_CORE_LOADABLE (PT_LOOS + 0x6)
  2021. +#define PT_HP_CORE_STACK (PT_LOOS + 0x7)
  2022. +#define PT_HP_CORE_SHM (PT_LOOS + 0x8)
  2023. +#define PT_HP_CORE_MMF (PT_LOOS + 0x9)
  2024. +#define PT_HP_PARALLEL (PT_LOOS + 0x10)
  2025. +#define PT_HP_FASTBIND (PT_LOOS + 0x11)
  2026. +#define PT_HP_OPT_ANNOT (PT_LOOS + 0x12)
  2027. +#define PT_HP_HSL_ANNOT (PT_LOOS + 0x13)
  2028. +#define PT_HP_STACK (PT_LOOS + 0x14)
  2029. +
  2030. +#define PT_PARISC_ARCHEXT 0x70000000
  2031. +#define PT_PARISC_UNWIND 0x70000001
  2032. +
  2033. +/* Legal values for p_flags field of Elf32_Phdr/Elf64_Phdr. */
  2034. +
  2035. +#define PF_PARISC_SBP 0x08000000
  2036. +
  2037. +#define PF_HP_PAGE_SIZE 0x00100000
  2038. +#define PF_HP_FAR_SHARED 0x00200000
  2039. +#define PF_HP_NEAR_SHARED 0x00400000
  2040. +#define PF_HP_CODE 0x01000000
  2041. +#define PF_HP_MODIFY 0x02000000
  2042. +#define PF_HP_LAZYSWAP 0x04000000
  2043. +#define PF_HP_SBP 0x08000000
  2044. +
  2045. +
  2046. +/* Alpha specific definitions. */
  2047. +
  2048. +/* Legal values for e_flags field of Elf64_Ehdr. */
  2049. -/*
  2050. - * 68k ELF relocation types
  2051. - */
  2052. -#define R_68K_NONE 0
  2053. -#define R_68K_32 1
  2054. -#define R_68K_16 2
  2055. -#define R_68K_8 3
  2056. -#define R_68K_PC32 4
  2057. -#define R_68K_PC16 5
  2058. -#define R_68K_PC8 6
  2059. -#define R_68K_GOT32 7
  2060. -#define R_68K_GOT16 8
  2061. -#define R_68K_GOT8 9
  2062. -#define R_68K_GOT32O 10
  2063. -#define R_68K_GOT16O 11
  2064. -#define R_68K_GOT8O 12
  2065. -#define R_68K_PLT32 13
  2066. -#define R_68K_PLT16 14
  2067. -#define R_68K_PLT8 15
  2068. -#define R_68K_PLT32O 16
  2069. -#define R_68K_PLT16O 17
  2070. -#define R_68K_PLT8O 18
  2071. -#define R_68K_COPY 19
  2072. -#define R_68K_GLOB_DAT 20
  2073. -#define R_68K_JMP_SLOT 21
  2074. -#define R_68K_RELATIVE 22
  2075. -
  2076. -/*
  2077. - * Alpha ELF relocation types
  2078. - */
  2079. -#define R_ALPHA_NONE 0 /* No reloc */
  2080. -#define R_ALPHA_REFLONG 1 /* Direct 32 bit */
  2081. -#define R_ALPHA_REFQUAD 2 /* Direct 64 bit */
  2082. -#define R_ALPHA_GPREL32 3 /* GP relative 32 bit */
  2083. -#define R_ALPHA_LITERAL 4 /* GP relative 16 bit w/optimization */
  2084. -#define R_ALPHA_LITUSE 5 /* Optimization hint for LITERAL */
  2085. -#define R_ALPHA_GPDISP 6 /* Add displacement to GP */
  2086. -#define R_ALPHA_BRADDR 7 /* PC+4 relative 23 bit shifted */
  2087. -#define R_ALPHA_HINT 8 /* PC+4 relative 16 bit shifted */
  2088. -#define R_ALPHA_SREL16 9 /* PC relative 16 bit */
  2089. +#define EF_ALPHA_32BIT 1 /* All addresses must be < 2GB. */
  2090. +#define EF_ALPHA_CANRELAX 2 /* Relocations for relaxing exist. */
  2091. +
  2092. +/* Legal values for sh_type field of Elf64_Shdr. */
  2093. +
  2094. +/* These two are primerily concerned with ECOFF debugging info. */
  2095. +#define SHT_ALPHA_DEBUG 0x70000001
  2096. +#define SHT_ALPHA_REGINFO 0x70000002
  2097. +
  2098. +/* Legal values for sh_flags field of Elf64_Shdr. */
  2099. +
  2100. +#define SHF_ALPHA_GPREL 0x10000000
  2101. +
  2102. +/* Legal values for st_other field of Elf64_Sym. */
  2103. +#define STO_ALPHA_NOPV 0x80 /* No PV required. */
  2104. +#define STO_ALPHA_STD_GPLOAD 0x88 /* PV only used for initial ldgp. */
  2105. +
  2106. +/* Alpha relocs. */
  2107. +
  2108. +#define R_ALPHA_NONE 0 /* No reloc */
  2109. +#define R_ALPHA_REFLONG 1 /* Direct 32 bit */
  2110. +#define R_ALPHA_REFQUAD 2 /* Direct 64 bit */
  2111. +#define R_ALPHA_GPREL32 3 /* GP relative 32 bit */
  2112. +#define R_ALPHA_LITERAL 4 /* GP relative 16 bit w/optimization */
  2113. +#define R_ALPHA_LITUSE 5 /* Optimization hint for LITERAL */
  2114. +#define R_ALPHA_GPDISP 6 /* Add displacement to GP */
  2115. +#define R_ALPHA_BRADDR 7 /* PC+4 relative 23 bit shifted */
  2116. +#define R_ALPHA_HINT 8 /* PC+4 relative 16 bit shifted */
  2117. +#define R_ALPHA_SREL16 9 /* PC relative 16 bit */
  2118. #define R_ALPHA_SREL32 10 /* PC relative 32 bit */
  2119. #define R_ALPHA_SREL64 11 /* PC relative 64 bit */
  2120. -#define R_ALPHA_OP_PUSH 12 /* OP stack push */
  2121. -#define R_ALPHA_OP_STORE 13 /* OP stack pop and store */
  2122. -#define R_ALPHA_OP_PSUB 14 /* OP stack subtract */
  2123. -#define R_ALPHA_OP_PRSHIFT 15 /* OP stack right shift */
  2124. -#define R_ALPHA_GPVALUE 16
  2125. -#define R_ALPHA_GPRELHIGH 17
  2126. -#define R_ALPHA_GPRELLOW 18
  2127. -#define R_ALPHA_IMMED_GP_16 19
  2128. -#define R_ALPHA_IMMED_GP_HI32 20
  2129. -#define R_ALPHA_IMMED_SCN_HI32 21
  2130. -#define R_ALPHA_IMMED_BR_HI32 22
  2131. -#define R_ALPHA_IMMED_LO32 23
  2132. +#define R_ALPHA_GPRELHIGH 17 /* GP relative 32 bit, high 16 bits */
  2133. +#define R_ALPHA_GPRELLOW 18 /* GP relative 32 bit, low 16 bits */
  2134. +#define R_ALPHA_GPREL16 19 /* GP relative 16 bit */
  2135. #define R_ALPHA_COPY 24 /* Copy symbol at runtime */
  2136. #define R_ALPHA_GLOB_DAT 25 /* Create GOT entry */
  2137. #define R_ALPHA_JMP_SLOT 26 /* Create PLT entry */
  2138. #define R_ALPHA_RELATIVE 27 /* Adjust by program base */
  2139. +#define R_ALPHA_TLS_GD_HI 28
  2140. +#define R_ALPHA_TLSGD 29
  2141. +#define R_ALPHA_TLS_LDM 30
  2142. +#define R_ALPHA_DTPMOD64 31
  2143. +#define R_ALPHA_GOTDTPREL 32
  2144. +#define R_ALPHA_DTPREL64 33
  2145. +#define R_ALPHA_DTPRELHI 34
  2146. +#define R_ALPHA_DTPRELLO 35
  2147. +#define R_ALPHA_DTPREL16 36
  2148. +#define R_ALPHA_GOTTPREL 37
  2149. +#define R_ALPHA_TPREL64 38
  2150. +#define R_ALPHA_TPRELHI 39
  2151. +#define R_ALPHA_TPRELLO 40
  2152. +#define R_ALPHA_TPREL16 41
  2153. +/* Keep this the last entry. */
  2154. +#define R_ALPHA_NUM 46
  2155. -/* Legal values for e_flags field of Elf64_Ehdr. */
  2156. +/* Magic values of the LITUSE relocation addend. */
  2157. +#define LITUSE_ALPHA_ADDR 0
  2158. +#define LITUSE_ALPHA_BASE 1
  2159. +#define LITUSE_ALPHA_BYTOFF 2
  2160. +#define LITUSE_ALPHA_JSR 3
  2161. +#define LITUSE_ALPHA_TLS_GD 4
  2162. +#define LITUSE_ALPHA_TLS_LDM 5
  2163. -#define EF_ALPHA_32BIT 1 /* All addresses are below 2GB */
  2164. -/*
  2165. - * PowerPC
  2166. - */
  2167. +/* PowerPC specific declarations */
  2168. /* Values for Elf32/64_Ehdr.e_flags. */
  2169. #define EF_PPC_EMB 0x80000000 /* PowerPC embedded flag */
  2170. /* Cygnus local bits below */
  2171. #define EF_PPC_RELOCATABLE 0x00010000 /* PowerPC -mrelocatable flag*/
  2172. -#define EF_PPC_RELOCATABLE_LIB 0x00008000 /* PowerPC -mrelocatable-lib flag */
  2173. +#define EF_PPC_RELOCATABLE_LIB 0x00008000 /* PowerPC -mrelocatable-lib
  2174. + flag */
  2175. /* PowerPC relocations defined by the ABIs */
  2176. #define R_PPC_NONE 0
  2177. @@ -416,8 +1864,39 @@
  2178. #define R_PPC_SECTOFF_LO 34
  2179. #define R_PPC_SECTOFF_HI 35
  2180. #define R_PPC_SECTOFF_HA 36
  2181. +
  2182. +/* PowerPC relocations defined for the TLS access ABI. */
  2183. +#define R_PPC_TLS 67 /* none (sym+add)@tls */
  2184. +#define R_PPC_DTPMOD32 68 /* word32 (sym+add)@dtpmod */
  2185. +#define R_PPC_TPREL16 69 /* half16* (sym+add)@tprel */
  2186. +#define R_PPC_TPREL16_LO 70 /* half16 (sym+add)@tprel@l */
  2187. +#define R_PPC_TPREL16_HI 71 /* half16 (sym+add)@tprel@h */
  2188. +#define R_PPC_TPREL16_HA 72 /* half16 (sym+add)@tprel@ha */
  2189. +#define R_PPC_TPREL32 73 /* word32 (sym+add)@tprel */
  2190. +#define R_PPC_DTPREL16 74 /* half16* (sym+add)@dtprel */
  2191. +#define R_PPC_DTPREL16_LO 75 /* half16 (sym+add)@dtprel@l */
  2192. +#define R_PPC_DTPREL16_HI 76 /* half16 (sym+add)@dtprel@h */
  2193. +#define R_PPC_DTPREL16_HA 77 /* half16 (sym+add)@dtprel@ha */
  2194. +#define R_PPC_DTPREL32 78 /* word32 (sym+add)@dtprel */
  2195. +#define R_PPC_GOT_TLSGD16 79 /* half16* (sym+add)@got@tlsgd */
  2196. +#define R_PPC_GOT_TLSGD16_LO 80 /* half16 (sym+add)@got@tlsgd@l */
  2197. +#define R_PPC_GOT_TLSGD16_HI 81 /* half16 (sym+add)@got@tlsgd@h */
  2198. +#define R_PPC_GOT_TLSGD16_HA 82 /* half16 (sym+add)@got@tlsgd@ha */
  2199. +#define R_PPC_GOT_TLSLD16 83 /* half16* (sym+add)@got@tlsld */
  2200. +#define R_PPC_GOT_TLSLD16_LO 84 /* half16 (sym+add)@got@tlsld@l */
  2201. +#define R_PPC_GOT_TLSLD16_HI 85 /* half16 (sym+add)@got@tlsld@h */
  2202. +#define R_PPC_GOT_TLSLD16_HA 86 /* half16 (sym+add)@got@tlsld@ha */
  2203. +#define R_PPC_GOT_TPREL16 87 /* half16* (sym+add)@got@tprel */
  2204. +#define R_PPC_GOT_TPREL16_LO 88 /* half16 (sym+add)@got@tprel@l */
  2205. +#define R_PPC_GOT_TPREL16_HI 89 /* half16 (sym+add)@got@tprel@h */
  2206. +#define R_PPC_GOT_TPREL16_HA 90 /* half16 (sym+add)@got@tprel@ha */
  2207. +#define R_PPC_GOT_DTPREL16 91 /* half16* (sym+add)@got@dtprel */
  2208. +#define R_PPC_GOT_DTPREL16_LO 92 /* half16* (sym+add)@got@dtprel@l */
  2209. +#define R_PPC_GOT_DTPREL16_HI 93 /* half16* (sym+add)@got@dtprel@h */
  2210. +#define R_PPC_GOT_DTPREL16_HA 94 /* half16* (sym+add)@got@dtprel@ha */
  2211. +
  2212. /* Keep this the last entry. */
  2213. -#define R_PPC_NUM 37
  2214. +#define R_PPC_NUM 95
  2215. /* The remaining relocs are from the Embedded ELF ABI, and are not
  2216. in the SVR4 ELF ABI. */
  2217. @@ -450,9 +1929,165 @@
  2218. that may still be in object files. */
  2219. #define R_PPC_TOC16 255
  2220. -/*
  2221. - * ARM ELF relocation types
  2222. - */
  2223. +
  2224. +/* PowerPC64 relocations defined by the ABIs */
  2225. +#define R_PPC64_NONE R_PPC_NONE
  2226. +#define R_PPC64_ADDR32 R_PPC_ADDR32 /* 32bit absolute address */
  2227. +#define R_PPC64_ADDR24 R_PPC_ADDR24 /* 26bit address, word aligned */
  2228. +#define R_PPC64_ADDR16 R_PPC_ADDR16 /* 16bit absolute address */
  2229. +#define R_PPC64_ADDR16_LO R_PPC_ADDR16_LO /* lower 16bits of address */
  2230. +#define R_PPC64_ADDR16_HI R_PPC_ADDR16_HI /* high 16bits of address. */
  2231. +#define R_PPC64_ADDR16_HA R_PPC_ADDR16_HA /* adjusted high 16bits. */
  2232. +#define R_PPC64_ADDR14 R_PPC_ADDR14 /* 16bit address, word aligned */
  2233. +#define R_PPC64_ADDR14_BRTAKEN R_PPC_ADDR14_BRTAKEN
  2234. +#define R_PPC64_ADDR14_BRNTAKEN R_PPC_ADDR14_BRNTAKEN
  2235. +#define R_PPC64_REL24 R_PPC_REL24 /* PC-rel. 26 bit, word aligned */
  2236. +#define R_PPC64_REL14 R_PPC_REL14 /* PC relative 16 bit */
  2237. +#define R_PPC64_REL14_BRTAKEN R_PPC_REL14_BRTAKEN
  2238. +#define R_PPC64_REL14_BRNTAKEN R_PPC_REL14_BRNTAKEN
  2239. +#define R_PPC64_GOT16 R_PPC_GOT16
  2240. +#define R_PPC64_GOT16_LO R_PPC_GOT16_LO
  2241. +#define R_PPC64_GOT16_HI R_PPC_GOT16_HI
  2242. +#define R_PPC64_GOT16_HA R_PPC_GOT16_HA
  2243. +
  2244. +#define R_PPC64_COPY R_PPC_COPY
  2245. +#define R_PPC64_GLOB_DAT R_PPC_GLOB_DAT
  2246. +#define R_PPC64_JMP_SLOT R_PPC_JMP_SLOT
  2247. +#define R_PPC64_RELATIVE R_PPC_RELATIVE
  2248. +
  2249. +#define R_PPC64_UADDR32 R_PPC_UADDR32
  2250. +#define R_PPC64_UADDR16 R_PPC_UADDR16
  2251. +#define R_PPC64_REL32 R_PPC_REL32
  2252. +#define R_PPC64_PLT32 R_PPC_PLT32
  2253. +#define R_PPC64_PLTREL32 R_PPC_PLTREL32
  2254. +#define R_PPC64_PLT16_LO R_PPC_PLT16_LO
  2255. +#define R_PPC64_PLT16_HI R_PPC_PLT16_HI
  2256. +#define R_PPC64_PLT16_HA R_PPC_PLT16_HA
  2257. +
  2258. +#define R_PPC64_SECTOFF R_PPC_SECTOFF
  2259. +#define R_PPC64_SECTOFF_LO R_PPC_SECTOFF_LO
  2260. +#define R_PPC64_SECTOFF_HI R_PPC_SECTOFF_HI
  2261. +#define R_PPC64_SECTOFF_HA R_PPC_SECTOFF_HA
  2262. +#define R_PPC64_ADDR30 37 /* word30 (S + A - P) >> 2 */
  2263. +#define R_PPC64_ADDR64 38 /* doubleword64 S + A */
  2264. +#define R_PPC64_ADDR16_HIGHER 39 /* half16 #higher(S + A) */
  2265. +#define R_PPC64_ADDR16_HIGHERA 40 /* half16 #highera(S + A) */
  2266. +#define R_PPC64_ADDR16_HIGHEST 41 /* half16 #highest(S + A) */
  2267. +#define R_PPC64_ADDR16_HIGHESTA 42 /* half16 #highesta(S + A) */
  2268. +#define R_PPC64_UADDR64 43 /* doubleword64 S + A */
  2269. +#define R_PPC64_REL64 44 /* doubleword64 S + A - P */
  2270. +#define R_PPC64_PLT64 45 /* doubleword64 L + A */
  2271. +#define R_PPC64_PLTREL64 46 /* doubleword64 L + A - P */
  2272. +#define R_PPC64_TOC16 47 /* half16* S + A - .TOC */
  2273. +#define R_PPC64_TOC16_LO 48 /* half16 #lo(S + A - .TOC.) */
  2274. +#define R_PPC64_TOC16_HI 49 /* half16 #hi(S + A - .TOC.) */
  2275. +#define R_PPC64_TOC16_HA 50 /* half16 #ha(S + A - .TOC.) */
  2276. +#define R_PPC64_TOC 51 /* doubleword64 .TOC */
  2277. +#define R_PPC64_PLTGOT16 52 /* half16* M + A */
  2278. +#define R_PPC64_PLTGOT16_LO 53 /* half16 #lo(M + A) */
  2279. +#define R_PPC64_PLTGOT16_HI 54 /* half16 #hi(M + A) */
  2280. +#define R_PPC64_PLTGOT16_HA 55 /* half16 #ha(M + A) */
  2281. +
  2282. +#define R_PPC64_ADDR16_DS 56 /* half16ds* (S + A) >> 2 */
  2283. +#define R_PPC64_ADDR16_LO_DS 57 /* half16ds #lo(S + A) >> 2 */
  2284. +#define R_PPC64_GOT16_DS 58 /* half16ds* (G + A) >> 2 */
  2285. +#define R_PPC64_GOT16_LO_DS 59 /* half16ds #lo(G + A) >> 2 */
  2286. +#define R_PPC64_PLT16_LO_DS 60 /* half16ds #lo(L + A) >> 2 */
  2287. +#define R_PPC64_SECTOFF_DS 61 /* half16ds* (R + A) >> 2 */
  2288. +#define R_PPC64_SECTOFF_LO_DS 62 /* half16ds #lo(R + A) >> 2 */
  2289. +#define R_PPC64_TOC16_DS 63 /* half16ds* (S + A - .TOC.) >> 2 */
  2290. +#define R_PPC64_TOC16_LO_DS 64 /* half16ds #lo(S + A - .TOC.) >> 2 */
  2291. +#define R_PPC64_PLTGOT16_DS 65 /* half16ds* (M + A) >> 2 */
  2292. +#define R_PPC64_PLTGOT16_LO_DS 66 /* half16ds #lo(M + A) >> 2 */
  2293. +
  2294. +/* PowerPC64 relocations defined for the TLS access ABI. */
  2295. +#define R_PPC64_TLS 67 /* none (sym+add)@tls */
  2296. +#define R_PPC64_DTPMOD64 68 /* doubleword64 (sym+add)@dtpmod */
  2297. +#define R_PPC64_TPREL16 69 /* half16* (sym+add)@tprel */
  2298. +#define R_PPC64_TPREL16_LO 70 /* half16 (sym+add)@tprel@l */
  2299. +#define R_PPC64_TPREL16_HI 71 /* half16 (sym+add)@tprel@h */
  2300. +#define R_PPC64_TPREL16_HA 72 /* half16 (sym+add)@tprel@ha */
  2301. +#define R_PPC64_TPREL64 73 /* doubleword64 (sym+add)@tprel */
  2302. +#define R_PPC64_DTPREL16 74 /* half16* (sym+add)@dtprel */
  2303. +#define R_PPC64_DTPREL16_LO 75 /* half16 (sym+add)@dtprel@l */
  2304. +#define R_PPC64_DTPREL16_HI 76 /* half16 (sym+add)@dtprel@h */
  2305. +#define R_PPC64_DTPREL16_HA 77 /* half16 (sym+add)@dtprel@ha */
  2306. +#define R_PPC64_DTPREL64 78 /* doubleword64 (sym+add)@dtprel */
  2307. +#define R_PPC64_GOT_TLSGD16 79 /* half16* (sym+add)@got@tlsgd */
  2308. +#define R_PPC64_GOT_TLSGD16_LO 80 /* half16 (sym+add)@got@tlsgd@l */
  2309. +#define R_PPC64_GOT_TLSGD16_HI 81 /* half16 (sym+add)@got@tlsgd@h */
  2310. +#define R_PPC64_GOT_TLSGD16_HA 82 /* half16 (sym+add)@got@tlsgd@ha */
  2311. +#define R_PPC64_GOT_TLSLD16 83 /* half16* (sym+add)@got@tlsld */
  2312. +#define R_PPC64_GOT_TLSLD16_LO 84 /* half16 (sym+add)@got@tlsld@l */
  2313. +#define R_PPC64_GOT_TLSLD16_HI 85 /* half16 (sym+add)@got@tlsld@h */
  2314. +#define R_PPC64_GOT_TLSLD16_HA 86 /* half16 (sym+add)@got@tlsld@ha */
  2315. +#define R_PPC64_GOT_TPREL16_DS 87 /* half16ds* (sym+add)@got@tprel */
  2316. +#define R_PPC64_GOT_TPREL16_LO_DS 88 /* half16ds (sym+add)@got@tprel@l */
  2317. +#define R_PPC64_GOT_TPREL16_HI 89 /* half16 (sym+add)@got@tprel@h */
  2318. +#define R_PPC64_GOT_TPREL16_HA 90 /* half16 (sym+add)@got@tprel@ha */
  2319. +#define R_PPC64_GOT_DTPREL16_DS 91 /* half16ds* (sym+add)@got@dtprel */
  2320. +#define R_PPC64_GOT_DTPREL16_LO_DS 92 /* half16ds (sym+add)@got@dtprel@l */
  2321. +#define R_PPC64_GOT_DTPREL16_HI 93 /* half16 (sym+add)@got@dtprel@h */
  2322. +#define R_PPC64_GOT_DTPREL16_HA 94 /* half16 (sym+add)@got@dtprel@ha */
  2323. +#define R_PPC64_TPREL16_DS 95 /* half16ds* (sym+add)@tprel */
  2324. +#define R_PPC64_TPREL16_LO_DS 96 /* half16ds (sym+add)@tprel@l */
  2325. +#define R_PPC64_TPREL16_HIGHER 97 /* half16 (sym+add)@tprel@higher */
  2326. +#define R_PPC64_TPREL16_HIGHERA 98 /* half16 (sym+add)@tprel@highera */
  2327. +#define R_PPC64_TPREL16_HIGHEST 99 /* half16 (sym+add)@tprel@highest */
  2328. +#define R_PPC64_TPREL16_HIGHESTA 100 /* half16 (sym+add)@tprel@highesta */
  2329. +#define R_PPC64_DTPREL16_DS 101 /* half16ds* (sym+add)@dtprel */
  2330. +#define R_PPC64_DTPREL16_LO_DS 102 /* half16ds (sym+add)@dtprel@l */
  2331. +#define R_PPC64_DTPREL16_HIGHER 103 /* half16 (sym+add)@dtprel@higher */
  2332. +#define R_PPC64_DTPREL16_HIGHERA 104 /* half16 (sym+add)@dtprel@highera */
  2333. +#define R_PPC64_DTPREL16_HIGHEST 105 /* half16 (sym+add)@dtprel@highest */
  2334. +#define R_PPC64_DTPREL16_HIGHESTA 106 /* half16 (sym+add)@dtprel@highesta */
  2335. +
  2336. +/* Keep this the last entry. */
  2337. +#define R_PPC64_NUM 107
  2338. +
  2339. +/* PowerPC64 specific values for the Dyn d_tag field. */
  2340. +#define DT_PPC64_GLINK (DT_LOPROC + 0)
  2341. +#define DT_PPC64_NUM 1
  2342. +
  2343. +
  2344. +/* ARM specific declarations */
  2345. +
  2346. +/* Processor specific flags for the ELF header e_flags field. */
  2347. +#define EF_ARM_RELEXEC 0x01
  2348. +#define EF_ARM_HASENTRY 0x02
  2349. +#define EF_ARM_INTERWORK 0x04
  2350. +#define EF_ARM_APCS_26 0x08
  2351. +#define EF_ARM_APCS_FLOAT 0x10
  2352. +#define EF_ARM_PIC 0x20
  2353. +#define EF_ARM_ALIGN8 0x40 /* 8-bit structure alignment is in use */
  2354. +#define EF_ARM_NEW_ABI 0x80
  2355. +#define EF_ARM_OLD_ABI 0x100
  2356. +
  2357. +/* Other constants defined in the ARM ELF spec. version B-01. */
  2358. +/* NB. These conflict with values defined above. */
  2359. +#define EF_ARM_SYMSARESORTED 0x04
  2360. +#define EF_ARM_DYNSYMSUSESEGIDX 0x08
  2361. +#define EF_ARM_MAPSYMSFIRST 0x10
  2362. +#define EF_ARM_EABIMASK 0XFF000000
  2363. +
  2364. +#define EF_ARM_EABI_VERSION(flags) ((flags) & EF_ARM_EABIMASK)
  2365. +#define EF_ARM_EABI_UNKNOWN 0x00000000
  2366. +#define EF_ARM_EABI_VER1 0x01000000
  2367. +#define EF_ARM_EABI_VER2 0x02000000
  2368. +
  2369. +/* Additional symbol types for Thumb */
  2370. +#define STT_ARM_TFUNC 0xd
  2371. +
  2372. +/* ARM-specific values for sh_flags */
  2373. +#define SHF_ARM_ENTRYSECT 0x10000000 /* Section contains an entry point */
  2374. +#define SHF_ARM_COMDEF 0x80000000 /* Section may be multiply defined
  2375. + in the input to a link step */
  2376. +
  2377. +/* ARM-specific program header flags */
  2378. +#define PF_ARM_SB 0x10000000 /* Segment contains the location
  2379. + addressed by the static base */
  2380. +
  2381. +/* ARM relocs. */
  2382. #define R_ARM_NONE 0 /* No reloc */
  2383. #define R_ARM_PC24 1 /* PC relative 26 bit branch */
  2384. #define R_ARM_ABS32 2 /* Direct 32 bit */
  2385. @@ -478,6 +2113,12 @@
  2386. #define R_ARM_GOTPC 25 /* 32 bit PC relative offset to GOT */
  2387. #define R_ARM_GOT32 26 /* 32 bit GOT entry */
  2388. #define R_ARM_PLT32 27 /* 32 bit PLT address */
  2389. +#define R_ARM_ALU_PCREL_7_0 32
  2390. +#define R_ARM_ALU_PCREL_15_8 33
  2391. +#define R_ARM_ALU_PCREL_23_15 34
  2392. +#define R_ARM_LDR_SBREL_11_0 35
  2393. +#define R_ARM_ALU_SBREL_19_12 36
  2394. +#define R_ARM_ALU_SBREL_27_20 37
  2395. #define R_ARM_GNU_VTENTRY 100
  2396. #define R_ARM_GNU_VTINHERIT 101
  2397. #define R_ARM_THM_PC11 102 /* thumb unconditional branch */
  2398. @@ -492,259 +2133,294 @@
  2399. /* Keep this the last entry. */
  2400. #define R_ARM_NUM 256
  2401. -/* Processor specific flags for the ELF header e_flags field. */
  2402. -#define EF_ARM_RELEXEC 0x01
  2403. -#define EF_ARM_HASENTRY 0x02
  2404. -#define EF_ARM_INTERWORK 0x04
  2405. -#define EF_ARM_APCS_26 0x08
  2406. -#define EF_ARM_APCS_FLOAT 0x10
  2407. -#define EF_ARM_PIC 0x20
  2408. -#define EF_ALIGN8 0x40 /* 8-bit structure alignment is in use */
  2409. -#define EF_NEW_ABI 0x80
  2410. -#define EF_OLD_ABI 0x100
  2411. -
  2412. -/* Additional symbol types for Thumb */
  2413. -#define STT_ARM_TFUNC 0xd
  2414. -
  2415. -
  2416. -
  2417. -typedef struct elf32_rel {
  2418. - Elf32_Addr r_offset;
  2419. - Elf32_Word r_info;
  2420. -} Elf32_Rel;
  2421. -
  2422. -typedef struct elf64_rel {
  2423. - Elf64_Addr r_offset; /* Location at which to apply the action */
  2424. - Elf64_Xword r_info; /* index and type of relocation */
  2425. -} Elf64_Rel;
  2426. -
  2427. -typedef struct elf32_rela{
  2428. - Elf32_Addr r_offset;
  2429. - Elf32_Word r_info;
  2430. - Elf32_Sword r_addend;
  2431. -} Elf32_Rela;
  2432. +/* IA-64 specific declarations. */
  2433. -typedef struct elf64_rela {
  2434. - Elf64_Addr r_offset; /* Location at which to apply the action */
  2435. - Elf64_Xword r_info; /* index and type of relocation */
  2436. - Elf64_Sxword r_addend; /* Constant addend used to compute value */
  2437. -} Elf64_Rela;
  2438. -
  2439. -typedef struct elf32_sym{
  2440. - Elf32_Word st_name;
  2441. - Elf32_Addr st_value;
  2442. - Elf32_Word st_size;
  2443. - unsigned char st_info;
  2444. - unsigned char st_other;
  2445. - Elf32_Half st_shndx;
  2446. -} Elf32_Sym;
  2447. -
  2448. -typedef struct elf64_sym {
  2449. - Elf64_Word st_name; /* Symbol name, index in string tbl */
  2450. - unsigned char st_info; /* Type and binding attributes */
  2451. - unsigned char st_other; /* No defined meaning, 0 */
  2452. - Elf64_Half st_shndx; /* Associated section index */
  2453. - Elf64_Addr st_value; /* Value of the symbol */
  2454. - Elf64_Xword st_size; /* Associated symbol size */
  2455. -} Elf64_Sym;
  2456. -
  2457. -
  2458. -#define EI_NIDENT 16
  2459. -
  2460. -typedef struct elf32_hdr{
  2461. - unsigned char e_ident[EI_NIDENT];
  2462. - Elf32_Half e_type;
  2463. - Elf32_Half e_machine;
  2464. - Elf32_Word e_version;
  2465. - Elf32_Addr e_entry; /* Entry point */
  2466. - Elf32_Off e_phoff;
  2467. - Elf32_Off e_shoff;
  2468. - Elf32_Word e_flags;
  2469. - Elf32_Half e_ehsize;
  2470. - Elf32_Half e_phentsize;
  2471. - Elf32_Half e_phnum;
  2472. - Elf32_Half e_shentsize;
  2473. - Elf32_Half e_shnum;
  2474. - Elf32_Half e_shstrndx;
  2475. -} Elf32_Ehdr;
  2476. -
  2477. -typedef struct elf64_hdr {
  2478. - unsigned char e_ident[16]; /* ELF "magic number" */
  2479. - Elf64_Half e_type;
  2480. - Elf64_Half e_machine;
  2481. - Elf64_Word e_version;
  2482. - Elf64_Addr e_entry; /* Entry point virtual address */
  2483. - Elf64_Off e_phoff; /* Program header table file offset */
  2484. - Elf64_Off e_shoff; /* Section header table file offset */
  2485. - Elf64_Word e_flags;
  2486. - Elf64_Half e_ehsize;
  2487. - Elf64_Half e_phentsize;
  2488. - Elf64_Half e_phnum;
  2489. - Elf64_Half e_shentsize;
  2490. - Elf64_Half e_shnum;
  2491. - Elf64_Half e_shstrndx;
  2492. -} Elf64_Ehdr;
  2493. -
  2494. -/* These constants define the permissions on sections in the program
  2495. - header, p_flags. */
  2496. -#define PF_R 0x4
  2497. -#define PF_W 0x2
  2498. -#define PF_X 0x1
  2499. -
  2500. -typedef struct elf32_phdr{
  2501. - Elf32_Word p_type;
  2502. - Elf32_Off p_offset;
  2503. - Elf32_Addr p_vaddr;
  2504. - Elf32_Addr p_paddr;
  2505. - Elf32_Word p_filesz;
  2506. - Elf32_Word p_memsz;
  2507. - Elf32_Word p_flags;
  2508. - Elf32_Word p_align;
  2509. -} Elf32_Phdr;
  2510. -
  2511. -typedef struct elf64_phdr {
  2512. - Elf64_Word p_type;
  2513. - Elf64_Word p_flags;
  2514. - Elf64_Off p_offset; /* Segment file offset */
  2515. - Elf64_Addr p_vaddr; /* Segment virtual address */
  2516. - Elf64_Addr p_paddr; /* Segment physical address */
  2517. - Elf64_Xword p_filesz; /* Segment size in file */
  2518. - Elf64_Xword p_memsz; /* Segment size in memory */
  2519. - Elf64_Xword p_align; /* Segment alignment, file & memory */
  2520. -} Elf64_Phdr;
  2521. -
  2522. -/* sh_type */
  2523. -#define SHT_NULL 0
  2524. -#define SHT_PROGBITS 1
  2525. -#define SHT_SYMTAB 2
  2526. -#define SHT_STRTAB 3
  2527. -#define SHT_RELA 4
  2528. -#define SHT_HASH 5
  2529. -#define SHT_DYNAMIC 6
  2530. -#define SHT_NOTE 7
  2531. -#define SHT_NOBITS 8
  2532. -#define SHT_REL 9
  2533. -#define SHT_SHLIB 10
  2534. -#define SHT_DYNSYM 11
  2535. -#define SHT_NUM 12
  2536. -#define SHT_LOPROC 0x70000000
  2537. -#define SHT_HIPROC 0x7fffffff
  2538. -#define SHT_LOUSER 0x80000000
  2539. -#define SHT_HIUSER 0xffffffff
  2540. -#define SHT_MIPS_LIST 0x70000000
  2541. -#define SHT_MIPS_CONFLICT 0x70000002
  2542. -#define SHT_MIPS_GPTAB 0x70000003
  2543. -#define SHT_MIPS_UCODE 0x70000004
  2544. -
  2545. -/* sh_flags */
  2546. -#define SHF_WRITE 0x1
  2547. -#define SHF_ALLOC 0x2
  2548. -#define SHF_EXECINSTR 0x4
  2549. -#define SHF_MASKPROC 0xf0000000
  2550. -#define SHF_MIPS_GPREL 0x10000000
  2551. -#define SHF_ALPHA_GPREL 0x10000000
  2552. -
  2553. -/* special section indexes */
  2554. -#define SHN_UNDEF 0
  2555. -#define SHN_LORESERVE 0xff00
  2556. -#define SHN_LOPROC 0xff00
  2557. -#define SHN_HIPROC 0xff1f
  2558. -#define SHN_ABS 0xfff1
  2559. -#define SHN_COMMON 0xfff2
  2560. -#define SHN_HIRESERVE 0xffff
  2561. -#define SHN_MIPS_ACCOMON 0xff00
  2562. -
  2563. -typedef struct {
  2564. - Elf32_Word sh_name;
  2565. - Elf32_Word sh_type;
  2566. - Elf32_Word sh_flags;
  2567. - Elf32_Addr sh_addr;
  2568. - Elf32_Off sh_offset;
  2569. - Elf32_Word sh_size;
  2570. - Elf32_Word sh_link;
  2571. - Elf32_Word sh_info;
  2572. - Elf32_Word sh_addralign;
  2573. - Elf32_Word sh_entsize;
  2574. -} Elf32_Shdr;
  2575. -
  2576. -typedef struct elf64_shdr {
  2577. - Elf64_Word sh_name; /* Section name, index in string tbl */
  2578. - Elf64_Word sh_type; /* Type of section */
  2579. - Elf64_Xword sh_flags; /* Miscellaneous section attributes */
  2580. - Elf64_Addr sh_addr; /* Section virtual addr at execution */
  2581. - Elf64_Off sh_offset; /* Section file offset */
  2582. - Elf64_Xword sh_size; /* Size of section in bytes */
  2583. - Elf64_Word sh_link; /* Index of another section */
  2584. - Elf64_Word sh_info; /* Additional section information */
  2585. - Elf64_Xword sh_addralign; /* Section alignment */
  2586. - Elf64_Xword sh_entsize; /* Entry size if section holds table */
  2587. -} Elf64_Shdr;
  2588. -
  2589. -#define EI_MAG0 0 /* e_ident[] indexes */
  2590. -#define EI_MAG1 1
  2591. -#define EI_MAG2 2
  2592. -#define EI_MAG3 3
  2593. -#define EI_CLASS 4
  2594. -#define EI_DATA 5
  2595. -#define EI_VERSION 6
  2596. -#define EI_PAD 7
  2597. -
  2598. -#define ELFMAG0 0x7f /* EI_MAG */
  2599. -#define ELFMAG1 'E'
  2600. -#define ELFMAG2 'L'
  2601. -#define ELFMAG3 'F'
  2602. -#define ELFMAG "\177ELF"
  2603. -#define SELFMAG 4
  2604. -
  2605. -#define ELFCLASSNONE 0 /* EI_CLASS */
  2606. -#define ELFCLASS32 1
  2607. -#define ELFCLASS64 2
  2608. -#define ELFCLASSNUM 3
  2609. -
  2610. -#define ELFDATANONE 0 /* e_ident[EI_DATA] */
  2611. -#define ELFDATA2LSB 1
  2612. -#define ELFDATA2MSB 2
  2613. -
  2614. -#define EV_NONE 0 /* e_version, EI_VERSION */
  2615. -#define EV_CURRENT 1
  2616. -#define EV_NUM 2
  2617. -
  2618. -/* Notes used in ET_CORE */
  2619. -#define NT_PRSTATUS 1
  2620. -#define NT_PRFPREG 2
  2621. -#define NT_PRPSINFO 3
  2622. -#define NT_TASKSTRUCT 4
  2623. -#define NT_PRFPXREG 20
  2624. -
  2625. -/* Note header in a PT_NOTE section */
  2626. -typedef struct elf32_note {
  2627. - Elf32_Word n_namesz; /* Name size */
  2628. - Elf32_Word n_descsz; /* Content size */
  2629. - Elf32_Word n_type; /* Content type */
  2630. -} Elf32_Nhdr;
  2631. -
  2632. -/* Note header in a PT_NOTE section */
  2633. -typedef struct elf64_note {
  2634. - Elf64_Word n_namesz; /* Name size */
  2635. - Elf64_Word n_descsz; /* Content size */
  2636. - Elf64_Word n_type; /* Content type */
  2637. -} Elf64_Nhdr;
  2638. +/* Processor specific flags for the Ehdr e_flags field. */
  2639. +#define EF_IA_64_MASKOS 0x0000000f /* os-specific flags */
  2640. +#define EF_IA_64_ABI64 0x00000010 /* 64-bit ABI */
  2641. +#define EF_IA_64_ARCH 0xff000000 /* arch. version mask */
  2642. +
  2643. +/* Processor specific values for the Phdr p_type field. */
  2644. +#define PT_IA_64_ARCHEXT (PT_LOPROC + 0) /* arch extension bits */
  2645. +#define PT_IA_64_UNWIND (PT_LOPROC + 1) /* ia64 unwind bits */
  2646. +
  2647. +/* Processor specific flags for the Phdr p_flags field. */
  2648. +#define PF_IA_64_NORECOV 0x80000000 /* spec insns w/o recovery */
  2649. +
  2650. +/* Processor specific values for the Shdr sh_type field. */
  2651. +#define SHT_IA_64_EXT (SHT_LOPROC + 0) /* extension bits */
  2652. +#define SHT_IA_64_UNWIND (SHT_LOPROC + 1) /* unwind bits */
  2653. +
  2654. +/* Processor specific flags for the Shdr sh_flags field. */
  2655. +#define SHF_IA_64_SHORT 0x10000000 /* section near gp */
  2656. +#define SHF_IA_64_NORECOV 0x20000000 /* spec insns w/o recovery */
  2657. +
  2658. +/* Processor specific values for the Dyn d_tag field. */
  2659. +#define DT_IA_64_PLT_RESERVE (DT_LOPROC + 0)
  2660. +#define DT_IA_64_NUM 1
  2661. +
  2662. +/* IA-64 relocations. */
  2663. +#define R_IA64_NONE 0x00 /* none */
  2664. +#define R_IA64_IMM14 0x21 /* symbol + addend, add imm14 */
  2665. +#define R_IA64_IMM22 0x22 /* symbol + addend, add imm22 */
  2666. +#define R_IA64_IMM64 0x23 /* symbol + addend, mov imm64 */
  2667. +#define R_IA64_DIR32MSB 0x24 /* symbol + addend, data4 MSB */
  2668. +#define R_IA64_DIR32LSB 0x25 /* symbol + addend, data4 LSB */
  2669. +#define R_IA64_DIR64MSB 0x26 /* symbol + addend, data8 MSB */
  2670. +#define R_IA64_DIR64LSB 0x27 /* symbol + addend, data8 LSB */
  2671. +#define R_IA64_GPREL22 0x2a /* @gprel(sym + add), add imm22 */
  2672. +#define R_IA64_GPREL64I 0x2b /* @gprel(sym + add), mov imm64 */
  2673. +#define R_IA64_GPREL32MSB 0x2c /* @gprel(sym + add), data4 MSB */
  2674. +#define R_IA64_GPREL32LSB 0x2d /* @gprel(sym + add), data4 LSB */
  2675. +#define R_IA64_GPREL64MSB 0x2e /* @gprel(sym + add), data8 MSB */
  2676. +#define R_IA64_GPREL64LSB 0x2f /* @gprel(sym + add), data8 LSB */
  2677. +#define R_IA64_LTOFF22 0x32 /* @ltoff(sym + add), add imm22 */
  2678. +#define R_IA64_LTOFF64I 0x33 /* @ltoff(sym + add), mov imm64 */
  2679. +#define R_IA64_PLTOFF22 0x3a /* @pltoff(sym + add), add imm22 */
  2680. +#define R_IA64_PLTOFF64I 0x3b /* @pltoff(sym + add), mov imm64 */
  2681. +#define R_IA64_PLTOFF64MSB 0x3e /* @pltoff(sym + add), data8 MSB */
  2682. +#define R_IA64_PLTOFF64LSB 0x3f /* @pltoff(sym + add), data8 LSB */
  2683. +#define R_IA64_FPTR64I 0x43 /* @fptr(sym + add), mov imm64 */
  2684. +#define R_IA64_FPTR32MSB 0x44 /* @fptr(sym + add), data4 MSB */
  2685. +#define R_IA64_FPTR32LSB 0x45 /* @fptr(sym + add), data4 LSB */
  2686. +#define R_IA64_FPTR64MSB 0x46 /* @fptr(sym + add), data8 MSB */
  2687. +#define R_IA64_FPTR64LSB 0x47 /* @fptr(sym + add), data8 LSB */
  2688. +#define R_IA64_PCREL60B 0x48 /* @pcrel(sym + add), brl */
  2689. +#define R_IA64_PCREL21B 0x49 /* @pcrel(sym + add), ptb, call */
  2690. +#define R_IA64_PCREL21M 0x4a /* @pcrel(sym + add), chk.s */
  2691. +#define R_IA64_PCREL21F 0x4b /* @pcrel(sym + add), fchkf */
  2692. +#define R_IA64_PCREL32MSB 0x4c /* @pcrel(sym + add), data4 MSB */
  2693. +#define R_IA64_PCREL32LSB 0x4d /* @pcrel(sym + add), data4 LSB */
  2694. +#define R_IA64_PCREL64MSB 0x4e /* @pcrel(sym + add), data8 MSB */
  2695. +#define R_IA64_PCREL64LSB 0x4f /* @pcrel(sym + add), data8 LSB */
  2696. +#define R_IA64_LTOFF_FPTR22 0x52 /* @ltoff(@fptr(s+a)), imm22 */
  2697. +#define R_IA64_LTOFF_FPTR64I 0x53 /* @ltoff(@fptr(s+a)), imm64 */
  2698. +#define R_IA64_LTOFF_FPTR32MSB 0x54 /* @ltoff(@fptr(s+a)), data4 MSB */
  2699. +#define R_IA64_LTOFF_FPTR32LSB 0x55 /* @ltoff(@fptr(s+a)), data4 LSB */
  2700. +#define R_IA64_LTOFF_FPTR64MSB 0x56 /* @ltoff(@fptr(s+a)), data8 MSB */
  2701. +#define R_IA64_LTOFF_FPTR64LSB 0x57 /* @ltoff(@fptr(s+a)), data8 LSB */
  2702. +#define R_IA64_SEGREL32MSB 0x5c /* @segrel(sym + add), data4 MSB */
  2703. +#define R_IA64_SEGREL32LSB 0x5d /* @segrel(sym + add), data4 LSB */
  2704. +#define R_IA64_SEGREL64MSB 0x5e /* @segrel(sym + add), data8 MSB */
  2705. +#define R_IA64_SEGREL64LSB 0x5f /* @segrel(sym + add), data8 LSB */
  2706. +#define R_IA64_SECREL32MSB 0x64 /* @secrel(sym + add), data4 MSB */
  2707. +#define R_IA64_SECREL32LSB 0x65 /* @secrel(sym + add), data4 LSB */
  2708. +#define R_IA64_SECREL64MSB 0x66 /* @secrel(sym + add), data8 MSB */
  2709. +#define R_IA64_SECREL64LSB 0x67 /* @secrel(sym + add), data8 LSB */
  2710. +#define R_IA64_REL32MSB 0x6c /* data 4 + REL */
  2711. +#define R_IA64_REL32LSB 0x6d /* data 4 + REL */
  2712. +#define R_IA64_REL64MSB 0x6e /* data 8 + REL */
  2713. +#define R_IA64_REL64LSB 0x6f /* data 8 + REL */
  2714. +#define R_IA64_LTV32MSB 0x74 /* symbol + addend, data4 MSB */
  2715. +#define R_IA64_LTV32LSB 0x75 /* symbol + addend, data4 LSB */
  2716. +#define R_IA64_LTV64MSB 0x76 /* symbol + addend, data8 MSB */
  2717. +#define R_IA64_LTV64LSB 0x77 /* symbol + addend, data8 LSB */
  2718. +#define R_IA64_PCREL21BI 0x79 /* @pcrel(sym + add), 21bit inst */
  2719. +#define R_IA64_PCREL22 0x7a /* @pcrel(sym + add), 22bit inst */
  2720. +#define R_IA64_PCREL64I 0x7b /* @pcrel(sym + add), 64bit inst */
  2721. +#define R_IA64_IPLTMSB 0x80 /* dynamic reloc, imported PLT, MSB */
  2722. +#define R_IA64_IPLTLSB 0x81 /* dynamic reloc, imported PLT, LSB */
  2723. +#define R_IA64_COPY 0x84 /* copy relocation */
  2724. +#define R_IA64_SUB 0x85 /* Addend and symbol difference */
  2725. +#define R_IA64_LTOFF22X 0x86 /* LTOFF22, relaxable. */
  2726. +#define R_IA64_LDXMOV 0x87 /* Use of LTOFF22X. */
  2727. +#define R_IA64_TPREL14 0x91 /* @tprel(sym + add), imm14 */
  2728. +#define R_IA64_TPREL22 0x92 /* @tprel(sym + add), imm22 */
  2729. +#define R_IA64_TPREL64I 0x93 /* @tprel(sym + add), imm64 */
  2730. +#define R_IA64_TPREL64MSB 0x96 /* @tprel(sym + add), data8 MSB */
  2731. +#define R_IA64_TPREL64LSB 0x97 /* @tprel(sym + add), data8 LSB */
  2732. +#define R_IA64_LTOFF_TPREL22 0x9a /* @ltoff(@tprel(s+a)), imm2 */
  2733. +#define R_IA64_DTPMOD64MSB 0xa6 /* @dtpmod(sym + add), data8 MSB */
  2734. +#define R_IA64_DTPMOD64LSB 0xa7 /* @dtpmod(sym + add), data8 LSB */
  2735. +#define R_IA64_LTOFF_DTPMOD22 0xaa /* @ltoff(@dtpmod(sym + add)), imm22 */
  2736. +#define R_IA64_DTPREL14 0xb1 /* @dtprel(sym + add), imm14 */
  2737. +#define R_IA64_DTPREL22 0xb2 /* @dtprel(sym + add), imm22 */
  2738. +#define R_IA64_DTPREL64I 0xb3 /* @dtprel(sym + add), imm64 */
  2739. +#define R_IA64_DTPREL32MSB 0xb4 /* @dtprel(sym + add), data4 MSB */
  2740. +#define R_IA64_DTPREL32LSB 0xb5 /* @dtprel(sym + add), data4 LSB */
  2741. +#define R_IA64_DTPREL64MSB 0xb6 /* @dtprel(sym + add), data8 MSB */
  2742. +#define R_IA64_DTPREL64LSB 0xb7 /* @dtprel(sym + add), data8 LSB */
  2743. +#define R_IA64_LTOFF_DTPREL22 0xba /* @ltoff(@dtprel(s+a)), imm22 */
  2744. +
  2745. +/* SH specific declarations */
  2746. +
  2747. +/* SH relocs. */
  2748. +#define R_SH_NONE 0
  2749. +#define R_SH_DIR32 1
  2750. +#define R_SH_REL32 2
  2751. +#define R_SH_DIR8WPN 3
  2752. +#define R_SH_IND12W 4
  2753. +#define R_SH_DIR8WPL 5
  2754. +#define R_SH_DIR8WPZ 6
  2755. +#define R_SH_DIR8BP 7
  2756. +#define R_SH_DIR8W 8
  2757. +#define R_SH_DIR8L 9
  2758. +#define R_SH_SWITCH16 25
  2759. +#define R_SH_SWITCH32 26
  2760. +#define R_SH_USES 27
  2761. +#define R_SH_COUNT 28
  2762. +#define R_SH_ALIGN 29
  2763. +#define R_SH_CODE 30
  2764. +#define R_SH_DATA 31
  2765. +#define R_SH_LABEL 32
  2766. +#define R_SH_SWITCH8 33
  2767. +#define R_SH_GNU_VTINHERIT 34
  2768. +#define R_SH_GNU_VTENTRY 35
  2769. +#define R_SH_TLS_GD_32 144
  2770. +#define R_SH_TLS_LD_32 145
  2771. +#define R_SH_TLS_LDO_32 146
  2772. +#define R_SH_TLS_IE_32 147
  2773. +#define R_SH_TLS_LE_32 148
  2774. +#define R_SH_TLS_DTPMOD32 149
  2775. +#define R_SH_TLS_DTPOFF32 150
  2776. +#define R_SH_TLS_TPOFF32 151
  2777. +#define R_SH_GOT32 160
  2778. +#define R_SH_PLT32 161
  2779. +#define R_SH_COPY 162
  2780. +#define R_SH_GLOB_DAT 163
  2781. +#define R_SH_JMP_SLOT 164
  2782. +#define R_SH_RELATIVE 165
  2783. +#define R_SH_GOTOFF 166
  2784. +#define R_SH_GOTPC 167
  2785. +/* Keep this the last entry. */
  2786. +#define R_SH_NUM 256
  2787. -#if ELF_CLASS == ELFCLASS32
  2788. +/* Additional s390 relocs */
  2789. -extern Elf32_Dyn _DYNAMIC [];
  2790. -#define elfhdr elf32_hdr
  2791. -#define elf_phdr elf32_phdr
  2792. -#define elf_note elf32_note
  2793. +#define R_390_NONE 0 /* No reloc. */
  2794. +#define R_390_8 1 /* Direct 8 bit. */
  2795. +#define R_390_12 2 /* Direct 12 bit. */
  2796. +#define R_390_16 3 /* Direct 16 bit. */
  2797. +#define R_390_32 4 /* Direct 32 bit. */
  2798. +#define R_390_PC32 5 /* PC relative 32 bit. */
  2799. +#define R_390_GOT12 6 /* 12 bit GOT offset. */
  2800. +#define R_390_GOT32 7 /* 32 bit GOT offset. */
  2801. +#define R_390_PLT32 8 /* 32 bit PC relative PLT address. */
  2802. +#define R_390_COPY 9 /* Copy symbol at runtime. */
  2803. +#define R_390_GLOB_DAT 10 /* Create GOT entry. */
  2804. +#define R_390_JMP_SLOT 11 /* Create PLT entry. */
  2805. +#define R_390_RELATIVE 12 /* Adjust by program base. */
  2806. +#define R_390_GOTOFF32 13 /* 32 bit offset to GOT. */
  2807. +#define R_390_GOTPC 14 /* 32 bit PC relative offset to GOT. */
  2808. +#define R_390_GOT16 15 /* 16 bit GOT offset. */
  2809. +#define R_390_PC16 16 /* PC relative 16 bit. */
  2810. +#define R_390_PC16DBL 17 /* PC relative 16 bit shifted by 1. */
  2811. +#define R_390_PLT16DBL 18 /* 16 bit PC rel. PLT shifted by 1. */
  2812. +#define R_390_PC32DBL 19 /* PC relative 32 bit shifted by 1. */
  2813. +#define R_390_PLT32DBL 20 /* 32 bit PC rel. PLT shifted by 1. */
  2814. +#define R_390_GOTPCDBL 21 /* 32 bit PC rel. GOT shifted by 1. */
  2815. +#define R_390_64 22 /* Direct 64 bit. */
  2816. +#define R_390_PC64 23 /* PC relative 64 bit. */
  2817. +#define R_390_GOT64 24 /* 64 bit GOT offset. */
  2818. +#define R_390_PLT64 25 /* 64 bit PC relative PLT address. */
  2819. +#define R_390_GOTENT 26 /* 32 bit PC rel. to GOT entry >> 1. */
  2820. +#define R_390_GOTOFF16 27 /* 16 bit offset to GOT. */
  2821. +#define R_390_GOTOFF64 28 /* 64 bit offset to GOT. */
  2822. +#define R_390_GOTPLT12 29 /* 12 bit offset to jump slot. */
  2823. +#define R_390_GOTPLT16 30 /* 16 bit offset to jump slot. */
  2824. +#define R_390_GOTPLT32 31 /* 32 bit offset to jump slot. */
  2825. +#define R_390_GOTPLT64 32 /* 64 bit offset to jump slot. */
  2826. +#define R_390_GOTPLTENT 33 /* 32 bit rel. offset to jump slot. */
  2827. +#define R_390_PLTOFF16 34 /* 16 bit offset from GOT to PLT. */
  2828. +#define R_390_PLTOFF32 35 /* 32 bit offset from GOT to PLT. */
  2829. +#define R_390_PLTOFF64 36 /* 16 bit offset from GOT to PLT. */
  2830. +#define R_390_TLS_LOAD 37 /* Tag for load insn in TLS code. */
  2831. +#define R_390_TLS_GDCALL 38 /* Tag for function call in general
  2832. + dynamic TLS code. */
  2833. +#define R_390_TLS_LDCALL 39 /* Tag for function call in local
  2834. + dynamic TLS code. */
  2835. +#define R_390_TLS_GD32 40 /* Direct 32 bit for general dynamic
  2836. + thread local data. */
  2837. +#define R_390_TLS_GD64 41 /* Direct 64 bit for general dynamic
  2838. + thread local data. */
  2839. +#define R_390_TLS_GOTIE12 42 /* 12 bit GOT offset for static TLS
  2840. + block offset. */
  2841. +#define R_390_TLS_GOTIE32 43 /* 32 bit GOT offset for static TLS
  2842. + block offset. */
  2843. +#define R_390_TLS_GOTIE64 44 /* 64 bit GOT offset for static TLS
  2844. + block offset. */
  2845. +#define R_390_TLS_LDM32 45 /* Direct 32 bit for local dynamic
  2846. + thread local data in LE code. */
  2847. +#define R_390_TLS_LDM64 46 /* Direct 64 bit for local dynamic
  2848. + thread local data in LE code. */
  2849. +#define R_390_TLS_IE32 47 /* 32 bit address of GOT entry for
  2850. + negated static TLS block offset. */
  2851. +#define R_390_TLS_IE64 48 /* 64 bit address of GOT entry for
  2852. + negated static TLS block offset. */
  2853. +#define R_390_TLS_IEENT 49 /* 32 bit rel. offset to GOT entry for
  2854. + negated static TLS block offset. */
  2855. +#define R_390_TLS_LE32 50 /* 32 bit negated offset relative to
  2856. + static TLS block. */
  2857. +#define R_390_TLS_LE64 51 /* 64 bit negated offset relative to
  2858. + static TLS block. */
  2859. +#define R_390_TLS_LDO32 52 /* 32 bit offset relative to TLS
  2860. + block. */
  2861. +#define R_390_TLS_LDO64 53 /* 64 bit offset relative to TLS
  2862. + block. */
  2863. +#define R_390_TLS_DTPMOD 54 /* ID of module containing symbol. */
  2864. +#define R_390_TLS_DTPOFF 55 /* Offset in TLS block. */
  2865. +#define R_390_TLS_TPOFF 56 /* Negated offset in static TLS
  2866. + block. */
  2867. -#else
  2868. +/* Keep this the last entry. */
  2869. +#define R_390_NUM 57
  2870. -extern Elf64_Dyn _DYNAMIC [];
  2871. -#define elfhdr elf64_hdr
  2872. -#define elf_phdr elf64_phdr
  2873. -#define elf_note elf64_note
  2874. +/* CRIS relocations. */
  2875. +#define R_CRIS_NONE 0
  2876. +#define R_CRIS_8 1
  2877. +#define R_CRIS_16 2
  2878. +#define R_CRIS_32 3
  2879. +#define R_CRIS_8_PCREL 4
  2880. +#define R_CRIS_16_PCREL 5
  2881. +#define R_CRIS_32_PCREL 6
  2882. +#define R_CRIS_GNU_VTINHERIT 7
  2883. +#define R_CRIS_GNU_VTENTRY 8
  2884. +#define R_CRIS_COPY 9
  2885. +#define R_CRIS_GLOB_DAT 10
  2886. +#define R_CRIS_JUMP_SLOT 11
  2887. +#define R_CRIS_RELATIVE 12
  2888. +#define R_CRIS_16_GOT 13
  2889. +#define R_CRIS_32_GOT 14
  2890. +#define R_CRIS_16_GOTPLT 15
  2891. +#define R_CRIS_32_GOTPLT 16
  2892. +#define R_CRIS_32_GOTREL 17
  2893. +#define R_CRIS_32_PLT_GOTREL 18
  2894. +#define R_CRIS_32_PLT_PCREL 19
  2895. +
  2896. +#define R_CRIS_NUM 20
  2897. +
  2898. +/* AMD x86-64 relocations. */
  2899. +#define R_X86_64_NONE 0 /* No reloc */
  2900. +#define R_X86_64_64 1 /* Direct 64 bit */
  2901. +#define R_X86_64_PC32 2 /* PC relative 32 bit signed */
  2902. +#define R_X86_64_GOT32 3 /* 32 bit GOT entry */
  2903. +#define R_X86_64_PLT32 4 /* 32 bit PLT address */
  2904. +#define R_X86_64_COPY 5 /* Copy symbol at runtime */
  2905. +#define R_X86_64_GLOB_DAT 6 /* Create GOT entry */
  2906. +#define R_X86_64_JUMP_SLOT 7 /* Create PLT entry */
  2907. +#define R_X86_64_RELATIVE 8 /* Adjust by program base */
  2908. +#define R_X86_64_GOTPCREL 9 /* 32 bit signed PC relative
  2909. + offset to GOT */
  2910. +#define R_X86_64_32 10 /* Direct 32 bit zero extended */
  2911. +#define R_X86_64_32S 11 /* Direct 32 bit sign extended */
  2912. +#define R_X86_64_16 12 /* Direct 16 bit zero extended */
  2913. +#define R_X86_64_PC16 13 /* 16 bit sign extended pc relative */
  2914. +#define R_X86_64_8 14 /* Direct 8 bit sign extended */
  2915. +#define R_X86_64_PC8 15 /* 8 bit sign extended pc relative */
  2916. +#define R_X86_64_DTPMOD64 16 /* ID of module containing symbol */
  2917. +#define R_X86_64_DTPOFF64 17 /* Offset in module's TLS block */
  2918. +#define R_X86_64_TPOFF64 18 /* Offset in initial TLS block */
  2919. +#define R_X86_64_TLSGD 19 /* 32 bit signed PC relative offset
  2920. + to two GOT entries for GD symbol */
  2921. +#define R_X86_64_TLSLD 20 /* 32 bit signed PC relative offset
  2922. + to two GOT entries for LD symbol */
  2923. +#define R_X86_64_DTPOFF32 21 /* Offset in TLS block */
  2924. +#define R_X86_64_GOTTPOFF 22 /* 32 bit signed PC relative offset
  2925. + to GOT entry for IE symbol */
  2926. +#define R_X86_64_TPOFF32 23 /* Offset in initial TLS block */
  2927. -#endif
  2928. +#define R_X86_64_NUM 24
  2929. +__END_DECLS
  2930. -#endif
  2931. +#endif /* elf.h */