powerpc.h 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354
  1. // powerpc.h -- ELF definitions specific to EM_PPC and EM_PPC64 -*- C++ -*-
  2. // Copyright (C) 2008-2022 Free Software Foundation, Inc.
  3. // Written by David S. Miller <davem@davemloft.net>.
  4. // This file is part of elfcpp.
  5. // This program is free software; you can redistribute it and/or
  6. // modify it under the terms of the GNU Library General Public License
  7. // as published by the Free Software Foundation; either version 2, or
  8. // (at your option) any later version.
  9. // In addition to the permissions in the GNU Library General Public
  10. // License, the Free Software Foundation gives you unlimited
  11. // permission to link the compiled version of this file into
  12. // combinations with other programs, and to distribute those
  13. // combinations without any restriction coming from the use of this
  14. // file. (The Library Public License restrictions do apply in other
  15. // respects; for example, they cover modification of the file, and
  16. /// distribution when not linked into a combined executable.)
  17. // This program is distributed in the hope that it will be useful, but
  18. // WITHOUT ANY WARRANTY; without even the implied warranty of
  19. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  20. // Library General Public License for more details.
  21. // You should have received a copy of the GNU Library General Public
  22. // License along with this program; if not, write to the Free Software
  23. // Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
  24. // 02110-1301, USA.
  25. #ifndef ELFCPP_POWERPC_H
  26. #define ELFCPP_POWERPC_H
  27. namespace elfcpp
  28. {
  29. // The relocation numbers for 32-bit and 64-bit powerpc are nearly
  30. // identical. Therefore I've adopted the convention of using
  31. // R_POWERPC_foo for values which are the same in R_PPC_* and R_PPC64_*.
  32. // For relocations which are specific to the word size I will use
  33. // R_PPC_foo or R_PPC64_foo.
  34. enum
  35. {
  36. R_POWERPC_NONE = 0,
  37. R_POWERPC_ADDR32 = 1,
  38. R_POWERPC_ADDR24 = 2,
  39. R_POWERPC_ADDR16 = 3,
  40. R_POWERPC_ADDR16_LO = 4,
  41. R_POWERPC_ADDR16_HI = 5,
  42. R_POWERPC_ADDR16_HA = 6,
  43. R_POWERPC_ADDR14 = 7,
  44. R_POWERPC_ADDR14_BRTAKEN = 8,
  45. R_POWERPC_ADDR14_BRNTAKEN = 9,
  46. R_POWERPC_REL24 = 10,
  47. R_POWERPC_REL14 = 11,
  48. R_POWERPC_REL14_BRTAKEN = 12,
  49. R_POWERPC_REL14_BRNTAKEN = 13,
  50. R_POWERPC_GOT16 = 14,
  51. R_POWERPC_GOT16_LO = 15,
  52. R_POWERPC_GOT16_HI = 16,
  53. R_POWERPC_GOT16_HA = 17,
  54. R_PPC_PLTREL24 = 18,
  55. R_POWERPC_COPY = 19,
  56. R_POWERPC_GLOB_DAT = 20,
  57. R_POWERPC_JMP_SLOT = 21,
  58. R_POWERPC_RELATIVE = 22,
  59. R_PPC_LOCAL24PC = 23,
  60. R_POWERPC_UADDR32 = 24,
  61. R_POWERPC_UADDR16 = 25,
  62. R_POWERPC_REL32 = 26,
  63. R_POWERPC_PLT32 = 27,
  64. R_POWERPC_PLTREL32 = 28,
  65. R_POWERPC_PLT16_LO = 29,
  66. R_POWERPC_PLT16_HI = 30,
  67. R_POWERPC_PLT16_HA = 31,
  68. R_PPC_SDAREL16 = 32,
  69. R_POWERPC_SECTOFF = 33,
  70. R_POWERPC_SECTOFF_LO = 34,
  71. R_POWERPC_SECTOFF_HI = 35,
  72. R_POWERPC_SECTOFF_HA = 36,
  73. R_POWERPC_ADDR30 = 37,
  74. R_PPC64_ADDR64 = 38,
  75. R_PPC64_ADDR16_HIGHER = 39,
  76. R_PPC64_ADDR16_HIGHERA = 40,
  77. R_PPC64_ADDR16_HIGHEST = 41,
  78. R_PPC64_ADDR16_HIGHESTA = 42,
  79. R_PPC64_UADDR64 = 43,
  80. R_PPC64_REL64 = 44,
  81. R_PPC64_PLT64 = 45,
  82. R_PPC64_PLTREL64 = 46,
  83. R_PPC64_TOC16 = 47,
  84. R_PPC64_TOC16_LO = 48,
  85. R_PPC64_TOC16_HI = 49,
  86. R_PPC64_TOC16_HA = 50,
  87. R_PPC64_TOC = 51,
  88. R_PPC64_PLTGOT16 = 52,
  89. R_PPC64_PLTGOT16_LO = 53,
  90. R_PPC64_PLTGOT16_HI = 54,
  91. R_PPC64_PLTGOT16_HA = 55,
  92. R_PPC64_ADDR16_DS = 56,
  93. R_PPC64_ADDR16_LO_DS = 57,
  94. R_PPC64_GOT16_DS = 58,
  95. R_PPC64_GOT16_LO_DS = 59,
  96. R_PPC64_PLT16_LO_DS = 60,
  97. R_PPC64_SECTOFF_DS = 61,
  98. R_PPC64_SECTOFF_LO_DS = 62,
  99. R_PPC64_TOC16_DS = 63,
  100. R_PPC64_TOC16_LO_DS = 64,
  101. R_PPC64_PLTGOT16_DS = 65,
  102. R_PPC64_PLTGOT16_LO_DS = 66,
  103. R_POWERPC_TLS = 67,
  104. R_POWERPC_DTPMOD = 68,
  105. R_POWERPC_TPREL16 = 69,
  106. R_POWERPC_TPREL16_LO = 70,
  107. R_POWERPC_TPREL16_HI = 71,
  108. R_POWERPC_TPREL16_HA = 72,
  109. R_POWERPC_TPREL = 73,
  110. R_POWERPC_DTPREL16 = 74,
  111. R_POWERPC_DTPREL16_LO = 75,
  112. R_POWERPC_DTPREL16_HI = 76,
  113. R_POWERPC_DTPREL16_HA = 77,
  114. R_POWERPC_DTPREL = 78,
  115. R_POWERPC_GOT_TLSGD16 = 79,
  116. R_POWERPC_GOT_TLSGD16_LO = 80,
  117. R_POWERPC_GOT_TLSGD16_HI = 81,
  118. R_POWERPC_GOT_TLSGD16_HA = 82,
  119. R_POWERPC_GOT_TLSLD16 = 83,
  120. R_POWERPC_GOT_TLSLD16_LO = 84,
  121. R_POWERPC_GOT_TLSLD16_HI = 85,
  122. R_POWERPC_GOT_TLSLD16_HA = 86,
  123. R_POWERPC_GOT_TPREL16 = 87,
  124. R_POWERPC_GOT_TPREL16_LO = 88,
  125. R_POWERPC_GOT_TPREL16_HI = 89,
  126. R_POWERPC_GOT_TPREL16_HA = 90,
  127. R_POWERPC_GOT_DTPREL16 = 91,
  128. R_POWERPC_GOT_DTPREL16_LO = 92,
  129. R_POWERPC_GOT_DTPREL16_HI = 93,
  130. R_POWERPC_GOT_DTPREL16_HA = 94,
  131. R_PPC_TLSGD = 95,
  132. R_PPC64_TPREL16_DS = 95,
  133. R_PPC_TLSLD = 96,
  134. R_PPC64_TPREL16_LO_DS = 96,
  135. R_PPC64_TPREL16_HIGHER = 97,
  136. R_PPC64_TPREL16_HIGHERA = 98,
  137. R_PPC64_TPREL16_HIGHEST = 99,
  138. R_PPC64_TPREL16_HIGHESTA = 100,
  139. R_PPC_EMB_NADDR32 = 101,
  140. R_PPC64_DTPREL16_DS = 101,
  141. R_PPC_EMB_NADDR16 = 102,
  142. R_PPC64_DTPREL16_LO_DS = 102,
  143. R_PPC_EMB_NADDR16_LO = 103,
  144. R_PPC64_DTPREL16_HIGHER = 103,
  145. R_PPC_EMB_NADDR16_HI = 104,
  146. R_PPC64_DTPREL16_HIGHERA = 104,
  147. R_PPC_EMB_NADDR16_HA = 105,
  148. R_PPC64_DTPREL16_HIGHEST = 105,
  149. R_PPC_EMB_SDAI16 = 106,
  150. R_PPC64_DTPREL16_HIGHESTA = 106,
  151. R_PPC_EMB_SDA2I16 = 107,
  152. R_PPC64_TLSGD = 107,
  153. R_PPC_EMB_SDA2REL = 108,
  154. R_PPC64_TLSLD = 108,
  155. R_PPC_EMB_SDA21 = 109,
  156. R_PPC64_TOCSAVE = 109,
  157. R_PPC_EMB_MRKREF = 110,
  158. R_PPC64_ADDR16_HIGH = 110,
  159. R_PPC_EMB_RELSEC16 = 111,
  160. R_PPC64_ADDR16_HIGHA = 111,
  161. R_PPC_EMB_RELST_LO = 112,
  162. R_PPC64_TPREL16_HIGH = 112,
  163. R_PPC_EMB_RELST_HI = 113,
  164. R_PPC64_TPREL16_HIGHA = 113,
  165. R_PPC_EMB_RELST_HA = 114,
  166. R_PPC64_DTPREL16_HIGH = 114,
  167. R_PPC_EMB_BIT_FLD = 115,
  168. R_PPC64_DTPREL16_HIGHA = 115,
  169. R_PPC_EMB_RELSDA = 116,
  170. R_PPC64_REL24_NOTOC = 116,
  171. R_PPC64_ADDR64_LOCAL = 117,
  172. R_PPC64_ENTRY = 118,
  173. R_POWERPC_PLTSEQ = 119,
  174. R_POWERPC_PLTCALL = 120,
  175. R_PPC64_PLTSEQ_NOTOC = 121,
  176. R_PPC64_PLTCALL_NOTOC = 122,
  177. R_PPC64_PCREL_OPT = 123,
  178. R_PPC64_REL24_P9NOTOC = 124,
  179. R_PPC64_D34 = 128,
  180. R_PPC64_D34_LO = 129,
  181. R_PPC64_D34_HI30 = 130,
  182. R_PPC64_D34_HA30 = 131,
  183. R_PPC64_PCREL34 = 132,
  184. R_PPC64_GOT_PCREL34 = 133,
  185. R_PPC64_PLT_PCREL34 = 134,
  186. R_PPC64_PLT_PCREL34_NOTOC = 135,
  187. R_PPC64_ADDR16_HIGHER34 = 136,
  188. R_PPC64_ADDR16_HIGHERA34 = 137,
  189. R_PPC64_ADDR16_HIGHEST34 = 138,
  190. R_PPC64_ADDR16_HIGHESTA34 = 139,
  191. R_PPC64_REL16_HIGHER34 = 140,
  192. R_PPC64_REL16_HIGHERA34 = 141,
  193. R_PPC64_REL16_HIGHEST34 = 142,
  194. R_PPC64_REL16_HIGHESTA34 = 143,
  195. R_PPC64_D28 = 144,
  196. R_PPC64_PCREL28 = 145,
  197. R_PPC64_TPREL34 = 146,
  198. R_PPC64_DTPREL34 = 147,
  199. R_PPC64_GOT_TLSGD_PCREL34 = 148,
  200. R_PPC64_GOT_TLSLD_PCREL34 = 149,
  201. R_PPC64_GOT_TPREL_PCREL34 = 150,
  202. R_PPC64_GOT_DTPREL_PCREL34 = 151,
  203. R_PPC_VLE_REL8 = 216,
  204. R_PPC_VLE_REL15 = 217,
  205. R_PPC_VLE_REL24 = 218,
  206. R_PPC_VLE_LO16A = 219,
  207. R_PPC_VLE_LO16D = 220,
  208. R_PPC_VLE_HI16A = 221,
  209. R_PPC_VLE_HI16D = 222,
  210. R_PPC_VLE_HA16A = 223,
  211. R_PPC_VLE_HA16D = 224,
  212. R_PPC_VLE_SDA21 = 225,
  213. R_PPC_VLE_SDA21_LO = 226,
  214. R_PPC_VLE_SDAREL_LO16A = 227,
  215. R_PPC_VLE_SDAREL_LO16D = 228,
  216. R_PPC_VLE_SDAREL_HI16A = 229,
  217. R_PPC_VLE_SDAREL_HI16D = 230,
  218. R_PPC_VLE_SDAREL_HA16A = 231,
  219. R_PPC_VLE_SDAREL_HA16D = 232,
  220. R_PPC64_REL16_HIGH = 240,
  221. R_PPC64_REL16_HIGHA = 241,
  222. R_PPC64_REL16_HIGHER = 242,
  223. R_PPC64_REL16_HIGHERA = 243,
  224. R_PPC64_REL16_HIGHEST = 244,
  225. R_PPC64_REL16_HIGHESTA = 245,
  226. R_POWERPC_REL16DX_HA = 246,
  227. R_PPC64_JMP_IREL = 247,
  228. R_POWERPC_IRELATIVE = 248,
  229. R_POWERPC_REL16 = 249,
  230. R_POWERPC_REL16_LO = 250,
  231. R_POWERPC_REL16_HI = 251,
  232. R_POWERPC_REL16_HA = 252,
  233. R_POWERPC_GNU_VTINHERIT = 253,
  234. R_POWERPC_GNU_VTENTRY = 254,
  235. R_PPC_TOC16 = 255,
  236. };
  237. // e_flags values defined for powerpc
  238. enum
  239. {
  240. EF_PPC_EMB = 0x80000000, // PowerPC embedded flag.
  241. EF_PPC_RELOCATABLE = 0x00010000, // PowerPC -mrelocatable flag. */
  242. EF_PPC_RELOCATABLE_LIB = 0x00008000, // PowerPC -mrelocatable-lib flag. */
  243. };
  244. // e_flags values defined for powerpc64
  245. enum
  246. {
  247. // ABI version
  248. // 1 for original function descriptor using ABI,
  249. // 2 for revised ABI without function descriptors,
  250. // 0 for unspecified or not using any features affected by the differences.
  251. EF_PPC64_ABI = 3
  252. };
  253. // Object attribute tags. 0-3 are generic.
  254. enum
  255. {
  256. // FP ABI, low 2 bits:
  257. // 1 for double precision hard-float,
  258. // 2 for soft-float,
  259. // 3 for single precision hard-float.
  260. // 0 for not tagged or not using any ABIs affected by the differences.
  261. // Next 2 bits:
  262. // 1 for ibm long double
  263. // 2 for 64-bit long double
  264. // 3 for IEEE long double.
  265. // 0 for not tagged or not using any ABIs affected by the differences.
  266. Tag_GNU_Power_ABI_FP = 4,
  267. // Value 1 for general purpose registers only, 2 for AltiVec
  268. // registers, 3 for SPE registers; 0 for not tagged or not using any
  269. // ABIs affected by the differences.
  270. Tag_GNU_Power_ABI_Vector = 8,
  271. // Value 1 for ABIs using r3/r4 for returning structures <= 8 bytes,
  272. // 2 for ABIs using memory; 0 for not tagged or not using any ABIs
  273. // affected by the differences.
  274. Tag_GNU_Power_ABI_Struct_Return = 12
  275. };
  276. // DT_PPC_OPT bits
  277. enum
  278. {
  279. PPC_OPT_TLS = 1
  280. };
  281. // DT_PPC64_OPT bits
  282. enum
  283. {
  284. PPC64_OPT_TLS = 1,
  285. PPC64_OPT_MULTI_TOC = 2,
  286. PPC64_OPT_LOCALENTRY = 4
  287. };
  288. enum
  289. {
  290. // The ELFv2 ABI uses three bits in the symbol st_other field of a
  291. // function definition to specify the number of instructions between a
  292. // function's global entry point and local entry point.
  293. // The global entry point is used when it is necessary to set up the
  294. // toc pointer (r2) for the function. Callers must enter the global
  295. // entry point with r12 set to the global entry point address. On
  296. // return from the function, r2 may have a different value to that
  297. // which it had on entry.
  298. // The local entry point is used when r2 is known to already be valid
  299. // for the function. There is no requirement on r12 when using the
  300. // local entry point, and on return r2 will contain the same value as
  301. // at entry.
  302. // A value of zero in these bits means that the function has a single
  303. // entry point with no requirement on r12 or r2, and that on return r2
  304. // will contain the same value as at entry.
  305. // Values of one and seven are reserved.
  306. STO_PPC64_LOCAL_BIT = 5,
  307. STO_PPC64_LOCAL_MASK = 0xE0
  308. };
  309. // 3 bit other field to bytes.
  310. static inline unsigned int
  311. ppc64_decode_local_entry(unsigned int other)
  312. {
  313. return ((1 << other) >> 2) << 2;
  314. }
  315. // bytes to field value.
  316. static inline unsigned int
  317. ppc64_encode_local_entry(unsigned int val)
  318. {
  319. return (val >= 4 * 4
  320. ? (val >= 8 * 4
  321. ? (val >= 16 * 4 ? 6 : 5)
  322. : 4)
  323. : (val >= 2 * 4
  324. ? 3
  325. : (val >= 1 * 4 ? 2 : 0)));
  326. }
  327. } // End namespace elfcpp.
  328. #endif // !defined(ELFCPP_POWERPC_H)