1 | //! ELF definitions. |
2 | //! |
3 | //! These definitions are independent of read/write support, although we do implement |
4 | //! some traits useful for those. |
5 | //! |
6 | //! This module is the equivalent of /usr/include/elf.h, and is based heavily on it. |
7 | |
8 | #![allow (missing_docs)] |
9 | #![allow (clippy::identity_op)] |
10 | |
11 | use crate::endian::{Endian, U32Bytes, U64Bytes, I32, I64, U16, U32, U64}; |
12 | use crate::pod::Pod; |
13 | |
14 | /// The header at the start of every 32-bit ELF file. |
15 | #[derive (Debug, Clone, Copy)] |
16 | #[repr (C)] |
17 | pub struct FileHeader32<E: Endian> { |
18 | /// Magic number and other information. |
19 | pub e_ident: Ident, |
20 | /// Object file type. One of the `ET_*` constants. |
21 | pub e_type: U16<E>, |
22 | /// Architecture. One of the `EM_*` constants. |
23 | pub e_machine: U16<E>, |
24 | /// Object file version. Must be `EV_CURRENT`. |
25 | pub e_version: U32<E>, |
26 | /// Entry point virtual address. |
27 | pub e_entry: U32<E>, |
28 | /// Program header table file offset. |
29 | pub e_phoff: U32<E>, |
30 | /// Section header table file offset. |
31 | pub e_shoff: U32<E>, |
32 | /// Processor-specific flags. |
33 | /// |
34 | /// A combination of the `EF_*` constants. |
35 | pub e_flags: U32<E>, |
36 | /// Size in bytes of this header. |
37 | pub e_ehsize: U16<E>, |
38 | /// Program header table entry size. |
39 | pub e_phentsize: U16<E>, |
40 | /// Program header table entry count. |
41 | /// |
42 | /// If the count is greater than or equal to `PN_XNUM` then this field is set to |
43 | /// `PN_XNUM` and the count is stored in the `sh_info` field of section 0. |
44 | pub e_phnum: U16<E>, |
45 | /// Section header table entry size. |
46 | pub e_shentsize: U16<E>, |
47 | /// Section header table entry count. |
48 | /// |
49 | /// If the count is greater than or equal to `SHN_LORESERVE` then this field is set to |
50 | /// `0` and the count is stored in the `sh_size` field of section 0. |
51 | /// first section header. |
52 | pub e_shnum: U16<E>, |
53 | /// Section header string table index. |
54 | /// |
55 | /// If the index is greater than or equal to `SHN_LORESERVE` then this field is set to |
56 | /// `SHN_XINDEX` and the index is stored in the `sh_link` field of section 0. |
57 | pub e_shstrndx: U16<E>, |
58 | } |
59 | |
60 | /// The header at the start of every 64-bit ELF file. |
61 | #[derive (Debug, Clone, Copy)] |
62 | #[repr (C)] |
63 | pub struct FileHeader64<E: Endian> { |
64 | /// Magic number and other information. |
65 | pub e_ident: Ident, |
66 | /// Object file type. One of the `ET_*` constants. |
67 | pub e_type: U16<E>, |
68 | /// Architecture. One of the `EM_*` constants. |
69 | pub e_machine: U16<E>, |
70 | /// Object file version. Must be `EV_CURRENT`. |
71 | pub e_version: U32<E>, |
72 | /// Entry point virtual address. |
73 | pub e_entry: U64<E>, |
74 | /// Program header table file offset. |
75 | pub e_phoff: U64<E>, |
76 | /// Section header table file offset. |
77 | pub e_shoff: U64<E>, |
78 | /// Processor-specific flags. |
79 | /// |
80 | /// A combination of the `EF_*` constants. |
81 | pub e_flags: U32<E>, |
82 | /// Size in bytes of this header. |
83 | pub e_ehsize: U16<E>, |
84 | /// Program header table entry size. |
85 | pub e_phentsize: U16<E>, |
86 | /// Program header table entry count. |
87 | /// |
88 | /// If the count is greater than or equal to `PN_XNUM` then this field is set to |
89 | /// `PN_XNUM` and the count is stored in the `sh_info` field of section 0. |
90 | pub e_phnum: U16<E>, |
91 | /// Section header table entry size. |
92 | pub e_shentsize: U16<E>, |
93 | /// Section header table entry count. |
94 | /// |
95 | /// If the count is greater than or equal to `SHN_LORESERVE` then this field is set to |
96 | /// `0` and the count is stored in the `sh_size` field of section 0. |
97 | /// first section header. |
98 | pub e_shnum: U16<E>, |
99 | /// Section header string table index. |
100 | /// |
101 | /// If the index is greater than or equal to `SHN_LORESERVE` then this field is set to |
102 | /// `SHN_XINDEX` and the index is stored in the `sh_link` field of section 0. |
103 | pub e_shstrndx: U16<E>, |
104 | } |
105 | |
106 | /// Magic number and other information. |
107 | /// |
108 | /// Contained in the file header. |
109 | #[derive (Debug, Clone, Copy)] |
110 | #[repr (C)] |
111 | pub struct Ident { |
112 | /// Magic number. Must be `ELFMAG`. |
113 | pub magic: [u8; 4], |
114 | /// File class. One of the `ELFCLASS*` constants. |
115 | pub class: u8, |
116 | /// Data encoding. One of the `ELFDATA*` constants. |
117 | pub data: u8, |
118 | /// ELF version. Must be `EV_CURRENT`. |
119 | pub version: u8, |
120 | /// OS ABI identification. One of the `ELFOSABI*` constants. |
121 | pub os_abi: u8, |
122 | /// ABI version. |
123 | /// |
124 | /// The meaning of this field depends on the `os_abi` value. |
125 | pub abi_version: u8, |
126 | /// Padding bytes. |
127 | pub padding: [u8; 7], |
128 | } |
129 | |
130 | /// File identification bytes stored in `Ident::magic`. |
131 | pub const ELFMAG: [u8; 4] = [0x7f, b'E' , b'L' , b'F' ]; |
132 | |
133 | // Values for `Ident::class`. |
134 | /// Invalid class. |
135 | pub const ELFCLASSNONE: u8 = 0; |
136 | /// 32-bit object. |
137 | pub const ELFCLASS32: u8 = 1; |
138 | /// 64-bit object. |
139 | pub const ELFCLASS64: u8 = 2; |
140 | |
141 | // Values for `Ident::data`. |
142 | /// Invalid data encoding. |
143 | pub const ELFDATANONE: u8 = 0; |
144 | /// 2's complement, little endian. |
145 | pub const ELFDATA2LSB: u8 = 1; |
146 | /// 2's complement, big endian. |
147 | pub const ELFDATA2MSB: u8 = 2; |
148 | |
149 | // Values for `Ident::os_abi`. |
150 | /// UNIX System V ABI. |
151 | pub const ELFOSABI_NONE: u8 = 0; |
152 | /// UNIX System V ABI. |
153 | /// |
154 | /// Alias. |
155 | pub const ELFOSABI_SYSV: u8 = 0; |
156 | /// HP-UX. |
157 | pub const ELFOSABI_HPUX: u8 = 1; |
158 | /// NetBSD. |
159 | pub const ELFOSABI_NETBSD: u8 = 2; |
160 | /// Object uses GNU ELF extensions. |
161 | pub const ELFOSABI_GNU: u8 = 3; |
162 | /// Object uses GNU ELF extensions. |
163 | /// |
164 | /// Compatibility alias. |
165 | pub const ELFOSABI_LINUX: u8 = ELFOSABI_GNU; |
166 | /// GNU/Hurd. |
167 | pub const ELFOSABI_HURD: u8 = 4; |
168 | /// Sun Solaris. |
169 | pub const ELFOSABI_SOLARIS: u8 = 6; |
170 | /// IBM AIX. |
171 | pub const ELFOSABI_AIX: u8 = 7; |
172 | /// SGI Irix. |
173 | pub const ELFOSABI_IRIX: u8 = 8; |
174 | /// FreeBSD. |
175 | pub const ELFOSABI_FREEBSD: u8 = 9; |
176 | /// Compaq TRU64 UNIX. |
177 | pub const ELFOSABI_TRU64: u8 = 10; |
178 | /// Novell Modesto. |
179 | pub const ELFOSABI_MODESTO: u8 = 11; |
180 | /// OpenBSD. |
181 | pub const ELFOSABI_OPENBSD: u8 = 12; |
182 | /// OpenVMS. |
183 | pub const ELFOSABI_OPENVMS: u8 = 13; |
184 | /// Hewlett-Packard Non-Stop Kernel. |
185 | pub const ELFOSABI_NSK: u8 = 14; |
186 | /// AROS |
187 | pub const ELFOSABI_AROS: u8 = 15; |
188 | /// FenixOS |
189 | pub const ELFOSABI_FENIXOS: u8 = 16; |
190 | /// Nuxi CloudABI |
191 | pub const ELFOSABI_CLOUDABI: u8 = 17; |
192 | /// ARM EABI. |
193 | pub const ELFOSABI_ARM_AEABI: u8 = 64; |
194 | /// ARM. |
195 | pub const ELFOSABI_ARM: u8 = 97; |
196 | /// Standalone (embedded) application. |
197 | pub const ELFOSABI_STANDALONE: u8 = 255; |
198 | |
199 | // Values for `FileHeader*::e_type`. |
200 | /// No file type. |
201 | pub const ET_NONE: u16 = 0; |
202 | /// Relocatable file. |
203 | pub const ET_REL: u16 = 1; |
204 | /// Executable file. |
205 | pub const ET_EXEC: u16 = 2; |
206 | /// Shared object file. |
207 | pub const ET_DYN: u16 = 3; |
208 | /// Core file. |
209 | pub const ET_CORE: u16 = 4; |
210 | /// OS-specific range start. |
211 | pub const ET_LOOS: u16 = 0xfe00; |
212 | /// OS-specific range end. |
213 | pub const ET_HIOS: u16 = 0xfeff; |
214 | /// Processor-specific range start. |
215 | pub const ET_LOPROC: u16 = 0xff00; |
216 | /// Processor-specific range end. |
217 | pub const ET_HIPROC: u16 = 0xffff; |
218 | |
219 | // Values for `FileHeader*::e_machine`. |
220 | /// No machine |
221 | pub const EM_NONE: u16 = 0; |
222 | /// AT&T WE 32100 |
223 | pub const EM_M32: u16 = 1; |
224 | /// SUN SPARC |
225 | pub const EM_SPARC: u16 = 2; |
226 | /// Intel 80386 |
227 | pub const EM_386: u16 = 3; |
228 | /// Motorola m68k family |
229 | pub const EM_68K: u16 = 4; |
230 | /// Motorola m88k family |
231 | pub const EM_88K: u16 = 5; |
232 | /// Intel MCU |
233 | pub const EM_IAMCU: u16 = 6; |
234 | /// Intel 80860 |
235 | pub const EM_860: u16 = 7; |
236 | /// MIPS R3000 big-endian |
237 | pub const EM_MIPS: u16 = 8; |
238 | /// IBM System/370 |
239 | pub const EM_S370: u16 = 9; |
240 | /// MIPS R3000 little-endian |
241 | pub const EM_MIPS_RS3_LE: u16 = 10; |
242 | /// HPPA |
243 | pub const EM_PARISC: u16 = 15; |
244 | /// Fujitsu VPP500 |
245 | pub const EM_VPP500: u16 = 17; |
246 | /// Sun's "v8plus" |
247 | pub const EM_SPARC32PLUS: u16 = 18; |
248 | /// Intel 80960 |
249 | pub const EM_960: u16 = 19; |
250 | /// PowerPC |
251 | pub const EM_PPC: u16 = 20; |
252 | /// PowerPC 64-bit |
253 | pub const EM_PPC64: u16 = 21; |
254 | /// IBM S390 |
255 | pub const EM_S390: u16 = 22; |
256 | /// IBM SPU/SPC |
257 | pub const EM_SPU: u16 = 23; |
258 | /// NEC V800 series |
259 | pub const EM_V800: u16 = 36; |
260 | /// Fujitsu FR20 |
261 | pub const EM_FR20: u16 = 37; |
262 | /// TRW RH-32 |
263 | pub const EM_RH32: u16 = 38; |
264 | /// Motorola RCE |
265 | pub const EM_RCE: u16 = 39; |
266 | /// ARM |
267 | pub const EM_ARM: u16 = 40; |
268 | /// Digital Alpha |
269 | pub const EM_FAKE_ALPHA: u16 = 41; |
270 | /// Hitachi SH |
271 | pub const EM_SH: u16 = 42; |
272 | /// SPARC v9 64-bit |
273 | pub const EM_SPARCV9: u16 = 43; |
274 | /// Siemens Tricore |
275 | pub const EM_TRICORE: u16 = 44; |
276 | /// Argonaut RISC Core |
277 | pub const EM_ARC: u16 = 45; |
278 | /// Hitachi H8/300 |
279 | pub const EM_H8_300: u16 = 46; |
280 | /// Hitachi H8/300H |
281 | pub const EM_H8_300H: u16 = 47; |
282 | /// Hitachi H8S |
283 | pub const EM_H8S: u16 = 48; |
284 | /// Hitachi H8/500 |
285 | pub const EM_H8_500: u16 = 49; |
286 | /// Intel Merced |
287 | pub const EM_IA_64: u16 = 50; |
288 | /// Stanford MIPS-X |
289 | pub const EM_MIPS_X: u16 = 51; |
290 | /// Motorola Coldfire |
291 | pub const EM_COLDFIRE: u16 = 52; |
292 | /// Motorola M68HC12 |
293 | pub const EM_68HC12: u16 = 53; |
294 | /// Fujitsu MMA Multimedia Accelerator |
295 | pub const EM_MMA: u16 = 54; |
296 | /// Siemens PCP |
297 | pub const EM_PCP: u16 = 55; |
298 | /// Sony nCPU embeeded RISC |
299 | pub const EM_NCPU: u16 = 56; |
300 | /// Denso NDR1 microprocessor |
301 | pub const EM_NDR1: u16 = 57; |
302 | /// Motorola Start*Core processor |
303 | pub const EM_STARCORE: u16 = 58; |
304 | /// Toyota ME16 processor |
305 | pub const EM_ME16: u16 = 59; |
306 | /// STMicroelectronic ST100 processor |
307 | pub const EM_ST100: u16 = 60; |
308 | /// Advanced Logic Corp. Tinyj emb.fam |
309 | pub const EM_TINYJ: u16 = 61; |
310 | /// AMD x86-64 architecture |
311 | pub const EM_X86_64: u16 = 62; |
312 | /// Sony DSP Processor |
313 | pub const EM_PDSP: u16 = 63; |
314 | /// Digital PDP-10 |
315 | pub const EM_PDP10: u16 = 64; |
316 | /// Digital PDP-11 |
317 | pub const EM_PDP11: u16 = 65; |
318 | /// Siemens FX66 microcontroller |
319 | pub const EM_FX66: u16 = 66; |
320 | /// STMicroelectronics ST9+ 8/16 mc |
321 | pub const EM_ST9PLUS: u16 = 67; |
322 | /// STmicroelectronics ST7 8 bit mc |
323 | pub const EM_ST7: u16 = 68; |
324 | /// Motorola MC68HC16 microcontroller |
325 | pub const EM_68HC16: u16 = 69; |
326 | /// Motorola MC68HC11 microcontroller |
327 | pub const EM_68HC11: u16 = 70; |
328 | /// Motorola MC68HC08 microcontroller |
329 | pub const EM_68HC08: u16 = 71; |
330 | /// Motorola MC68HC05 microcontroller |
331 | pub const EM_68HC05: u16 = 72; |
332 | /// Silicon Graphics SVx |
333 | pub const EM_SVX: u16 = 73; |
334 | /// STMicroelectronics ST19 8 bit mc |
335 | pub const EM_ST19: u16 = 74; |
336 | /// Digital VAX |
337 | pub const EM_VAX: u16 = 75; |
338 | /// Axis Communications 32-bit emb.proc |
339 | pub const EM_CRIS: u16 = 76; |
340 | /// Infineon Technologies 32-bit emb.proc |
341 | pub const EM_JAVELIN: u16 = 77; |
342 | /// Element 14 64-bit DSP Processor |
343 | pub const EM_FIREPATH: u16 = 78; |
344 | /// LSI Logic 16-bit DSP Processor |
345 | pub const EM_ZSP: u16 = 79; |
346 | /// Donald Knuth's educational 64-bit proc |
347 | pub const EM_MMIX: u16 = 80; |
348 | /// Harvard University machine-independent object files |
349 | pub const EM_HUANY: u16 = 81; |
350 | /// SiTera Prism |
351 | pub const EM_PRISM: u16 = 82; |
352 | /// Atmel AVR 8-bit microcontroller |
353 | pub const EM_AVR: u16 = 83; |
354 | /// Fujitsu FR30 |
355 | pub const EM_FR30: u16 = 84; |
356 | /// Mitsubishi D10V |
357 | pub const EM_D10V: u16 = 85; |
358 | /// Mitsubishi D30V |
359 | pub const EM_D30V: u16 = 86; |
360 | /// NEC v850 |
361 | pub const EM_V850: u16 = 87; |
362 | /// Mitsubishi M32R |
363 | pub const EM_M32R: u16 = 88; |
364 | /// Matsushita MN10300 |
365 | pub const EM_MN10300: u16 = 89; |
366 | /// Matsushita MN10200 |
367 | pub const EM_MN10200: u16 = 90; |
368 | /// picoJava |
369 | pub const EM_PJ: u16 = 91; |
370 | /// OpenRISC 32-bit embedded processor |
371 | pub const EM_OPENRISC: u16 = 92; |
372 | /// ARC International ARCompact |
373 | pub const EM_ARC_COMPACT: u16 = 93; |
374 | /// Tensilica Xtensa Architecture |
375 | pub const EM_XTENSA: u16 = 94; |
376 | /// Alphamosaic VideoCore |
377 | pub const EM_VIDEOCORE: u16 = 95; |
378 | /// Thompson Multimedia General Purpose Proc |
379 | pub const EM_TMM_GPP: u16 = 96; |
380 | /// National Semi. 32000 |
381 | pub const EM_NS32K: u16 = 97; |
382 | /// Tenor Network TPC |
383 | pub const EM_TPC: u16 = 98; |
384 | /// Trebia SNP 1000 |
385 | pub const EM_SNP1K: u16 = 99; |
386 | /// STMicroelectronics ST200 |
387 | pub const EM_ST200: u16 = 100; |
388 | /// Ubicom IP2xxx |
389 | pub const EM_IP2K: u16 = 101; |
390 | /// MAX processor |
391 | pub const EM_MAX: u16 = 102; |
392 | /// National Semi. CompactRISC |
393 | pub const EM_CR: u16 = 103; |
394 | /// Fujitsu F2MC16 |
395 | pub const EM_F2MC16: u16 = 104; |
396 | /// Texas Instruments msp430 |
397 | pub const EM_MSP430: u16 = 105; |
398 | /// Analog Devices Blackfin DSP |
399 | pub const EM_BLACKFIN: u16 = 106; |
400 | /// Seiko Epson S1C33 family |
401 | pub const EM_SE_C33: u16 = 107; |
402 | /// Sharp embedded microprocessor |
403 | pub const EM_SEP: u16 = 108; |
404 | /// Arca RISC |
405 | pub const EM_ARCA: u16 = 109; |
406 | /// PKU-Unity & MPRC Peking Uni. mc series |
407 | pub const EM_UNICORE: u16 = 110; |
408 | /// eXcess configurable cpu |
409 | pub const EM_EXCESS: u16 = 111; |
410 | /// Icera Semi. Deep Execution Processor |
411 | pub const EM_DXP: u16 = 112; |
412 | /// Altera Nios II |
413 | pub const EM_ALTERA_NIOS2: u16 = 113; |
414 | /// National Semi. CompactRISC CRX |
415 | pub const EM_CRX: u16 = 114; |
416 | /// Motorola XGATE |
417 | pub const EM_XGATE: u16 = 115; |
418 | /// Infineon C16x/XC16x |
419 | pub const EM_C166: u16 = 116; |
420 | /// Renesas M16C |
421 | pub const EM_M16C: u16 = 117; |
422 | /// Microchip Technology dsPIC30F |
423 | pub const EM_DSPIC30F: u16 = 118; |
424 | /// Freescale Communication Engine RISC |
425 | pub const EM_CE: u16 = 119; |
426 | /// Renesas M32C |
427 | pub const EM_M32C: u16 = 120; |
428 | /// Altium TSK3000 |
429 | pub const EM_TSK3000: u16 = 131; |
430 | /// Freescale RS08 |
431 | pub const EM_RS08: u16 = 132; |
432 | /// Analog Devices SHARC family |
433 | pub const EM_SHARC: u16 = 133; |
434 | /// Cyan Technology eCOG2 |
435 | pub const EM_ECOG2: u16 = 134; |
436 | /// Sunplus S+core7 RISC |
437 | pub const EM_SCORE7: u16 = 135; |
438 | /// New Japan Radio (NJR) 24-bit DSP |
439 | pub const EM_DSP24: u16 = 136; |
440 | /// Broadcom VideoCore III |
441 | pub const EM_VIDEOCORE3: u16 = 137; |
442 | /// RISC for Lattice FPGA |
443 | pub const EM_LATTICEMICO32: u16 = 138; |
444 | /// Seiko Epson C17 |
445 | pub const EM_SE_C17: u16 = 139; |
446 | /// Texas Instruments TMS320C6000 DSP |
447 | pub const EM_TI_C6000: u16 = 140; |
448 | /// Texas Instruments TMS320C2000 DSP |
449 | pub const EM_TI_C2000: u16 = 141; |
450 | /// Texas Instruments TMS320C55x DSP |
451 | pub const EM_TI_C5500: u16 = 142; |
452 | /// Texas Instruments App. Specific RISC |
453 | pub const EM_TI_ARP32: u16 = 143; |
454 | /// Texas Instruments Prog. Realtime Unit |
455 | pub const EM_TI_PRU: u16 = 144; |
456 | /// STMicroelectronics 64bit VLIW DSP |
457 | pub const EM_MMDSP_PLUS: u16 = 160; |
458 | /// Cypress M8C |
459 | pub const EM_CYPRESS_M8C: u16 = 161; |
460 | /// Renesas R32C |
461 | pub const EM_R32C: u16 = 162; |
462 | /// NXP Semi. TriMedia |
463 | pub const EM_TRIMEDIA: u16 = 163; |
464 | /// QUALCOMM Hexagon |
465 | pub const EM_HEXAGON: u16 = 164; |
466 | /// Intel 8051 and variants |
467 | pub const EM_8051: u16 = 165; |
468 | /// STMicroelectronics STxP7x |
469 | pub const EM_STXP7X: u16 = 166; |
470 | /// Andes Tech. compact code emb. RISC |
471 | pub const EM_NDS32: u16 = 167; |
472 | /// Cyan Technology eCOG1X |
473 | pub const EM_ECOG1X: u16 = 168; |
474 | /// Dallas Semi. MAXQ30 mc |
475 | pub const EM_MAXQ30: u16 = 169; |
476 | /// New Japan Radio (NJR) 16-bit DSP |
477 | pub const EM_XIMO16: u16 = 170; |
478 | /// M2000 Reconfigurable RISC |
479 | pub const EM_MANIK: u16 = 171; |
480 | /// Cray NV2 vector architecture |
481 | pub const EM_CRAYNV2: u16 = 172; |
482 | /// Renesas RX |
483 | pub const EM_RX: u16 = 173; |
484 | /// Imagination Tech. META |
485 | pub const EM_METAG: u16 = 174; |
486 | /// MCST Elbrus |
487 | pub const EM_MCST_ELBRUS: u16 = 175; |
488 | /// Cyan Technology eCOG16 |
489 | pub const EM_ECOG16: u16 = 176; |
490 | /// National Semi. CompactRISC CR16 |
491 | pub const EM_CR16: u16 = 177; |
492 | /// Freescale Extended Time Processing Unit |
493 | pub const EM_ETPU: u16 = 178; |
494 | /// Infineon Tech. SLE9X |
495 | pub const EM_SLE9X: u16 = 179; |
496 | /// Intel L10M |
497 | pub const EM_L10M: u16 = 180; |
498 | /// Intel K10M |
499 | pub const EM_K10M: u16 = 181; |
500 | /// ARM AARCH64 |
501 | pub const EM_AARCH64: u16 = 183; |
502 | /// Amtel 32-bit microprocessor |
503 | pub const EM_AVR32: u16 = 185; |
504 | /// STMicroelectronics STM8 |
505 | pub const EM_STM8: u16 = 186; |
506 | /// Tileta TILE64 |
507 | pub const EM_TILE64: u16 = 187; |
508 | /// Tilera TILEPro |
509 | pub const EM_TILEPRO: u16 = 188; |
510 | /// Xilinx MicroBlaze |
511 | pub const EM_MICROBLAZE: u16 = 189; |
512 | /// NVIDIA CUDA |
513 | pub const EM_CUDA: u16 = 190; |
514 | /// Tilera TILE-Gx |
515 | pub const EM_TILEGX: u16 = 191; |
516 | /// CloudShield |
517 | pub const EM_CLOUDSHIELD: u16 = 192; |
518 | /// KIPO-KAIST Core-A 1st gen. |
519 | pub const EM_COREA_1ST: u16 = 193; |
520 | /// KIPO-KAIST Core-A 2nd gen. |
521 | pub const EM_COREA_2ND: u16 = 194; |
522 | /// Synopsys ARCompact V2 |
523 | pub const EM_ARC_COMPACT2: u16 = 195; |
524 | /// Open8 RISC |
525 | pub const EM_OPEN8: u16 = 196; |
526 | /// Renesas RL78 |
527 | pub const EM_RL78: u16 = 197; |
528 | /// Broadcom VideoCore V |
529 | pub const EM_VIDEOCORE5: u16 = 198; |
530 | /// Renesas 78KOR |
531 | pub const EM_78KOR: u16 = 199; |
532 | /// Freescale 56800EX DSC |
533 | pub const EM_56800EX: u16 = 200; |
534 | /// Beyond BA1 |
535 | pub const EM_BA1: u16 = 201; |
536 | /// Beyond BA2 |
537 | pub const EM_BA2: u16 = 202; |
538 | /// XMOS xCORE |
539 | pub const EM_XCORE: u16 = 203; |
540 | /// Microchip 8-bit PIC(r) |
541 | pub const EM_MCHP_PIC: u16 = 204; |
542 | /// KM211 KM32 |
543 | pub const EM_KM32: u16 = 210; |
544 | /// KM211 KMX32 |
545 | pub const EM_KMX32: u16 = 211; |
546 | /// KM211 KMX16 |
547 | pub const EM_EMX16: u16 = 212; |
548 | /// KM211 KMX8 |
549 | pub const EM_EMX8: u16 = 213; |
550 | /// KM211 KVARC |
551 | pub const EM_KVARC: u16 = 214; |
552 | /// Paneve CDP |
553 | pub const EM_CDP: u16 = 215; |
554 | /// Cognitive Smart Memory Processor |
555 | pub const EM_COGE: u16 = 216; |
556 | /// Bluechip CoolEngine |
557 | pub const EM_COOL: u16 = 217; |
558 | /// Nanoradio Optimized RISC |
559 | pub const EM_NORC: u16 = 218; |
560 | /// CSR Kalimba |
561 | pub const EM_CSR_KALIMBA: u16 = 219; |
562 | /// Zilog Z80 |
563 | pub const EM_Z80: u16 = 220; |
564 | /// Controls and Data Services VISIUMcore |
565 | pub const EM_VISIUM: u16 = 221; |
566 | /// FTDI Chip FT32 |
567 | pub const EM_FT32: u16 = 222; |
568 | /// Moxie processor |
569 | pub const EM_MOXIE: u16 = 223; |
570 | /// AMD GPU |
571 | pub const EM_AMDGPU: u16 = 224; |
572 | /// RISC-V |
573 | pub const EM_RISCV: u16 = 243; |
574 | /// Linux BPF -- in-kernel virtual machine |
575 | pub const EM_BPF: u16 = 247; |
576 | /// C-SKY |
577 | pub const EM_CSKY: u16 = 252; |
578 | /// Loongson LoongArch |
579 | pub const EM_LOONGARCH: u16 = 258; |
580 | /// Solana Binary Format |
581 | pub const EM_SBF: u16 = 263; |
582 | /// Digital Alpha |
583 | pub const EM_ALPHA: u16 = 0x9026; |
584 | |
585 | // Values for `FileHeader*::e_version` and `Ident::version`. |
586 | /// Invalid ELF version. |
587 | pub const EV_NONE: u8 = 0; |
588 | /// Current ELF version. |
589 | pub const EV_CURRENT: u8 = 1; |
590 | |
591 | /// Section header. |
592 | #[derive (Debug, Clone, Copy)] |
593 | #[repr (C)] |
594 | pub struct SectionHeader32<E: Endian> { |
595 | /// Section name. |
596 | /// |
597 | /// This is an offset into the section header string table. |
598 | pub sh_name: U32<E>, |
599 | /// Section type. One of the `SHT_*` constants. |
600 | pub sh_type: U32<E>, |
601 | /// Section flags. A combination of the `SHF_*` constants. |
602 | pub sh_flags: U32<E>, |
603 | /// Section virtual address at execution. |
604 | pub sh_addr: U32<E>, |
605 | /// Section file offset. |
606 | pub sh_offset: U32<E>, |
607 | /// Section size in bytes. |
608 | pub sh_size: U32<E>, |
609 | /// Link to another section. |
610 | /// |
611 | /// The section relationship depends on the `sh_type` value. |
612 | pub sh_link: U32<E>, |
613 | /// Additional section information. |
614 | /// |
615 | /// The meaning of this field depends on the `sh_type` value. |
616 | pub sh_info: U32<E>, |
617 | /// Section alignment. |
618 | pub sh_addralign: U32<E>, |
619 | /// Entry size if the section holds a table. |
620 | pub sh_entsize: U32<E>, |
621 | } |
622 | |
623 | /// Section header. |
624 | #[derive (Debug, Clone, Copy)] |
625 | #[repr (C)] |
626 | pub struct SectionHeader64<E: Endian> { |
627 | /// Section name. |
628 | /// |
629 | /// This is an offset into the section header string table. |
630 | pub sh_name: U32<E>, |
631 | /// Section type. One of the `SHT_*` constants. |
632 | pub sh_type: U32<E>, |
633 | /// Section flags. A combination of the `SHF_*` constants. |
634 | pub sh_flags: U64<E>, |
635 | /// Section virtual address at execution. |
636 | pub sh_addr: U64<E>, |
637 | /// Section file offset. |
638 | pub sh_offset: U64<E>, |
639 | /// Section size in bytes. |
640 | pub sh_size: U64<E>, |
641 | /// Link to another section. |
642 | /// |
643 | /// The section relationship depends on the `sh_type` value. |
644 | pub sh_link: U32<E>, |
645 | /// Additional section information. |
646 | /// |
647 | /// The meaning of this field depends on the `sh_type` value. |
648 | pub sh_info: U32<E>, |
649 | /// Section alignment. |
650 | pub sh_addralign: U64<E>, |
651 | /// Entry size if the section holds a table. |
652 | pub sh_entsize: U64<E>, |
653 | } |
654 | |
655 | // Special values for section indices. |
656 | /// Undefined section. |
657 | pub const SHN_UNDEF: u16 = 0; |
658 | /// OS-specific range start. |
659 | /// Start of reserved section indices. |
660 | pub const SHN_LORESERVE: u16 = 0xff00; |
661 | /// Start of processor-specific section indices. |
662 | pub const SHN_LOPROC: u16 = 0xff00; |
663 | /// End of processor-specific section indices. |
664 | pub const SHN_HIPROC: u16 = 0xff1f; |
665 | /// Start of OS-specific section indices. |
666 | pub const SHN_LOOS: u16 = 0xff20; |
667 | /// End of OS-specific section indices. |
668 | pub const SHN_HIOS: u16 = 0xff3f; |
669 | /// Associated symbol is absolute. |
670 | pub const SHN_ABS: u16 = 0xfff1; |
671 | /// Associated symbol is common. |
672 | pub const SHN_COMMON: u16 = 0xfff2; |
673 | /// Section index is in the `SHT_SYMTAB_SHNDX` section. |
674 | pub const SHN_XINDEX: u16 = 0xffff; |
675 | /// End of reserved section indices. |
676 | pub const SHN_HIRESERVE: u16 = 0xffff; |
677 | |
678 | // Values for `SectionHeader*::sh_type`. |
679 | /// Section header table entry is unused. |
680 | pub const SHT_NULL: u32 = 0; |
681 | /// Program data. |
682 | pub const SHT_PROGBITS: u32 = 1; |
683 | /// Symbol table. |
684 | pub const SHT_SYMTAB: u32 = 2; |
685 | /// String table. |
686 | pub const SHT_STRTAB: u32 = 3; |
687 | /// Relocation entries with explicit addends. |
688 | pub const SHT_RELA: u32 = 4; |
689 | /// Symbol hash table. |
690 | pub const SHT_HASH: u32 = 5; |
691 | /// Dynamic linking information. |
692 | pub const SHT_DYNAMIC: u32 = 6; |
693 | /// Notes. |
694 | pub const SHT_NOTE: u32 = 7; |
695 | /// Program space with no data (bss). |
696 | pub const SHT_NOBITS: u32 = 8; |
697 | /// Relocation entries without explicit addends. |
698 | pub const SHT_REL: u32 = 9; |
699 | /// Reserved section type. |
700 | pub const SHT_SHLIB: u32 = 10; |
701 | /// Dynamic linker symbol table. |
702 | pub const SHT_DYNSYM: u32 = 11; |
703 | /// Array of constructors. |
704 | pub const SHT_INIT_ARRAY: u32 = 14; |
705 | /// Array of destructors. |
706 | pub const SHT_FINI_ARRAY: u32 = 15; |
707 | /// Array of pre-constructors. |
708 | pub const SHT_PREINIT_ARRAY: u32 = 16; |
709 | /// Section group. |
710 | pub const SHT_GROUP: u32 = 17; |
711 | /// Extended section indices for a symbol table. |
712 | pub const SHT_SYMTAB_SHNDX: u32 = 18; |
713 | /// Start of OS-specific section types. |
714 | pub const SHT_LOOS: u32 = 0x6000_0000; |
715 | /// Object attributes. |
716 | pub const SHT_GNU_ATTRIBUTES: u32 = 0x6fff_fff5; |
717 | /// GNU-style hash table. |
718 | pub const SHT_GNU_HASH: u32 = 0x6fff_fff6; |
719 | /// Prelink library list |
720 | pub const SHT_GNU_LIBLIST: u32 = 0x6fff_fff7; |
721 | /// Checksum for DSO content. |
722 | pub const SHT_CHECKSUM: u32 = 0x6fff_fff8; |
723 | /// Sun-specific low bound. |
724 | pub const SHT_LOSUNW: u32 = 0x6fff_fffa; |
725 | #[allow (non_upper_case_globals)] |
726 | pub const SHT_SUNW_move: u32 = 0x6fff_fffa; |
727 | pub const SHT_SUNW_COMDAT: u32 = 0x6fff_fffb; |
728 | #[allow (non_upper_case_globals)] |
729 | pub const SHT_SUNW_syminfo: u32 = 0x6fff_fffc; |
730 | /// Version definition section. |
731 | #[allow (non_upper_case_globals)] |
732 | pub const SHT_GNU_VERDEF: u32 = 0x6fff_fffd; |
733 | /// Version needs section. |
734 | #[allow (non_upper_case_globals)] |
735 | pub const SHT_GNU_VERNEED: u32 = 0x6fff_fffe; |
736 | /// Version symbol table. |
737 | #[allow (non_upper_case_globals)] |
738 | pub const SHT_GNU_VERSYM: u32 = 0x6fff_ffff; |
739 | /// Sun-specific high bound. |
740 | pub const SHT_HISUNW: u32 = 0x6fff_ffff; |
741 | /// End of OS-specific section types. |
742 | pub const SHT_HIOS: u32 = 0x6fff_ffff; |
743 | /// Start of processor-specific section types. |
744 | pub const SHT_LOPROC: u32 = 0x7000_0000; |
745 | /// End of processor-specific section types. |
746 | pub const SHT_HIPROC: u32 = 0x7fff_ffff; |
747 | /// Start of application-specific section types. |
748 | pub const SHT_LOUSER: u32 = 0x8000_0000; |
749 | /// End of application-specific section types. |
750 | pub const SHT_HIUSER: u32 = 0x8fff_ffff; |
751 | |
752 | // Values for `SectionHeader*::sh_flags`. |
753 | /// Section is writable. |
754 | pub const SHF_WRITE: u32 = 1 << 0; |
755 | /// Section occupies memory during execution. |
756 | pub const SHF_ALLOC: u32 = 1 << 1; |
757 | /// Section is executable. |
758 | pub const SHF_EXECINSTR: u32 = 1 << 2; |
759 | /// Section may be be merged to eliminate duplication. |
760 | pub const SHF_MERGE: u32 = 1 << 4; |
761 | /// Section contains nul-terminated strings. |
762 | pub const SHF_STRINGS: u32 = 1 << 5; |
763 | /// The `sh_info` field contains a section header table index. |
764 | pub const SHF_INFO_LINK: u32 = 1 << 6; |
765 | /// Section has special ordering requirements when combining sections. |
766 | pub const SHF_LINK_ORDER: u32 = 1 << 7; |
767 | /// Section requires special OS-specific handling. |
768 | pub const SHF_OS_NONCONFORMING: u32 = 1 << 8; |
769 | /// Section is a member of a group. |
770 | pub const SHF_GROUP: u32 = 1 << 9; |
771 | /// Section holds thread-local storage. |
772 | pub const SHF_TLS: u32 = 1 << 10; |
773 | /// Section is compressed. |
774 | /// |
775 | /// Compressed sections begin with one of the `CompressionHeader*` headers. |
776 | pub const SHF_COMPRESSED: u32 = 1 << 11; |
777 | /// OS-specific section flags. |
778 | pub const SHF_MASKOS: u32 = 0x0ff0_0000; |
779 | /// Processor-specific section flags. |
780 | pub const SHF_MASKPROC: u32 = 0xf000_0000; |
781 | /// This section is excluded from the final executable or shared library. |
782 | pub const SHF_EXCLUDE: u32 = 0x8000_0000; |
783 | |
784 | /// Section compression header. |
785 | /// |
786 | /// Used when `SHF_COMPRESSED` is set. |
787 | /// |
788 | /// Note: this type currently allows for misaligned headers, but that may be |
789 | /// changed in a future version. |
790 | #[derive (Debug, Default, Clone, Copy)] |
791 | #[repr (C)] |
792 | pub struct CompressionHeader32<E: Endian> { |
793 | /// Compression format. One of the `ELFCOMPRESS_*` values. |
794 | pub ch_type: U32Bytes<E>, |
795 | /// Uncompressed data size. |
796 | pub ch_size: U32Bytes<E>, |
797 | /// Uncompressed data alignment. |
798 | pub ch_addralign: U32Bytes<E>, |
799 | } |
800 | |
801 | /// Section compression header. |
802 | /// |
803 | /// Used when `SHF_COMPRESSED` is set. |
804 | /// |
805 | /// Note: this type currently allows for misaligned headers, but that may be |
806 | /// changed in a future version. |
807 | #[derive (Debug, Default, Clone, Copy)] |
808 | #[repr (C)] |
809 | pub struct CompressionHeader64<E: Endian> { |
810 | /// Compression format. One of the `ELFCOMPRESS_*` values. |
811 | pub ch_type: U32Bytes<E>, |
812 | /// Reserved. |
813 | pub ch_reserved: U32Bytes<E>, |
814 | /// Uncompressed data size. |
815 | pub ch_size: U64Bytes<E>, |
816 | /// Uncompressed data alignment. |
817 | pub ch_addralign: U64Bytes<E>, |
818 | } |
819 | |
820 | /// ZLIB/DEFLATE algorithm. |
821 | pub const ELFCOMPRESS_ZLIB: u32 = 1; |
822 | /// Zstandard algorithm. |
823 | pub const ELFCOMPRESS_ZSTD: u32 = 2; |
824 | /// Start of OS-specific compression types. |
825 | pub const ELFCOMPRESS_LOOS: u32 = 0x6000_0000; |
826 | /// End of OS-specific compression types. |
827 | pub const ELFCOMPRESS_HIOS: u32 = 0x6fff_ffff; |
828 | /// Start of processor-specific compression types. |
829 | pub const ELFCOMPRESS_LOPROC: u32 = 0x7000_0000; |
830 | /// End of processor-specific compression types. |
831 | pub const ELFCOMPRESS_HIPROC: u32 = 0x7fff_ffff; |
832 | |
833 | // Values for the flag entry for section groups. |
834 | /// Mark group as COMDAT. |
835 | pub const GRP_COMDAT: u32 = 1; |
836 | |
837 | /// Symbol table entry. |
838 | #[derive (Debug, Default, Clone, Copy)] |
839 | #[repr (C)] |
840 | pub struct Sym32<E: Endian> { |
841 | /// Symbol name. |
842 | /// |
843 | /// This is an offset into the symbol string table. |
844 | pub st_name: U32<E>, |
845 | /// Symbol value. |
846 | pub st_value: U32<E>, |
847 | /// Symbol size. |
848 | pub st_size: U32<E>, |
849 | /// Symbol type and binding. |
850 | /// |
851 | /// Use the `st_type` and `st_bind` methods to access this value. |
852 | pub st_info: u8, |
853 | /// Symbol visibility. |
854 | /// |
855 | /// Use the `st_visibility` method to access this value. |
856 | pub st_other: u8, |
857 | /// Section index or one of the `SHN_*` values. |
858 | pub st_shndx: U16<E>, |
859 | } |
860 | |
861 | impl<E: Endian> Sym32<E> { |
862 | /// Get the `st_bind` component of the `st_info` field. |
863 | #[inline ] |
864 | pub fn st_bind(&self) -> u8 { |
865 | self.st_info >> 4 |
866 | } |
867 | |
868 | /// Get the `st_type` component of the `st_info` field. |
869 | #[inline ] |
870 | pub fn st_type(&self) -> u8 { |
871 | self.st_info & 0xf |
872 | } |
873 | |
874 | /// Set the `st_info` field given the `st_bind` and `st_type` components. |
875 | #[inline ] |
876 | pub fn set_st_info(&mut self, st_bind: u8, st_type: u8) { |
877 | self.st_info = (st_bind << 4) + (st_type & 0xf); |
878 | } |
879 | |
880 | /// Get the `st_visibility` component of the `st_info` field. |
881 | #[inline ] |
882 | pub fn st_visibility(&self) -> u8 { |
883 | self.st_other & 0x3 |
884 | } |
885 | } |
886 | |
887 | /// Symbol table entry. |
888 | #[derive (Debug, Default, Clone, Copy)] |
889 | #[repr (C)] |
890 | pub struct Sym64<E: Endian> { |
891 | /// Symbol name. |
892 | /// |
893 | /// This is an offset into the symbol string table. |
894 | pub st_name: U32<E>, |
895 | /// Symbol type and binding. |
896 | /// |
897 | /// Use the `st_bind` and `st_type` methods to access this value. |
898 | pub st_info: u8, |
899 | /// Symbol visibility. |
900 | /// |
901 | /// Use the `st_visibility` method to access this value. |
902 | pub st_other: u8, |
903 | /// Section index or one of the `SHN_*` values. |
904 | pub st_shndx: U16<E>, |
905 | /// Symbol value. |
906 | pub st_value: U64<E>, |
907 | /// Symbol size. |
908 | pub st_size: U64<E>, |
909 | } |
910 | |
911 | impl<E: Endian> Sym64<E> { |
912 | /// Get the `st_bind` component of the `st_info` field. |
913 | #[inline ] |
914 | pub fn st_bind(&self) -> u8 { |
915 | self.st_info >> 4 |
916 | } |
917 | |
918 | /// Get the `st_type` component of the `st_info` field. |
919 | #[inline ] |
920 | pub fn st_type(&self) -> u8 { |
921 | self.st_info & 0xf |
922 | } |
923 | |
924 | /// Set the `st_info` field given the `st_bind` and `st_type` components. |
925 | #[inline ] |
926 | pub fn set_st_info(&mut self, st_bind: u8, st_type: u8) { |
927 | self.st_info = (st_bind << 4) + (st_type & 0xf); |
928 | } |
929 | |
930 | /// Get the `st_visibility` component of the `st_info` field. |
931 | #[inline ] |
932 | pub fn st_visibility(&self) -> u8 { |
933 | self.st_other & 0x3 |
934 | } |
935 | } |
936 | |
937 | /// Additional information about a `Sym32`. |
938 | #[derive (Debug, Clone, Copy)] |
939 | #[repr (C)] |
940 | pub struct Syminfo32<E: Endian> { |
941 | /// Direct bindings, symbol bound to. |
942 | pub si_boundto: U16<E>, |
943 | /// Per symbol flags. |
944 | pub si_flags: U16<E>, |
945 | } |
946 | |
947 | /// Additional information about a `Sym64`. |
948 | #[derive (Debug, Clone, Copy)] |
949 | #[repr (C)] |
950 | pub struct Syminfo64<E: Endian> { |
951 | /// Direct bindings, symbol bound to. |
952 | pub si_boundto: U16<E>, |
953 | /// Per symbol flags. |
954 | pub si_flags: U16<E>, |
955 | } |
956 | |
957 | // Values for `Syminfo*::si_boundto`. |
958 | /// Symbol bound to self |
959 | pub const SYMINFO_BT_SELF: u16 = 0xffff; |
960 | /// Symbol bound to parent |
961 | pub const SYMINFO_BT_PARENT: u16 = 0xfffe; |
962 | /// Beginning of reserved entries |
963 | pub const SYMINFO_BT_LOWRESERVE: u16 = 0xff00; |
964 | |
965 | // Values for `Syminfo*::si_flags`. |
966 | /// Direct bound symbol |
967 | pub const SYMINFO_FLG_DIRECT: u16 = 0x0001; |
968 | /// Pass-thru symbol for translator |
969 | pub const SYMINFO_FLG_PASSTHRU: u16 = 0x0002; |
970 | /// Symbol is a copy-reloc |
971 | pub const SYMINFO_FLG_COPY: u16 = 0x0004; |
972 | /// Symbol bound to object to be lazy loaded |
973 | pub const SYMINFO_FLG_LAZYLOAD: u16 = 0x0008; |
974 | |
975 | // Syminfo version values. |
976 | pub const SYMINFO_NONE: u16 = 0; |
977 | pub const SYMINFO_CURRENT: u16 = 1; |
978 | pub const SYMINFO_NUM: u16 = 2; |
979 | |
980 | // Values for bind component of `Sym*::st_info`. |
981 | /// Local symbol. |
982 | pub const STB_LOCAL: u8 = 0; |
983 | /// Global symbol. |
984 | pub const STB_GLOBAL: u8 = 1; |
985 | /// Weak symbol. |
986 | pub const STB_WEAK: u8 = 2; |
987 | /// Start of OS-specific symbol binding. |
988 | pub const STB_LOOS: u8 = 10; |
989 | /// Unique symbol. |
990 | pub const STB_GNU_UNIQUE: u8 = 10; |
991 | /// End of OS-specific symbol binding. |
992 | pub const STB_HIOS: u8 = 12; |
993 | /// Start of processor-specific symbol binding. |
994 | pub const STB_LOPROC: u8 = 13; |
995 | /// End of processor-specific symbol binding. |
996 | pub const STB_HIPROC: u8 = 15; |
997 | |
998 | // Values for type component of `Sym*::st_info`. |
999 | /// Symbol type is unspecified. |
1000 | pub const STT_NOTYPE: u8 = 0; |
1001 | /// Symbol is a data object. |
1002 | pub const STT_OBJECT: u8 = 1; |
1003 | /// Symbol is a code object. |
1004 | pub const STT_FUNC: u8 = 2; |
1005 | /// Symbol is associated with a section. |
1006 | pub const STT_SECTION: u8 = 3; |
1007 | /// Symbol's name is a file name. |
1008 | pub const STT_FILE: u8 = 4; |
1009 | /// Symbol is a common data object. |
1010 | pub const STT_COMMON: u8 = 5; |
1011 | /// Symbol is a thread-local storage object. |
1012 | pub const STT_TLS: u8 = 6; |
1013 | /// Start of OS-specific symbol types. |
1014 | pub const STT_LOOS: u8 = 10; |
1015 | /// Symbol is an indirect code object. |
1016 | pub const STT_GNU_IFUNC: u8 = 10; |
1017 | /// End of OS-specific symbol types. |
1018 | pub const STT_HIOS: u8 = 12; |
1019 | /// Start of processor-specific symbol types. |
1020 | pub const STT_LOPROC: u8 = 13; |
1021 | /// End of processor-specific symbol types. |
1022 | pub const STT_HIPROC: u8 = 15; |
1023 | |
1024 | // Values for visibility component of `Symbol*::st_other`. |
1025 | /// Default symbol visibility rules. |
1026 | pub const STV_DEFAULT: u8 = 0; |
1027 | /// Processor specific hidden class. |
1028 | pub const STV_INTERNAL: u8 = 1; |
1029 | /// Symbol is not visible to other components. |
1030 | pub const STV_HIDDEN: u8 = 2; |
1031 | /// Symbol is visible to other components, but is not preemptible. |
1032 | pub const STV_PROTECTED: u8 = 3; |
1033 | |
1034 | /// Relocation table entry without explicit addend. |
1035 | #[derive (Debug, Clone, Copy)] |
1036 | #[repr (C)] |
1037 | pub struct Rel32<E: Endian> { |
1038 | /// Relocation address. |
1039 | pub r_offset: U32<E>, |
1040 | /// Relocation type and symbol index. |
1041 | pub r_info: U32<E>, |
1042 | } |
1043 | |
1044 | impl<E: Endian> Rel32<E> { |
1045 | /// Get the `r_sym` component of the `r_info` field. |
1046 | #[inline ] |
1047 | pub fn r_sym(&self, endian: E) -> u32 { |
1048 | self.r_info.get(endian) >> 8 |
1049 | } |
1050 | |
1051 | /// Get the `r_type` component of the `r_info` field. |
1052 | #[inline ] |
1053 | pub fn r_type(&self, endian: E) -> u32 { |
1054 | self.r_info.get(endian) & 0xff |
1055 | } |
1056 | |
1057 | /// Calculate the `r_info` field given the `r_sym` and `r_type` components. |
1058 | pub fn r_info(endian: E, r_sym: u32, r_type: u8) -> U32<E> { |
1059 | U32::new(e:endian, (r_sym << 8) | u32::from(r_type)) |
1060 | } |
1061 | |
1062 | /// Set the `r_info` field given the `r_sym` and `r_type` components. |
1063 | pub fn set_r_info(&mut self, endian: E, r_sym: u32, r_type: u8) { |
1064 | self.r_info = Self::r_info(endian, r_sym, r_type) |
1065 | } |
1066 | } |
1067 | |
1068 | /// Relocation table entry with explicit addend. |
1069 | #[derive (Debug, Clone, Copy)] |
1070 | #[repr (C)] |
1071 | pub struct Rela32<E: Endian> { |
1072 | /// Relocation address. |
1073 | pub r_offset: U32<E>, |
1074 | /// Relocation type and symbol index. |
1075 | pub r_info: U32<E>, |
1076 | /// Explicit addend. |
1077 | pub r_addend: I32<E>, |
1078 | } |
1079 | |
1080 | impl<E: Endian> Rela32<E> { |
1081 | /// Get the `r_sym` component of the `r_info` field. |
1082 | #[inline ] |
1083 | pub fn r_sym(&self, endian: E) -> u32 { |
1084 | self.r_info.get(endian) >> 8 |
1085 | } |
1086 | |
1087 | /// Get the `r_type` component of the `r_info` field. |
1088 | #[inline ] |
1089 | pub fn r_type(&self, endian: E) -> u32 { |
1090 | self.r_info.get(endian) & 0xff |
1091 | } |
1092 | |
1093 | /// Calculate the `r_info` field given the `r_sym` and `r_type` components. |
1094 | pub fn r_info(endian: E, r_sym: u32, r_type: u8) -> U32<E> { |
1095 | U32::new(e:endian, (r_sym << 8) | u32::from(r_type)) |
1096 | } |
1097 | |
1098 | /// Set the `r_info` field given the `r_sym` and `r_type` components. |
1099 | pub fn set_r_info(&mut self, endian: E, r_sym: u32, r_type: u8) { |
1100 | self.r_info = Self::r_info(endian, r_sym, r_type) |
1101 | } |
1102 | } |
1103 | |
1104 | impl<E: Endian> From<Rel32<E>> for Rela32<E> { |
1105 | fn from(rel: Rel32<E>) -> Self { |
1106 | Rela32 { |
1107 | r_offset: rel.r_offset, |
1108 | r_info: rel.r_info, |
1109 | r_addend: I32::default(), |
1110 | } |
1111 | } |
1112 | } |
1113 | |
1114 | /// Relocation table entry without explicit addend. |
1115 | #[derive (Debug, Clone, Copy)] |
1116 | #[repr (C)] |
1117 | pub struct Rel64<E: Endian> { |
1118 | /// Relocation address. |
1119 | pub r_offset: U64<E>, |
1120 | /// Relocation type and symbol index. |
1121 | pub r_info: U64<E>, |
1122 | } |
1123 | |
1124 | impl<E: Endian> Rel64<E> { |
1125 | /// Get the `r_sym` component of the `r_info` field. |
1126 | #[inline ] |
1127 | pub fn r_sym(&self, endian: E) -> u32 { |
1128 | (self.r_info.get(endian) >> 32) as u32 |
1129 | } |
1130 | |
1131 | /// Get the `r_type` component of the `r_info` field. |
1132 | #[inline ] |
1133 | pub fn r_type(&self, endian: E) -> u32 { |
1134 | (self.r_info.get(endian) & 0xffff_ffff) as u32 |
1135 | } |
1136 | |
1137 | /// Calculate the `r_info` field given the `r_sym` and `r_type` components. |
1138 | pub fn r_info(endian: E, r_sym: u32, r_type: u32) -> U64<E> { |
1139 | U64::new(e:endian, (u64::from(r_sym) << 32) | u64::from(r_type)) |
1140 | } |
1141 | |
1142 | /// Set the `r_info` field given the `r_sym` and `r_type` components. |
1143 | pub fn set_r_info(&mut self, endian: E, r_sym: u32, r_type: u32) { |
1144 | self.r_info = Self::r_info(endian, r_sym, r_type) |
1145 | } |
1146 | } |
1147 | |
1148 | impl<E: Endian> From<Rel64<E>> for Rela64<E> { |
1149 | fn from(rel: Rel64<E>) -> Self { |
1150 | Rela64 { |
1151 | r_offset: rel.r_offset, |
1152 | r_info: rel.r_info, |
1153 | r_addend: I64::default(), |
1154 | } |
1155 | } |
1156 | } |
1157 | |
1158 | /// Relocation table entry with explicit addend. |
1159 | #[derive (Debug, Clone, Copy)] |
1160 | #[repr (C)] |
1161 | pub struct Rela64<E: Endian> { |
1162 | /// Relocation address. |
1163 | pub r_offset: U64<E>, |
1164 | /// Relocation type and symbol index. |
1165 | pub r_info: U64<E>, |
1166 | /// Explicit addend. |
1167 | pub r_addend: I64<E>, |
1168 | } |
1169 | |
1170 | impl<E: Endian> Rela64<E> { |
1171 | pub(crate) fn get_r_info(&self, endian: E, is_mips64el: bool) -> u64 { |
1172 | let mut t = self.r_info.get(endian); |
1173 | if is_mips64el { |
1174 | t = (t << 32) |
1175 | | ((t >> 8) & 0xff000000) |
1176 | | ((t >> 24) & 0x00ff0000) |
1177 | | ((t >> 40) & 0x0000ff00) |
1178 | | ((t >> 56) & 0x000000ff); |
1179 | } |
1180 | t |
1181 | } |
1182 | |
1183 | /// Get the `r_sym` component of the `r_info` field. |
1184 | #[inline ] |
1185 | pub fn r_sym(&self, endian: E, is_mips64el: bool) -> u32 { |
1186 | (self.get_r_info(endian, is_mips64el) >> 32) as u32 |
1187 | } |
1188 | |
1189 | /// Get the `r_type` component of the `r_info` field. |
1190 | #[inline ] |
1191 | pub fn r_type(&self, endian: E, is_mips64el: bool) -> u32 { |
1192 | (self.get_r_info(endian, is_mips64el) & 0xffff_ffff) as u32 |
1193 | } |
1194 | |
1195 | /// Calculate the `r_info` field given the `r_sym` and `r_type` components. |
1196 | pub fn r_info(endian: E, is_mips64el: bool, r_sym: u32, r_type: u32) -> U64<E> { |
1197 | let mut t = (u64::from(r_sym) << 32) | u64::from(r_type); |
1198 | if is_mips64el { |
1199 | t = (t >> 32) |
1200 | | ((t & 0xff000000) << 8) |
1201 | | ((t & 0x00ff0000) << 24) |
1202 | | ((t & 0x0000ff00) << 40) |
1203 | | ((t & 0x000000ff) << 56); |
1204 | } |
1205 | U64::new(endian, t) |
1206 | } |
1207 | |
1208 | /// Set the `r_info` field given the `r_sym` and `r_type` components. |
1209 | pub fn set_r_info(&mut self, endian: E, is_mips64el: bool, r_sym: u32, r_type: u32) { |
1210 | self.r_info = Self::r_info(endian, is_mips64el, r_sym, r_type); |
1211 | } |
1212 | } |
1213 | |
1214 | /// Program segment header. |
1215 | #[derive (Debug, Clone, Copy)] |
1216 | #[repr (C)] |
1217 | pub struct ProgramHeader32<E: Endian> { |
1218 | /// Segment type. One of the `PT_*` constants. |
1219 | pub p_type: U32<E>, |
1220 | /// Segment file offset. |
1221 | pub p_offset: U32<E>, |
1222 | /// Segment virtual address. |
1223 | pub p_vaddr: U32<E>, |
1224 | /// Segment physical address. |
1225 | pub p_paddr: U32<E>, |
1226 | /// Segment size in the file. |
1227 | pub p_filesz: U32<E>, |
1228 | /// Segment size in memory. |
1229 | pub p_memsz: U32<E>, |
1230 | /// Segment flags. A combination of the `PF_*` constants. |
1231 | pub p_flags: U32<E>, |
1232 | /// Segment alignment. |
1233 | pub p_align: U32<E>, |
1234 | } |
1235 | |
1236 | /// Program segment header. |
1237 | #[derive (Debug, Clone, Copy)] |
1238 | #[repr (C)] |
1239 | pub struct ProgramHeader64<E: Endian> { |
1240 | /// Segment type. One of the `PT_*` constants. |
1241 | pub p_type: U32<E>, |
1242 | /// Segment flags. A combination of the `PF_*` constants. |
1243 | pub p_flags: U32<E>, |
1244 | /// Segment file offset. |
1245 | pub p_offset: U64<E>, |
1246 | /// Segment virtual address. |
1247 | pub p_vaddr: U64<E>, |
1248 | /// Segment physical address. |
1249 | pub p_paddr: U64<E>, |
1250 | /// Segment size in the file. |
1251 | pub p_filesz: U64<E>, |
1252 | /// Segment size in memory. |
1253 | pub p_memsz: U64<E>, |
1254 | /// Segment alignment. |
1255 | pub p_align: U64<E>, |
1256 | } |
1257 | |
1258 | /// Special value for `FileHeader*::e_phnum`. |
1259 | /// |
1260 | /// This indicates that the real number of program headers is too large to fit into e_phnum. |
1261 | /// Instead the real value is in the field `sh_info` of section 0. |
1262 | pub const PN_XNUM: u16 = 0xffff; |
1263 | |
1264 | // Values for `ProgramHeader*::p_type`. |
1265 | /// Program header table entry is unused. |
1266 | pub const PT_NULL: u32 = 0; |
1267 | /// Loadable program segment. |
1268 | pub const PT_LOAD: u32 = 1; |
1269 | /// Dynamic linking information. |
1270 | pub const PT_DYNAMIC: u32 = 2; |
1271 | /// Program interpreter. |
1272 | pub const PT_INTERP: u32 = 3; |
1273 | /// Auxiliary information. |
1274 | pub const PT_NOTE: u32 = 4; |
1275 | /// Reserved. |
1276 | pub const PT_SHLIB: u32 = 5; |
1277 | /// Segment contains the program header table. |
1278 | pub const PT_PHDR: u32 = 6; |
1279 | /// Thread-local storage segment. |
1280 | pub const PT_TLS: u32 = 7; |
1281 | /// Start of OS-specific segment types. |
1282 | pub const PT_LOOS: u32 = 0x6000_0000; |
1283 | /// GCC `.eh_frame_hdr` segment. |
1284 | pub const PT_GNU_EH_FRAME: u32 = 0x6474_e550; |
1285 | /// Indicates stack executability. |
1286 | pub const PT_GNU_STACK: u32 = 0x6474_e551; |
1287 | /// Read-only after relocation. |
1288 | pub const PT_GNU_RELRO: u32 = 0x6474_e552; |
1289 | /// Segment containing `.note.gnu.property` section. |
1290 | pub const PT_GNU_PROPERTY: u32 = 0x6474_e553; |
1291 | /// End of OS-specific segment types. |
1292 | pub const PT_HIOS: u32 = 0x6fff_ffff; |
1293 | /// Start of processor-specific segment types. |
1294 | pub const PT_LOPROC: u32 = 0x7000_0000; |
1295 | /// End of processor-specific segment types. |
1296 | pub const PT_HIPROC: u32 = 0x7fff_ffff; |
1297 | |
1298 | // Values for `ProgramHeader*::p_flags`. |
1299 | /// Segment is executable. |
1300 | pub const PF_X: u32 = 1 << 0; |
1301 | /// Segment is writable. |
1302 | pub const PF_W: u32 = 1 << 1; |
1303 | /// Segment is readable. |
1304 | pub const PF_R: u32 = 1 << 2; |
1305 | /// OS-specific segment flags. |
1306 | pub const PF_MASKOS: u32 = 0x0ff0_0000; |
1307 | /// Processor-specific segment flags. |
1308 | pub const PF_MASKPROC: u32 = 0xf000_0000; |
1309 | |
1310 | /// Note name for core files. |
1311 | pub const ELF_NOTE_CORE: &[u8] = b"CORE" ; |
1312 | /// Note name for linux core files. |
1313 | /// |
1314 | /// Notes in linux core files may also use `ELF_NOTE_CORE`. |
1315 | pub const ELF_NOTE_LINUX: &[u8] = b"LINUX" ; |
1316 | |
1317 | // Values for `NoteHeader*::n_type` in core files. |
1318 | // |
1319 | /// Contains copy of prstatus struct. |
1320 | pub const NT_PRSTATUS: u32 = 1; |
1321 | /// Contains copy of fpregset struct. |
1322 | pub const NT_PRFPREG: u32 = 2; |
1323 | /// Contains copy of fpregset struct. |
1324 | pub const NT_FPREGSET: u32 = 2; |
1325 | /// Contains copy of prpsinfo struct. |
1326 | pub const NT_PRPSINFO: u32 = 3; |
1327 | /// Contains copy of prxregset struct. |
1328 | pub const NT_PRXREG: u32 = 4; |
1329 | /// Contains copy of task structure. |
1330 | pub const NT_TASKSTRUCT: u32 = 4; |
1331 | /// String from sysinfo(SI_PLATFORM). |
1332 | pub const NT_PLATFORM: u32 = 5; |
1333 | /// Contains copy of auxv array. |
1334 | pub const NT_AUXV: u32 = 6; |
1335 | /// Contains copy of gwindows struct. |
1336 | pub const NT_GWINDOWS: u32 = 7; |
1337 | /// Contains copy of asrset struct. |
1338 | pub const NT_ASRS: u32 = 8; |
1339 | /// Contains copy of pstatus struct. |
1340 | pub const NT_PSTATUS: u32 = 10; |
1341 | /// Contains copy of psinfo struct. |
1342 | pub const NT_PSINFO: u32 = 13; |
1343 | /// Contains copy of prcred struct. |
1344 | pub const NT_PRCRED: u32 = 14; |
1345 | /// Contains copy of utsname struct. |
1346 | pub const NT_UTSNAME: u32 = 15; |
1347 | /// Contains copy of lwpstatus struct. |
1348 | pub const NT_LWPSTATUS: u32 = 16; |
1349 | /// Contains copy of lwpinfo struct. |
1350 | pub const NT_LWPSINFO: u32 = 17; |
1351 | /// Contains copy of fprxregset struct. |
1352 | pub const NT_PRFPXREG: u32 = 20; |
1353 | /// Contains copy of siginfo_t, size might increase. |
1354 | pub const NT_SIGINFO: u32 = 0x5349_4749; |
1355 | /// Contains information about mapped files. |
1356 | pub const NT_FILE: u32 = 0x4649_4c45; |
1357 | /// Contains copy of user_fxsr_struct. |
1358 | pub const NT_PRXFPREG: u32 = 0x46e6_2b7f; |
1359 | /// PowerPC Altivec/VMX registers. |
1360 | pub const NT_PPC_VMX: u32 = 0x100; |
1361 | /// PowerPC SPE/EVR registers. |
1362 | pub const NT_PPC_SPE: u32 = 0x101; |
1363 | /// PowerPC VSX registers. |
1364 | pub const NT_PPC_VSX: u32 = 0x102; |
1365 | /// Target Address Register. |
1366 | pub const NT_PPC_TAR: u32 = 0x103; |
1367 | /// Program Priority Register. |
1368 | pub const NT_PPC_PPR: u32 = 0x104; |
1369 | /// Data Stream Control Register. |
1370 | pub const NT_PPC_DSCR: u32 = 0x105; |
1371 | /// Event Based Branch Registers. |
1372 | pub const NT_PPC_EBB: u32 = 0x106; |
1373 | /// Performance Monitor Registers. |
1374 | pub const NT_PPC_PMU: u32 = 0x107; |
1375 | /// TM checkpointed GPR Registers. |
1376 | pub const NT_PPC_TM_CGPR: u32 = 0x108; |
1377 | /// TM checkpointed FPR Registers. |
1378 | pub const NT_PPC_TM_CFPR: u32 = 0x109; |
1379 | /// TM checkpointed VMX Registers. |
1380 | pub const NT_PPC_TM_CVMX: u32 = 0x10a; |
1381 | /// TM checkpointed VSX Registers. |
1382 | pub const NT_PPC_TM_CVSX: u32 = 0x10b; |
1383 | /// TM Special Purpose Registers. |
1384 | pub const NT_PPC_TM_SPR: u32 = 0x10c; |
1385 | /// TM checkpointed Target Address Register. |
1386 | pub const NT_PPC_TM_CTAR: u32 = 0x10d; |
1387 | /// TM checkpointed Program Priority Register. |
1388 | pub const NT_PPC_TM_CPPR: u32 = 0x10e; |
1389 | /// TM checkpointed Data Stream Control Register. |
1390 | pub const NT_PPC_TM_CDSCR: u32 = 0x10f; |
1391 | /// Memory Protection Keys registers. |
1392 | pub const NT_PPC_PKEY: u32 = 0x110; |
1393 | /// i386 TLS slots (struct user_desc). |
1394 | pub const NT_386_TLS: u32 = 0x200; |
1395 | /// x86 io permission bitmap (1=deny). |
1396 | pub const NT_386_IOPERM: u32 = 0x201; |
1397 | /// x86 extended state using xsave. |
1398 | pub const NT_X86_XSTATE: u32 = 0x202; |
1399 | /// s390 upper register halves. |
1400 | pub const NT_S390_HIGH_GPRS: u32 = 0x300; |
1401 | /// s390 timer register. |
1402 | pub const NT_S390_TIMER: u32 = 0x301; |
1403 | /// s390 TOD clock comparator register. |
1404 | pub const NT_S390_TODCMP: u32 = 0x302; |
1405 | /// s390 TOD programmable register. |
1406 | pub const NT_S390_TODPREG: u32 = 0x303; |
1407 | /// s390 control registers. |
1408 | pub const NT_S390_CTRS: u32 = 0x304; |
1409 | /// s390 prefix register. |
1410 | pub const NT_S390_PREFIX: u32 = 0x305; |
1411 | /// s390 breaking event address. |
1412 | pub const NT_S390_LAST_BREAK: u32 = 0x306; |
1413 | /// s390 system call restart data. |
1414 | pub const NT_S390_SYSTEM_CALL: u32 = 0x307; |
1415 | /// s390 transaction diagnostic block. |
1416 | pub const NT_S390_TDB: u32 = 0x308; |
1417 | /// s390 vector registers 0-15 upper half. |
1418 | pub const NT_S390_VXRS_LOW: u32 = 0x309; |
1419 | /// s390 vector registers 16-31. |
1420 | pub const NT_S390_VXRS_HIGH: u32 = 0x30a; |
1421 | /// s390 guarded storage registers. |
1422 | pub const NT_S390_GS_CB: u32 = 0x30b; |
1423 | /// s390 guarded storage broadcast control block. |
1424 | pub const NT_S390_GS_BC: u32 = 0x30c; |
1425 | /// s390 runtime instrumentation. |
1426 | pub const NT_S390_RI_CB: u32 = 0x30d; |
1427 | /// ARM VFP/NEON registers. |
1428 | pub const NT_ARM_VFP: u32 = 0x400; |
1429 | /// ARM TLS register. |
1430 | pub const NT_ARM_TLS: u32 = 0x401; |
1431 | /// ARM hardware breakpoint registers. |
1432 | pub const NT_ARM_HW_BREAK: u32 = 0x402; |
1433 | /// ARM hardware watchpoint registers. |
1434 | pub const NT_ARM_HW_WATCH: u32 = 0x403; |
1435 | /// ARM system call number. |
1436 | pub const NT_ARM_SYSTEM_CALL: u32 = 0x404; |
1437 | /// ARM Scalable Vector Extension registers. |
1438 | pub const NT_ARM_SVE: u32 = 0x405; |
1439 | /// Vmcore Device Dump Note. |
1440 | pub const NT_VMCOREDD: u32 = 0x700; |
1441 | /// MIPS DSP ASE registers. |
1442 | pub const NT_MIPS_DSP: u32 = 0x800; |
1443 | /// MIPS floating-point mode. |
1444 | pub const NT_MIPS_FP_MODE: u32 = 0x801; |
1445 | |
1446 | /// Note type for version string. |
1447 | /// |
1448 | /// This note may appear in object files. |
1449 | /// |
1450 | /// It must be handled as a special case because it has no descriptor, and instead |
1451 | /// uses the note name as the version string. |
1452 | pub const NT_VERSION: u32 = 1; |
1453 | |
1454 | /// Dynamic section entry. |
1455 | #[derive (Debug, Clone, Copy)] |
1456 | #[repr (C)] |
1457 | pub struct Dyn32<E: Endian> { |
1458 | /// Dynamic entry type. |
1459 | pub d_tag: U32<E>, |
1460 | /// Value (integer or address). |
1461 | pub d_val: U32<E>, |
1462 | } |
1463 | |
1464 | /// Dynamic section entry. |
1465 | #[derive (Debug, Clone, Copy)] |
1466 | #[repr (C)] |
1467 | pub struct Dyn64<E: Endian> { |
1468 | /// Dynamic entry type. |
1469 | pub d_tag: U64<E>, |
1470 | /// Value (integer or address). |
1471 | pub d_val: U64<E>, |
1472 | } |
1473 | |
1474 | // Values for `Dyn*::d_tag`. |
1475 | |
1476 | /// Marks end of dynamic section |
1477 | pub const DT_NULL: u32 = 0; |
1478 | /// Name of needed library |
1479 | pub const DT_NEEDED: u32 = 1; |
1480 | /// Size in bytes of PLT relocs |
1481 | pub const DT_PLTRELSZ: u32 = 2; |
1482 | /// Processor defined value |
1483 | pub const DT_PLTGOT: u32 = 3; |
1484 | /// Address of symbol hash table |
1485 | pub const DT_HASH: u32 = 4; |
1486 | /// Address of string table |
1487 | pub const DT_STRTAB: u32 = 5; |
1488 | /// Address of symbol table |
1489 | pub const DT_SYMTAB: u32 = 6; |
1490 | /// Address of Rela relocs |
1491 | pub const DT_RELA: u32 = 7; |
1492 | /// Total size of Rela relocs |
1493 | pub const DT_RELASZ: u32 = 8; |
1494 | /// Size of one Rela reloc |
1495 | pub const DT_RELAENT: u32 = 9; |
1496 | /// Size of string table |
1497 | pub const DT_STRSZ: u32 = 10; |
1498 | /// Size of one symbol table entry |
1499 | pub const DT_SYMENT: u32 = 11; |
1500 | /// Address of init function |
1501 | pub const DT_INIT: u32 = 12; |
1502 | /// Address of termination function |
1503 | pub const DT_FINI: u32 = 13; |
1504 | /// Name of shared object |
1505 | pub const DT_SONAME: u32 = 14; |
1506 | /// Library search path (deprecated) |
1507 | pub const DT_RPATH: u32 = 15; |
1508 | /// Start symbol search here |
1509 | pub const DT_SYMBOLIC: u32 = 16; |
1510 | /// Address of Rel relocs |
1511 | pub const DT_REL: u32 = 17; |
1512 | /// Total size of Rel relocs |
1513 | pub const DT_RELSZ: u32 = 18; |
1514 | /// Size of one Rel reloc |
1515 | pub const DT_RELENT: u32 = 19; |
1516 | /// Type of reloc in PLT |
1517 | pub const DT_PLTREL: u32 = 20; |
1518 | /// For debugging; unspecified |
1519 | pub const DT_DEBUG: u32 = 21; |
1520 | /// Reloc might modify .text |
1521 | pub const DT_TEXTREL: u32 = 22; |
1522 | /// Address of PLT relocs |
1523 | pub const DT_JMPREL: u32 = 23; |
1524 | /// Process relocations of object |
1525 | pub const DT_BIND_NOW: u32 = 24; |
1526 | /// Array with addresses of init fct |
1527 | pub const DT_INIT_ARRAY: u32 = 25; |
1528 | /// Array with addresses of fini fct |
1529 | pub const DT_FINI_ARRAY: u32 = 26; |
1530 | /// Size in bytes of DT_INIT_ARRAY |
1531 | pub const DT_INIT_ARRAYSZ: u32 = 27; |
1532 | /// Size in bytes of DT_FINI_ARRAY |
1533 | pub const DT_FINI_ARRAYSZ: u32 = 28; |
1534 | /// Library search path |
1535 | pub const DT_RUNPATH: u32 = 29; |
1536 | /// Flags for the object being loaded |
1537 | pub const DT_FLAGS: u32 = 30; |
1538 | /// Start of encoded range |
1539 | pub const DT_ENCODING: u32 = 32; |
1540 | /// Array with addresses of preinit fct |
1541 | pub const DT_PREINIT_ARRAY: u32 = 32; |
1542 | /// size in bytes of DT_PREINIT_ARRAY |
1543 | pub const DT_PREINIT_ARRAYSZ: u32 = 33; |
1544 | /// Address of SYMTAB_SHNDX section |
1545 | pub const DT_SYMTAB_SHNDX: u32 = 34; |
1546 | /// Start of OS-specific |
1547 | pub const DT_LOOS: u32 = 0x6000_000d; |
1548 | /// End of OS-specific |
1549 | pub const DT_HIOS: u32 = 0x6fff_f000; |
1550 | /// Start of processor-specific |
1551 | pub const DT_LOPROC: u32 = 0x7000_0000; |
1552 | /// End of processor-specific |
1553 | pub const DT_HIPROC: u32 = 0x7fff_ffff; |
1554 | |
1555 | // `DT_*` entries between `DT_VALRNGHI` & `DT_VALRNGLO` use `d_val` as a value. |
1556 | pub const DT_VALRNGLO: u32 = 0x6fff_fd00; |
1557 | /// Prelinking timestamp |
1558 | pub const DT_GNU_PRELINKED: u32 = 0x6fff_fdf5; |
1559 | /// Size of conflict section |
1560 | pub const DT_GNU_CONFLICTSZ: u32 = 0x6fff_fdf6; |
1561 | /// Size of library list |
1562 | pub const DT_GNU_LIBLISTSZ: u32 = 0x6fff_fdf7; |
1563 | pub const DT_CHECKSUM: u32 = 0x6fff_fdf8; |
1564 | pub const DT_PLTPADSZ: u32 = 0x6fff_fdf9; |
1565 | pub const DT_MOVEENT: u32 = 0x6fff_fdfa; |
1566 | pub const DT_MOVESZ: u32 = 0x6fff_fdfb; |
1567 | /// Feature selection (DTF_*). |
1568 | pub const DT_FEATURE_1: u32 = 0x6fff_fdfc; |
1569 | /// Flags for DT_* entries, affecting the following DT_* entry. |
1570 | pub const DT_POSFLAG_1: u32 = 0x6fff_fdfd; |
1571 | /// Size of syminfo table (in bytes) |
1572 | pub const DT_SYMINSZ: u32 = 0x6fff_fdfe; |
1573 | /// Entry size of syminfo |
1574 | pub const DT_SYMINENT: u32 = 0x6fff_fdff; |
1575 | pub const DT_VALRNGHI: u32 = 0x6fff_fdff; |
1576 | |
1577 | // `DT_*` entries between `DT_ADDRRNGHI` & `DT_ADDRRNGLO` use `d_val` as an address. |
1578 | // |
1579 | // If any adjustment is made to the ELF object after it has been |
1580 | // built these entries will need to be adjusted. |
1581 | pub const DT_ADDRRNGLO: u32 = 0x6fff_fe00; |
1582 | /// GNU-style hash table. |
1583 | pub const DT_GNU_HASH: u32 = 0x6fff_fef5; |
1584 | pub const DT_TLSDESC_PLT: u32 = 0x6fff_fef6; |
1585 | pub const DT_TLSDESC_GOT: u32 = 0x6fff_fef7; |
1586 | /// Start of conflict section |
1587 | pub const DT_GNU_CONFLICT: u32 = 0x6fff_fef8; |
1588 | /// Library list |
1589 | pub const DT_GNU_LIBLIST: u32 = 0x6fff_fef9; |
1590 | /// Configuration information. |
1591 | pub const DT_CONFIG: u32 = 0x6fff_fefa; |
1592 | /// Dependency auditing. |
1593 | pub const DT_DEPAUDIT: u32 = 0x6fff_fefb; |
1594 | /// Object auditing. |
1595 | pub const DT_AUDIT: u32 = 0x6fff_fefc; |
1596 | /// PLT padding. |
1597 | pub const DT_PLTPAD: u32 = 0x6fff_fefd; |
1598 | /// Move table. |
1599 | pub const DT_MOVETAB: u32 = 0x6fff_fefe; |
1600 | /// Syminfo table. |
1601 | pub const DT_SYMINFO: u32 = 0x6fff_feff; |
1602 | pub const DT_ADDRRNGHI: u32 = 0x6fff_feff; |
1603 | |
1604 | // The versioning entry types. The next are defined as part of the |
1605 | // GNU extension. |
1606 | pub const DT_VERSYM: u32 = 0x6fff_fff0; |
1607 | pub const DT_RELACOUNT: u32 = 0x6fff_fff9; |
1608 | pub const DT_RELCOUNT: u32 = 0x6fff_fffa; |
1609 | /// State flags, see DF_1_* below. |
1610 | pub const DT_FLAGS_1: u32 = 0x6fff_fffb; |
1611 | /// Address of version definition table |
1612 | pub const DT_VERDEF: u32 = 0x6fff_fffc; |
1613 | /// Number of version definitions |
1614 | pub const DT_VERDEFNUM: u32 = 0x6fff_fffd; |
1615 | /// Address of table with needed versions |
1616 | pub const DT_VERNEED: u32 = 0x6fff_fffe; |
1617 | /// Number of needed versions |
1618 | pub const DT_VERNEEDNUM: u32 = 0x6fff_ffff; |
1619 | |
1620 | // Machine-independent extensions in the "processor-specific" range. |
1621 | /// Shared object to load before self |
1622 | pub const DT_AUXILIARY: u32 = 0x7fff_fffd; |
1623 | /// Shared object to get values from |
1624 | pub const DT_FILTER: u32 = 0x7fff_ffff; |
1625 | |
1626 | // Values of `Dyn*::d_val` in the `DT_FLAGS` entry. |
1627 | /// Object may use DF_ORIGIN |
1628 | pub const DF_ORIGIN: u32 = 0x0000_0001; |
1629 | /// Symbol resolutions starts here |
1630 | pub const DF_SYMBOLIC: u32 = 0x0000_0002; |
1631 | /// Object contains text relocations |
1632 | pub const DF_TEXTREL: u32 = 0x0000_0004; |
1633 | /// No lazy binding for this object |
1634 | pub const DF_BIND_NOW: u32 = 0x0000_0008; |
1635 | /// Module uses the static TLS model |
1636 | pub const DF_STATIC_TLS: u32 = 0x0000_0010; |
1637 | |
1638 | // Values of `Dyn*::d_val` in the `DT_FLAGS_1` entry. |
1639 | /// Set RTLD_NOW for this object. |
1640 | pub const DF_1_NOW: u32 = 0x0000_0001; |
1641 | /// Set RTLD_GLOBAL for this object. |
1642 | pub const DF_1_GLOBAL: u32 = 0x0000_0002; |
1643 | /// Set RTLD_GROUP for this object. |
1644 | pub const DF_1_GROUP: u32 = 0x0000_0004; |
1645 | /// Set RTLD_NODELETE for this object. |
1646 | pub const DF_1_NODELETE: u32 = 0x0000_0008; |
1647 | /// Trigger filtee loading at runtime. |
1648 | pub const DF_1_LOADFLTR: u32 = 0x0000_0010; |
1649 | /// Set RTLD_INITFIRST for this object. |
1650 | pub const DF_1_INITFIRST: u32 = 0x0000_0020; |
1651 | /// Set RTLD_NOOPEN for this object. |
1652 | pub const DF_1_NOOPEN: u32 = 0x0000_0040; |
1653 | /// $ORIGIN must be handled. |
1654 | pub const DF_1_ORIGIN: u32 = 0x0000_0080; |
1655 | /// Direct binding enabled. |
1656 | pub const DF_1_DIRECT: u32 = 0x0000_0100; |
1657 | pub const DF_1_TRANS: u32 = 0x0000_0200; |
1658 | /// Object is used to interpose. |
1659 | pub const DF_1_INTERPOSE: u32 = 0x0000_0400; |
1660 | /// Ignore default lib search path. |
1661 | pub const DF_1_NODEFLIB: u32 = 0x0000_0800; |
1662 | /// Object can't be dldump'ed. |
1663 | pub const DF_1_NODUMP: u32 = 0x0000_1000; |
1664 | /// Configuration alternative created. |
1665 | pub const DF_1_CONFALT: u32 = 0x0000_2000; |
1666 | /// Filtee terminates filters search. |
1667 | pub const DF_1_ENDFILTEE: u32 = 0x0000_4000; |
1668 | /// Disp reloc applied at build time. |
1669 | pub const DF_1_DISPRELDNE: u32 = 0x0000_8000; |
1670 | /// Disp reloc applied at run-time. |
1671 | pub const DF_1_DISPRELPND: u32 = 0x0001_0000; |
1672 | /// Object has no-direct binding. |
1673 | pub const DF_1_NODIRECT: u32 = 0x0002_0000; |
1674 | pub const DF_1_IGNMULDEF: u32 = 0x0004_0000; |
1675 | pub const DF_1_NOKSYMS: u32 = 0x0008_0000; |
1676 | pub const DF_1_NOHDR: u32 = 0x0010_0000; |
1677 | /// Object is modified after built. |
1678 | pub const DF_1_EDITED: u32 = 0x0020_0000; |
1679 | pub const DF_1_NORELOC: u32 = 0x0040_0000; |
1680 | /// Object has individual interposers. |
1681 | pub const DF_1_SYMINTPOSE: u32 = 0x0080_0000; |
1682 | /// Global auditing required. |
1683 | pub const DF_1_GLOBAUDIT: u32 = 0x0100_0000; |
1684 | /// Singleton symbols are used. |
1685 | pub const DF_1_SINGLETON: u32 = 0x0200_0000; |
1686 | pub const DF_1_STUB: u32 = 0x0400_0000; |
1687 | pub const DF_1_PIE: u32 = 0x0800_0000; |
1688 | |
1689 | /// Version symbol information |
1690 | #[derive (Debug, Clone, Copy)] |
1691 | #[repr (C)] |
1692 | pub struct Versym<E: Endian>(pub U16<E>); |
1693 | |
1694 | /// Symbol is hidden. |
1695 | pub const VERSYM_HIDDEN: u16 = 0x8000; |
1696 | /// Symbol version index. |
1697 | pub const VERSYM_VERSION: u16 = 0x7fff; |
1698 | |
1699 | /// Version definition sections |
1700 | #[derive (Debug, Clone, Copy)] |
1701 | #[repr (C)] |
1702 | pub struct Verdef<E: Endian> { |
1703 | /// Version revision |
1704 | pub vd_version: U16<E>, |
1705 | /// Version information |
1706 | pub vd_flags: U16<E>, |
1707 | /// Version Index |
1708 | pub vd_ndx: U16<E>, |
1709 | /// Number of associated aux entries |
1710 | pub vd_cnt: U16<E>, |
1711 | /// Version name hash value |
1712 | pub vd_hash: U32<E>, |
1713 | /// Offset in bytes to verdaux array |
1714 | pub vd_aux: U32<E>, |
1715 | /// Offset in bytes to next verdef entry |
1716 | pub vd_next: U32<E>, |
1717 | } |
1718 | |
1719 | // Legal values for vd_version (version revision). |
1720 | /// No version |
1721 | pub const VER_DEF_NONE: u16 = 0; |
1722 | /// Current version |
1723 | pub const VER_DEF_CURRENT: u16 = 1; |
1724 | |
1725 | // Legal values for vd_flags (version information flags). |
1726 | /// Version definition of file itself |
1727 | pub const VER_FLG_BASE: u16 = 0x1; |
1728 | // Legal values for vd_flags and vna_flags (version information flags). |
1729 | /// Weak version identifier |
1730 | pub const VER_FLG_WEAK: u16 = 0x2; |
1731 | |
1732 | // Versym symbol index values. |
1733 | /// Symbol is local. |
1734 | pub const VER_NDX_LOCAL: u16 = 0; |
1735 | /// Symbol is global. |
1736 | pub const VER_NDX_GLOBAL: u16 = 1; |
1737 | |
1738 | /// Auxiliary version information. |
1739 | #[derive (Debug, Clone, Copy)] |
1740 | #[repr (C)] |
1741 | pub struct Verdaux<E: Endian> { |
1742 | /// Version or dependency names |
1743 | pub vda_name: U32<E>, |
1744 | /// Offset in bytes to next verdaux |
1745 | pub vda_next: U32<E>, |
1746 | } |
1747 | |
1748 | /// Version dependency. |
1749 | #[derive (Debug, Clone, Copy)] |
1750 | #[repr (C)] |
1751 | pub struct Verneed<E: Endian> { |
1752 | /// Version of structure |
1753 | pub vn_version: U16<E>, |
1754 | /// Number of associated aux entries |
1755 | pub vn_cnt: U16<E>, |
1756 | /// Offset of filename for this dependency |
1757 | pub vn_file: U32<E>, |
1758 | /// Offset in bytes to vernaux array |
1759 | pub vn_aux: U32<E>, |
1760 | /// Offset in bytes to next verneed entry |
1761 | pub vn_next: U32<E>, |
1762 | } |
1763 | |
1764 | // Legal values for vn_version (version revision). |
1765 | /// No version |
1766 | pub const VER_NEED_NONE: u16 = 0; |
1767 | /// Current version |
1768 | pub const VER_NEED_CURRENT: u16 = 1; |
1769 | |
1770 | /// Auxiliary needed version information. |
1771 | #[derive (Debug, Clone, Copy)] |
1772 | #[repr (C)] |
1773 | pub struct Vernaux<E: Endian> { |
1774 | /// Hash value of dependency name |
1775 | pub vna_hash: U32<E>, |
1776 | /// Dependency specific information |
1777 | pub vna_flags: U16<E>, |
1778 | /// Version Index |
1779 | pub vna_other: U16<E>, |
1780 | /// Dependency name string offset |
1781 | pub vna_name: U32<E>, |
1782 | /// Offset in bytes to next vernaux entry |
1783 | pub vna_next: U32<E>, |
1784 | } |
1785 | |
1786 | // TODO: Elf*_auxv_t, AT_* |
1787 | |
1788 | /// Note section entry header. |
1789 | /// |
1790 | /// A note consists of a header followed by a variable length name and descriptor. |
1791 | #[derive (Debug, Clone, Copy)] |
1792 | #[repr (C)] |
1793 | pub struct NoteHeader32<E: Endian> { |
1794 | /// Length of the note's name. |
1795 | /// |
1796 | /// Some known names are defined by the `ELF_NOTE_*` constants. |
1797 | pub n_namesz: U32<E>, |
1798 | /// Length of the note's descriptor. |
1799 | /// |
1800 | /// The content of the descriptor depends on the note name and type. |
1801 | pub n_descsz: U32<E>, |
1802 | /// Type of the note. |
1803 | /// |
1804 | /// One of the `NT_*` constants. The note name determines which |
1805 | /// `NT_*` constants are valid. |
1806 | pub n_type: U32<E>, |
1807 | } |
1808 | |
1809 | /// Note section entry header. |
1810 | #[derive (Debug, Clone, Copy)] |
1811 | #[repr (C)] |
1812 | pub struct NoteHeader64<E: Endian> { |
1813 | /// Length of the note's name. |
1814 | /// |
1815 | /// Some known names are defined by the `ELF_NOTE_*` constants. |
1816 | pub n_namesz: U32<E>, |
1817 | /// Length of the note's descriptor. |
1818 | /// |
1819 | /// The content of the descriptor depends on the note name and type. |
1820 | pub n_descsz: U32<E>, |
1821 | /// Type of the note. |
1822 | /// |
1823 | /// One of the `NT_*` constants. The note name determines which |
1824 | /// `NT_*` constants are valid. |
1825 | pub n_type: U32<E>, |
1826 | } |
1827 | |
1828 | /// Solaris entries in the note section have this name. |
1829 | pub const ELF_NOTE_SOLARIS: &[u8] = b"SUNW Solaris" ; |
1830 | |
1831 | // Values for `n_type` when the name is `ELF_NOTE_SOLARIS`. |
1832 | /// Desired pagesize for the binary. |
1833 | pub const NT_SOLARIS_PAGESIZE_HINT: u32 = 1; |
1834 | |
1835 | /// GNU entries in the note section have this name. |
1836 | pub const ELF_NOTE_GNU: &[u8] = b"GNU" ; |
1837 | |
1838 | /// Go entries in the note section have this name. |
1839 | // See https://go-review.googlesource.com/9520 and https://go-review.googlesource.com/10704. |
1840 | pub const ELF_NOTE_GO: &[u8] = b"Go" ; |
1841 | |
1842 | // Note types for `ELF_NOTE_GNU`. |
1843 | |
1844 | /// ABI information. |
1845 | /// |
1846 | /// The descriptor consists of words: |
1847 | /// - word 0: OS descriptor |
1848 | /// - word 1: major version of the ABI |
1849 | /// - word 2: minor version of the ABI |
1850 | /// - word 3: subminor version of the ABI |
1851 | pub const NT_GNU_ABI_TAG: u32 = 1; |
1852 | |
1853 | /// OS descriptor for `NT_GNU_ABI_TAG`. |
1854 | pub const ELF_NOTE_OS_LINUX: u32 = 0; |
1855 | /// OS descriptor for `NT_GNU_ABI_TAG`. |
1856 | pub const ELF_NOTE_OS_GNU: u32 = 1; |
1857 | /// OS descriptor for `NT_GNU_ABI_TAG`. |
1858 | pub const ELF_NOTE_OS_SOLARIS2: u32 = 2; |
1859 | /// OS descriptor for `NT_GNU_ABI_TAG`. |
1860 | pub const ELF_NOTE_OS_FREEBSD: u32 = 3; |
1861 | |
1862 | /// Synthetic hwcap information. |
1863 | /// |
1864 | /// The descriptor begins with two words: |
1865 | /// - word 0: number of entries |
1866 | /// - word 1: bitmask of enabled entries |
1867 | /// Then follow variable-length entries, one byte followed by a |
1868 | /// '\0'-terminated hwcap name string. The byte gives the bit |
1869 | /// number to test if enabled, (1U << bit) & bitmask. */ |
1870 | pub const NT_GNU_HWCAP: u32 = 2; |
1871 | |
1872 | /// Build ID bits as generated by `ld --build-id`. |
1873 | /// |
1874 | /// The descriptor consists of any nonzero number of bytes. |
1875 | pub const NT_GNU_BUILD_ID: u32 = 3; |
1876 | |
1877 | /// Build ID bits as generated by Go's gc compiler. |
1878 | /// |
1879 | /// The descriptor consists of any nonzero number of bytes. |
1880 | // See https://go-review.googlesource.com/10707. |
1881 | pub const NT_GO_BUILD_ID: u32 = 4; |
1882 | |
1883 | /// Version note generated by GNU gold containing a version string. |
1884 | pub const NT_GNU_GOLD_VERSION: u32 = 4; |
1885 | |
1886 | /// Program property. |
1887 | pub const NT_GNU_PROPERTY_TYPE_0: u32 = 5; |
1888 | |
1889 | // Values used in GNU .note.gnu.property notes (NT_GNU_PROPERTY_TYPE_0). |
1890 | |
1891 | /// Stack size. |
1892 | pub const GNU_PROPERTY_STACK_SIZE: u32 = 1; |
1893 | /// No copy relocation on protected data symbol. |
1894 | pub const GNU_PROPERTY_NO_COPY_ON_PROTECTED: u32 = 2; |
1895 | |
1896 | // A 4-byte unsigned integer property: A bit is set if it is set in all |
1897 | // relocatable inputs. |
1898 | pub const GNU_PROPERTY_UINT32_AND_LO: u32 = 0xb0000000; |
1899 | pub const GNU_PROPERTY_UINT32_AND_HI: u32 = 0xb0007fff; |
1900 | |
1901 | // A 4-byte unsigned integer property: A bit is set if it is set in any |
1902 | // relocatable inputs. |
1903 | pub const GNU_PROPERTY_UINT32_OR_LO: u32 = 0xb0008000; |
1904 | pub const GNU_PROPERTY_UINT32_OR_HI: u32 = 0xb000ffff; |
1905 | |
1906 | /// The needed properties by the object file. */ |
1907 | pub const GNU_PROPERTY_1_NEEDED: u32 = GNU_PROPERTY_UINT32_OR_LO; |
1908 | |
1909 | /// Set if the object file requires canonical function pointers and |
1910 | /// cannot be used with copy relocation. |
1911 | pub const GNU_PROPERTY_1_NEEDED_INDIRECT_EXTERN_ACCESS: u32 = 1 << 0; |
1912 | |
1913 | /// Processor-specific semantics, lo |
1914 | pub const GNU_PROPERTY_LOPROC: u32 = 0xc0000000; |
1915 | /// Processor-specific semantics, hi |
1916 | pub const GNU_PROPERTY_HIPROC: u32 = 0xdfffffff; |
1917 | /// Application-specific semantics, lo |
1918 | pub const GNU_PROPERTY_LOUSER: u32 = 0xe0000000; |
1919 | /// Application-specific semantics, hi |
1920 | pub const GNU_PROPERTY_HIUSER: u32 = 0xffffffff; |
1921 | |
1922 | /// AArch64 specific GNU properties. |
1923 | pub const GNU_PROPERTY_AARCH64_FEATURE_1_AND: u32 = 0xc0000000; |
1924 | pub const GNU_PROPERTY_AARCH64_FEATURE_PAUTH: u32 = 0xc0000001; |
1925 | |
1926 | pub const GNU_PROPERTY_AARCH64_FEATURE_1_BTI: u32 = 1 << 0; |
1927 | pub const GNU_PROPERTY_AARCH64_FEATURE_1_PAC: u32 = 1 << 1; |
1928 | |
1929 | // A 4-byte unsigned integer property: A bit is set if it is set in all |
1930 | // relocatable inputs. |
1931 | pub const GNU_PROPERTY_X86_UINT32_AND_LO: u32 = 0xc0000002; |
1932 | pub const GNU_PROPERTY_X86_UINT32_AND_HI: u32 = 0xc0007fff; |
1933 | |
1934 | // A 4-byte unsigned integer property: A bit is set if it is set in any |
1935 | // relocatable inputs. |
1936 | pub const GNU_PROPERTY_X86_UINT32_OR_LO: u32 = 0xc0008000; |
1937 | pub const GNU_PROPERTY_X86_UINT32_OR_HI: u32 = 0xc000ffff; |
1938 | |
1939 | // A 4-byte unsigned integer property: A bit is set if it is set in any |
1940 | // relocatable inputs and the property is present in all relocatable |
1941 | // inputs. |
1942 | pub const GNU_PROPERTY_X86_UINT32_OR_AND_LO: u32 = 0xc0010000; |
1943 | pub const GNU_PROPERTY_X86_UINT32_OR_AND_HI: u32 = 0xc0017fff; |
1944 | |
1945 | /// The x86 instruction sets indicated by the corresponding bits are |
1946 | /// used in program. Their support in the hardware is optional. |
1947 | pub const GNU_PROPERTY_X86_ISA_1_USED: u32 = 0xc0010002; |
1948 | /// The x86 instruction sets indicated by the corresponding bits are |
1949 | /// used in program and they must be supported by the hardware. |
1950 | pub const GNU_PROPERTY_X86_ISA_1_NEEDED: u32 = 0xc0008002; |
1951 | /// X86 processor-specific features used in program. |
1952 | pub const GNU_PROPERTY_X86_FEATURE_1_AND: u32 = 0xc0000002; |
1953 | |
1954 | /// GNU_PROPERTY_X86_ISA_1_BASELINE: CMOV, CX8 (cmpxchg8b), FPU (fld), |
1955 | /// MMX, OSFXSR (fxsave), SCE (syscall), SSE and SSE2. |
1956 | pub const GNU_PROPERTY_X86_ISA_1_BASELINE: u32 = 1 << 0; |
1957 | /// GNU_PROPERTY_X86_ISA_1_V2: GNU_PROPERTY_X86_ISA_1_BASELINE, |
1958 | /// CMPXCHG16B (cmpxchg16b), LAHF-SAHF (lahf), POPCNT (popcnt), SSE3, |
1959 | /// SSSE3, SSE4.1 and SSE4.2. |
1960 | pub const GNU_PROPERTY_X86_ISA_1_V2: u32 = 1 << 1; |
1961 | /// GNU_PROPERTY_X86_ISA_1_V3: GNU_PROPERTY_X86_ISA_1_V2, AVX, AVX2, BMI1, |
1962 | /// BMI2, F16C, FMA, LZCNT, MOVBE, XSAVE. |
1963 | pub const GNU_PROPERTY_X86_ISA_1_V3: u32 = 1 << 2; |
1964 | /// GNU_PROPERTY_X86_ISA_1_V4: GNU_PROPERTY_X86_ISA_1_V3, AVX512F, |
1965 | /// AVX512BW, AVX512CD, AVX512DQ and AVX512VL. |
1966 | pub const GNU_PROPERTY_X86_ISA_1_V4: u32 = 1 << 3; |
1967 | |
1968 | /// This indicates that all executable sections are compatible with IBT. |
1969 | pub const GNU_PROPERTY_X86_FEATURE_1_IBT: u32 = 1 << 0; |
1970 | /// This indicates that all executable sections are compatible with SHSTK. |
1971 | pub const GNU_PROPERTY_X86_FEATURE_1_SHSTK: u32 = 1 << 1; |
1972 | |
1973 | // TODO: Elf*_Move |
1974 | |
1975 | /// Header of `SHT_HASH` section. |
1976 | #[derive (Debug, Clone, Copy)] |
1977 | #[repr (C)] |
1978 | pub struct HashHeader<E: Endian> { |
1979 | /// The number of hash buckets. |
1980 | pub bucket_count: U32<E>, |
1981 | /// The number of chain values. |
1982 | pub chain_count: U32<E>, |
1983 | // Array of hash bucket start indices. |
1984 | // buckets: U32<E>[bucket_count] |
1985 | // Array of hash chain links. An index of 0 terminates the chain. |
1986 | // chains: U32<E>[chain_count] |
1987 | } |
1988 | |
1989 | /// Calculate the SysV hash for a symbol name. |
1990 | /// |
1991 | /// Used for `SHT_HASH`. |
1992 | pub fn hash(name: &[u8]) -> u32 { |
1993 | let mut hash: u32 = 0u32; |
1994 | for byte: &u8 in name { |
1995 | hash = hash.wrapping_mul(16).wrapping_add(u32::from(*byte)); |
1996 | hash ^= (hash >> 24) & 0xf0; |
1997 | } |
1998 | hash & 0xfff_ffff |
1999 | } |
2000 | |
2001 | /// Header of `SHT_GNU_HASH` section. |
2002 | #[derive (Debug, Clone, Copy)] |
2003 | #[repr (C)] |
2004 | pub struct GnuHashHeader<E: Endian> { |
2005 | /// The number of hash buckets. |
2006 | pub bucket_count: U32<E>, |
2007 | /// The symbol table index of the first symbol in the hash. |
2008 | pub symbol_base: U32<E>, |
2009 | /// The number of words in the bloom filter. |
2010 | /// |
2011 | /// Must be a non-zero power of 2. |
2012 | pub bloom_count: U32<E>, |
2013 | /// The bit shift count for the bloom filter. |
2014 | pub bloom_shift: U32<E>, |
2015 | // Array of bloom filter words. |
2016 | // bloom_filters: U32<E>[bloom_count] or U64<E>[bloom_count] |
2017 | // Array of hash bucket start indices. |
2018 | // buckets: U32<E>[bucket_count] |
2019 | // Array of hash values, one for each symbol starting at symbol_base. |
2020 | // values: U32<E>[symbol_count] |
2021 | } |
2022 | |
2023 | /// Calculate the GNU hash for a symbol name. |
2024 | /// |
2025 | /// Used for `SHT_GNU_HASH`. |
2026 | pub fn gnu_hash(name: &[u8]) -> u32 { |
2027 | let mut hash: u32 = 5381u32; |
2028 | for byte: &u8 in name { |
2029 | hash = hash.wrapping_mul(33).wrapping_add(u32::from(*byte)); |
2030 | } |
2031 | hash |
2032 | } |
2033 | |
2034 | // Motorola 68k specific definitions. |
2035 | |
2036 | // m68k values for `Rel*::r_type`. |
2037 | |
2038 | /// No reloc |
2039 | pub const R_68K_NONE: u32 = 0; |
2040 | /// Direct 32 bit |
2041 | pub const R_68K_32: u32 = 1; |
2042 | /// Direct 16 bit |
2043 | pub const R_68K_16: u32 = 2; |
2044 | /// Direct 8 bit |
2045 | pub const R_68K_8: u32 = 3; |
2046 | /// PC relative 32 bit |
2047 | pub const R_68K_PC32: u32 = 4; |
2048 | /// PC relative 16 bit |
2049 | pub const R_68K_PC16: u32 = 5; |
2050 | /// PC relative 8 bit |
2051 | pub const R_68K_PC8: u32 = 6; |
2052 | /// 32 bit PC relative GOT entry |
2053 | pub const R_68K_GOT32: u32 = 7; |
2054 | /// 16 bit PC relative GOT entry |
2055 | pub const R_68K_GOT16: u32 = 8; |
2056 | /// 8 bit PC relative GOT entry |
2057 | pub const R_68K_GOT8: u32 = 9; |
2058 | /// 32 bit GOT offset |
2059 | pub const R_68K_GOT32O: u32 = 10; |
2060 | /// 16 bit GOT offset |
2061 | pub const R_68K_GOT16O: u32 = 11; |
2062 | /// 8 bit GOT offset |
2063 | pub const R_68K_GOT8O: u32 = 12; |
2064 | /// 32 bit PC relative PLT address |
2065 | pub const R_68K_PLT32: u32 = 13; |
2066 | /// 16 bit PC relative PLT address |
2067 | pub const R_68K_PLT16: u32 = 14; |
2068 | /// 8 bit PC relative PLT address |
2069 | pub const R_68K_PLT8: u32 = 15; |
2070 | /// 32 bit PLT offset |
2071 | pub const R_68K_PLT32O: u32 = 16; |
2072 | /// 16 bit PLT offset |
2073 | pub const R_68K_PLT16O: u32 = 17; |
2074 | /// 8 bit PLT offset |
2075 | pub const R_68K_PLT8O: u32 = 18; |
2076 | /// Copy symbol at runtime |
2077 | pub const R_68K_COPY: u32 = 19; |
2078 | /// Create GOT entry |
2079 | pub const R_68K_GLOB_DAT: u32 = 20; |
2080 | /// Create PLT entry |
2081 | pub const R_68K_JMP_SLOT: u32 = 21; |
2082 | /// Adjust by program base |
2083 | pub const R_68K_RELATIVE: u32 = 22; |
2084 | /// 32 bit GOT offset for GD |
2085 | pub const R_68K_TLS_GD32: u32 = 25; |
2086 | /// 16 bit GOT offset for GD |
2087 | pub const R_68K_TLS_GD16: u32 = 26; |
2088 | /// 8 bit GOT offset for GD |
2089 | pub const R_68K_TLS_GD8: u32 = 27; |
2090 | /// 32 bit GOT offset for LDM |
2091 | pub const R_68K_TLS_LDM32: u32 = 28; |
2092 | /// 16 bit GOT offset for LDM |
2093 | pub const R_68K_TLS_LDM16: u32 = 29; |
2094 | /// 8 bit GOT offset for LDM |
2095 | pub const R_68K_TLS_LDM8: u32 = 30; |
2096 | /// 32 bit module-relative offset |
2097 | pub const R_68K_TLS_LDO32: u32 = 31; |
2098 | /// 16 bit module-relative offset |
2099 | pub const R_68K_TLS_LDO16: u32 = 32; |
2100 | /// 8 bit module-relative offset |
2101 | pub const R_68K_TLS_LDO8: u32 = 33; |
2102 | /// 32 bit GOT offset for IE |
2103 | pub const R_68K_TLS_IE32: u32 = 34; |
2104 | /// 16 bit GOT offset for IE |
2105 | pub const R_68K_TLS_IE16: u32 = 35; |
2106 | /// 8 bit GOT offset for IE |
2107 | pub const R_68K_TLS_IE8: u32 = 36; |
2108 | /// 32 bit offset relative to static TLS block |
2109 | pub const R_68K_TLS_LE32: u32 = 37; |
2110 | /// 16 bit offset relative to static TLS block |
2111 | pub const R_68K_TLS_LE16: u32 = 38; |
2112 | /// 8 bit offset relative to static TLS block |
2113 | pub const R_68K_TLS_LE8: u32 = 39; |
2114 | /// 32 bit module number |
2115 | pub const R_68K_TLS_DTPMOD32: u32 = 40; |
2116 | /// 32 bit module-relative offset |
2117 | pub const R_68K_TLS_DTPREL32: u32 = 41; |
2118 | /// 32 bit TP-relative offset |
2119 | pub const R_68K_TLS_TPREL32: u32 = 42; |
2120 | |
2121 | // Intel 80386 specific definitions. |
2122 | |
2123 | // i386 values for `Rel*::r_type`. |
2124 | |
2125 | /// No reloc |
2126 | pub const R_386_NONE: u32 = 0; |
2127 | /// Direct 32 bit |
2128 | pub const R_386_32: u32 = 1; |
2129 | /// PC relative 32 bit |
2130 | pub const R_386_PC32: u32 = 2; |
2131 | /// 32 bit GOT entry |
2132 | pub const R_386_GOT32: u32 = 3; |
2133 | /// 32 bit PLT address |
2134 | pub const R_386_PLT32: u32 = 4; |
2135 | /// Copy symbol at runtime |
2136 | pub const R_386_COPY: u32 = 5; |
2137 | /// Create GOT entry |
2138 | pub const R_386_GLOB_DAT: u32 = 6; |
2139 | /// Create PLT entry |
2140 | pub const R_386_JMP_SLOT: u32 = 7; |
2141 | /// Adjust by program base |
2142 | pub const R_386_RELATIVE: u32 = 8; |
2143 | /// 32 bit offset to GOT |
2144 | pub const R_386_GOTOFF: u32 = 9; |
2145 | /// 32 bit PC relative offset to GOT |
2146 | pub const R_386_GOTPC: u32 = 10; |
2147 | /// Direct 32 bit PLT address |
2148 | pub const R_386_32PLT: u32 = 11; |
2149 | /// Offset in static TLS block |
2150 | pub const R_386_TLS_TPOFF: u32 = 14; |
2151 | /// Address of GOT entry for static TLS block offset |
2152 | pub const R_386_TLS_IE: u32 = 15; |
2153 | /// GOT entry for static TLS block offset |
2154 | pub const R_386_TLS_GOTIE: u32 = 16; |
2155 | /// Offset relative to static TLS block |
2156 | pub const R_386_TLS_LE: u32 = 17; |
2157 | /// Direct 32 bit for GNU version of general dynamic thread local data |
2158 | pub const R_386_TLS_GD: u32 = 18; |
2159 | /// Direct 32 bit for GNU version of local dynamic thread local data in LE code |
2160 | pub const R_386_TLS_LDM: u32 = 19; |
2161 | /// Direct 16 bit |
2162 | pub const R_386_16: u32 = 20; |
2163 | /// PC relative 16 bit |
2164 | pub const R_386_PC16: u32 = 21; |
2165 | /// Direct 8 bit |
2166 | pub const R_386_8: u32 = 22; |
2167 | /// PC relative 8 bit |
2168 | pub const R_386_PC8: u32 = 23; |
2169 | /// Direct 32 bit for general dynamic thread local data |
2170 | pub const R_386_TLS_GD_32: u32 = 24; |
2171 | /// Tag for pushl in GD TLS code |
2172 | pub const R_386_TLS_GD_PUSH: u32 = 25; |
2173 | /// Relocation for call to __tls_get_addr() |
2174 | pub const R_386_TLS_GD_CALL: u32 = 26; |
2175 | /// Tag for popl in GD TLS code |
2176 | pub const R_386_TLS_GD_POP: u32 = 27; |
2177 | /// Direct 32 bit for local dynamic thread local data in LE code |
2178 | pub const R_386_TLS_LDM_32: u32 = 28; |
2179 | /// Tag for pushl in LDM TLS code |
2180 | pub const R_386_TLS_LDM_PUSH: u32 = 29; |
2181 | /// Relocation for call to __tls_get_addr() in LDM code |
2182 | pub const R_386_TLS_LDM_CALL: u32 = 30; |
2183 | /// Tag for popl in LDM TLS code |
2184 | pub const R_386_TLS_LDM_POP: u32 = 31; |
2185 | /// Offset relative to TLS block |
2186 | pub const R_386_TLS_LDO_32: u32 = 32; |
2187 | /// GOT entry for negated static TLS block offset |
2188 | pub const R_386_TLS_IE_32: u32 = 33; |
2189 | /// Negated offset relative to static TLS block |
2190 | pub const R_386_TLS_LE_32: u32 = 34; |
2191 | /// ID of module containing symbol |
2192 | pub const R_386_TLS_DTPMOD32: u32 = 35; |
2193 | /// Offset in TLS block |
2194 | pub const R_386_TLS_DTPOFF32: u32 = 36; |
2195 | /// Negated offset in static TLS block |
2196 | pub const R_386_TLS_TPOFF32: u32 = 37; |
2197 | /// 32-bit symbol size |
2198 | pub const R_386_SIZE32: u32 = 38; |
2199 | /// GOT offset for TLS descriptor. |
2200 | pub const R_386_TLS_GOTDESC: u32 = 39; |
2201 | /// Marker of call through TLS descriptor for relaxation. |
2202 | pub const R_386_TLS_DESC_CALL: u32 = 40; |
2203 | /// TLS descriptor containing pointer to code and to argument, returning the TLS offset for the symbol. |
2204 | pub const R_386_TLS_DESC: u32 = 41; |
2205 | /// Adjust indirectly by program base |
2206 | pub const R_386_IRELATIVE: u32 = 42; |
2207 | /// Load from 32 bit GOT entry, relaxable. |
2208 | pub const R_386_GOT32X: u32 = 43; |
2209 | |
2210 | // ADI SHARC specific definitions |
2211 | |
2212 | // SHARC values for `Rel*::r_type` |
2213 | |
2214 | /// 24-bit absolute address in bits 23:0 of a 48-bit instr |
2215 | /// |
2216 | /// Targets: |
2217 | /// |
2218 | /// * Type 25a (PC_DIRECT) |
2219 | pub const R_SHARC_ADDR24_V3: u32 = 0x0b; |
2220 | |
2221 | /// 32-bit absolute address in bits 31:0 of a 48-bit instr |
2222 | /// |
2223 | /// Targets: |
2224 | /// |
2225 | /// * Type 14a |
2226 | /// * Type 14d |
2227 | /// * Type 15a |
2228 | /// * Type 16a |
2229 | /// * Type 17a |
2230 | /// * Type 18a |
2231 | /// * Type 19a |
2232 | pub const R_SHARC_ADDR32_V3: u32 = 0x0c; |
2233 | |
2234 | /// 32-bit absolute address in bits 31:0 of a 32-bit data location |
2235 | /// |
2236 | /// Represented with `RelocationEncoding::Generic` |
2237 | pub const R_SHARC_ADDR_VAR_V3: u32 = 0x0d; |
2238 | |
2239 | /// 6-bit PC-relative address in bits 32:27 of a 48-bit instr |
2240 | /// |
2241 | /// Targets: |
2242 | /// |
2243 | /// * Type 9a |
2244 | /// * Type 10a |
2245 | pub const R_SHARC_PCRSHORT_V3: u32 = 0x0e; |
2246 | |
2247 | /// 24-bit PC-relative address in bits 23:0 of a 48-bit instr |
2248 | /// |
2249 | /// Targets: |
2250 | /// |
2251 | /// * Type 8a |
2252 | /// * Type 12a (truncated to 23 bits after relocation) |
2253 | /// * Type 13a (truncated to 23 bits after relocation) |
2254 | /// * Type 25a (PC Relative) |
2255 | pub const R_SHARC_PCRLONG_V3: u32 = 0x0f; |
2256 | |
2257 | /// 6-bit absolute address in bits 32:27 of a 48-bit instr |
2258 | /// |
2259 | /// Targets: |
2260 | /// |
2261 | /// * Type 4a |
2262 | /// * Type 4b |
2263 | /// * Type 4d |
2264 | pub const R_SHARC_DATA6_V3: u32 = 0x10; |
2265 | |
2266 | /// 16-bit absolute address in bits 39:24 of a 48-bit instr |
2267 | /// |
2268 | /// Targets: |
2269 | /// |
2270 | /// * Type 12a |
2271 | pub const R_SHARC_DATA16_V3: u32 = 0x11; |
2272 | |
2273 | /// 6-bit absolute address into bits 16:11 of a 32-bit instr |
2274 | /// |
2275 | /// Targets: |
2276 | /// |
2277 | /// * Type 4b |
2278 | pub const R_SHARC_DATA6_VISA_V3: u32 = 0x12; |
2279 | |
2280 | /// 7-bit absolute address into bits 6:0 of a 32-bit instr |
2281 | pub const R_SHARC_DATA7_VISA_V3: u32 = 0x13; |
2282 | |
2283 | /// 16-bit absolute address into bits 15:0 of a 32-bit instr |
2284 | pub const R_SHARC_DATA16_VISA_V3: u32 = 0x14; |
2285 | |
2286 | /// 6-bit PC-relative address into bits 16:11 of a Type B |
2287 | /// |
2288 | /// Targets: |
2289 | /// |
2290 | /// * Type 9b |
2291 | pub const R_SHARC_PCR6_VISA_V3: u32 = 0x17; |
2292 | |
2293 | /// 16-bit absolute address into bits 15:0 of a 16-bit location. |
2294 | /// |
2295 | /// Represented with `RelocationEncoding::Generic` |
2296 | pub const R_SHARC_ADDR_VAR16_V3: u32 = 0x19; |
2297 | |
2298 | pub const R_SHARC_CALC_PUSH_ADDR: u32 = 0xe0; |
2299 | pub const R_SHARC_CALC_PUSH_ADDEND: u32 = 0xe1; |
2300 | pub const R_SHARC_CALC_ADD: u32 = 0xe2; |
2301 | pub const R_SHARC_CALC_SUB: u32 = 0xe3; |
2302 | pub const R_SHARC_CALC_MUL: u32 = 0xe4; |
2303 | pub const R_SHARC_CALC_DIV: u32 = 0xe5; |
2304 | pub const R_SHARC_CALC_MOD: u32 = 0xe6; |
2305 | pub const R_SHARC_CALC_LSHIFT: u32 = 0xe7; |
2306 | pub const R_SHARC_CALC_RSHIFT: u32 = 0xe8; |
2307 | pub const R_SHARC_CALC_AND: u32 = 0xe9; |
2308 | pub const R_SHARC_CALC_OR: u32 = 0xea; |
2309 | pub const R_SHARC_CALC_XOR: u32 = 0xeb; |
2310 | pub const R_SHARC_CALC_PUSH_LEN: u32 = 0xec; |
2311 | pub const R_SHARC_CALC_NOT: u32 = 0xf6; |
2312 | |
2313 | // SHARC values for `SectionHeader*::sh_type`. |
2314 | |
2315 | /// .adi.attributes |
2316 | pub const SHT_SHARC_ADI_ATTRIBUTES: u32 = SHT_LOPROC + 0x2; |
2317 | |
2318 | // SUN SPARC specific definitions. |
2319 | |
2320 | // SPARC values for `st_type` component of `Sym*::st_info`. |
2321 | |
2322 | /// Global register reserved to app. |
2323 | pub const STT_SPARC_REGISTER: u8 = 13; |
2324 | |
2325 | // SPARC values for `FileHeader64::e_flags`. |
2326 | |
2327 | pub const EF_SPARCV9_MM: u32 = 3; |
2328 | pub const EF_SPARCV9_TSO: u32 = 0; |
2329 | pub const EF_SPARCV9_PSO: u32 = 1; |
2330 | pub const EF_SPARCV9_RMO: u32 = 2; |
2331 | /// little endian data |
2332 | pub const EF_SPARC_LEDATA: u32 = 0x80_0000; |
2333 | pub const EF_SPARC_EXT_MASK: u32 = 0xFF_FF00; |
2334 | /// generic V8+ features |
2335 | pub const EF_SPARC_32PLUS: u32 = 0x00_0100; |
2336 | /// Sun UltraSPARC1 extensions |
2337 | pub const EF_SPARC_SUN_US1: u32 = 0x00_0200; |
2338 | /// HAL R1 extensions |
2339 | pub const EF_SPARC_HAL_R1: u32 = 0x00_0400; |
2340 | /// Sun UltraSPARCIII extensions |
2341 | pub const EF_SPARC_SUN_US3: u32 = 0x00_0800; |
2342 | |
2343 | // SPARC values for `Rel*::r_type`. |
2344 | |
2345 | /// No reloc |
2346 | pub const R_SPARC_NONE: u32 = 0; |
2347 | /// Direct 8 bit |
2348 | pub const R_SPARC_8: u32 = 1; |
2349 | /// Direct 16 bit |
2350 | pub const R_SPARC_16: u32 = 2; |
2351 | /// Direct 32 bit |
2352 | pub const R_SPARC_32: u32 = 3; |
2353 | /// PC relative 8 bit |
2354 | pub const R_SPARC_DISP8: u32 = 4; |
2355 | /// PC relative 16 bit |
2356 | pub const R_SPARC_DISP16: u32 = 5; |
2357 | /// PC relative 32 bit |
2358 | pub const R_SPARC_DISP32: u32 = 6; |
2359 | /// PC relative 30 bit shifted |
2360 | pub const R_SPARC_WDISP30: u32 = 7; |
2361 | /// PC relative 22 bit shifted |
2362 | pub const R_SPARC_WDISP22: u32 = 8; |
2363 | /// High 22 bit |
2364 | pub const R_SPARC_HI22: u32 = 9; |
2365 | /// Direct 22 bit |
2366 | pub const R_SPARC_22: u32 = 10; |
2367 | /// Direct 13 bit |
2368 | pub const R_SPARC_13: u32 = 11; |
2369 | /// Truncated 10 bit |
2370 | pub const R_SPARC_LO10: u32 = 12; |
2371 | /// Truncated 10 bit GOT entry |
2372 | pub const R_SPARC_GOT10: u32 = 13; |
2373 | /// 13 bit GOT entry |
2374 | pub const R_SPARC_GOT13: u32 = 14; |
2375 | /// 22 bit GOT entry shifted |
2376 | pub const R_SPARC_GOT22: u32 = 15; |
2377 | /// PC relative 10 bit truncated |
2378 | pub const R_SPARC_PC10: u32 = 16; |
2379 | /// PC relative 22 bit shifted |
2380 | pub const R_SPARC_PC22: u32 = 17; |
2381 | /// 30 bit PC relative PLT address |
2382 | pub const R_SPARC_WPLT30: u32 = 18; |
2383 | /// Copy symbol at runtime |
2384 | pub const R_SPARC_COPY: u32 = 19; |
2385 | /// Create GOT entry |
2386 | pub const R_SPARC_GLOB_DAT: u32 = 20; |
2387 | /// Create PLT entry |
2388 | pub const R_SPARC_JMP_SLOT: u32 = 21; |
2389 | /// Adjust by program base |
2390 | pub const R_SPARC_RELATIVE: u32 = 22; |
2391 | /// Direct 32 bit unaligned |
2392 | pub const R_SPARC_UA32: u32 = 23; |
2393 | |
2394 | // Sparc64 values for `Rel*::r_type`. |
2395 | |
2396 | /// Direct 32 bit ref to PLT entry |
2397 | pub const R_SPARC_PLT32: u32 = 24; |
2398 | /// High 22 bit PLT entry |
2399 | pub const R_SPARC_HIPLT22: u32 = 25; |
2400 | /// Truncated 10 bit PLT entry |
2401 | pub const R_SPARC_LOPLT10: u32 = 26; |
2402 | /// PC rel 32 bit ref to PLT entry |
2403 | pub const R_SPARC_PCPLT32: u32 = 27; |
2404 | /// PC rel high 22 bit PLT entry |
2405 | pub const R_SPARC_PCPLT22: u32 = 28; |
2406 | /// PC rel trunc 10 bit PLT entry |
2407 | pub const R_SPARC_PCPLT10: u32 = 29; |
2408 | /// Direct 10 bit |
2409 | pub const R_SPARC_10: u32 = 30; |
2410 | /// Direct 11 bit |
2411 | pub const R_SPARC_11: u32 = 31; |
2412 | /// Direct 64 bit |
2413 | pub const R_SPARC_64: u32 = 32; |
2414 | /// 10bit with secondary 13bit addend |
2415 | pub const R_SPARC_OLO10: u32 = 33; |
2416 | /// Top 22 bits of direct 64 bit |
2417 | pub const R_SPARC_HH22: u32 = 34; |
2418 | /// High middle 10 bits of ... |
2419 | pub const R_SPARC_HM10: u32 = 35; |
2420 | /// Low middle 22 bits of ... |
2421 | pub const R_SPARC_LM22: u32 = 36; |
2422 | /// Top 22 bits of pc rel 64 bit |
2423 | pub const R_SPARC_PC_HH22: u32 = 37; |
2424 | /// High middle 10 bit of ... |
2425 | pub const R_SPARC_PC_HM10: u32 = 38; |
2426 | /// Low miggle 22 bits of ... |
2427 | pub const R_SPARC_PC_LM22: u32 = 39; |
2428 | /// PC relative 16 bit shifted |
2429 | pub const R_SPARC_WDISP16: u32 = 40; |
2430 | /// PC relative 19 bit shifted |
2431 | pub const R_SPARC_WDISP19: u32 = 41; |
2432 | /// was part of v9 ABI but was removed |
2433 | pub const R_SPARC_GLOB_JMP: u32 = 42; |
2434 | /// Direct 7 bit |
2435 | pub const R_SPARC_7: u32 = 43; |
2436 | /// Direct 5 bit |
2437 | pub const R_SPARC_5: u32 = 44; |
2438 | /// Direct 6 bit |
2439 | pub const R_SPARC_6: u32 = 45; |
2440 | /// PC relative 64 bit |
2441 | pub const R_SPARC_DISP64: u32 = 46; |
2442 | /// Direct 64 bit ref to PLT entry |
2443 | pub const R_SPARC_PLT64: u32 = 47; |
2444 | /// High 22 bit complemented |
2445 | pub const R_SPARC_HIX22: u32 = 48; |
2446 | /// Truncated 11 bit complemented |
2447 | pub const R_SPARC_LOX10: u32 = 49; |
2448 | /// Direct high 12 of 44 bit |
2449 | pub const R_SPARC_H44: u32 = 50; |
2450 | /// Direct mid 22 of 44 bit |
2451 | pub const R_SPARC_M44: u32 = 51; |
2452 | /// Direct low 10 of 44 bit |
2453 | pub const R_SPARC_L44: u32 = 52; |
2454 | /// Global register usage |
2455 | pub const R_SPARC_REGISTER: u32 = 53; |
2456 | /// Direct 64 bit unaligned |
2457 | pub const R_SPARC_UA64: u32 = 54; |
2458 | /// Direct 16 bit unaligned |
2459 | pub const R_SPARC_UA16: u32 = 55; |
2460 | pub const R_SPARC_TLS_GD_HI22: u32 = 56; |
2461 | pub const R_SPARC_TLS_GD_LO10: u32 = 57; |
2462 | pub const R_SPARC_TLS_GD_ADD: u32 = 58; |
2463 | pub const R_SPARC_TLS_GD_CALL: u32 = 59; |
2464 | pub const R_SPARC_TLS_LDM_HI22: u32 = 60; |
2465 | pub const R_SPARC_TLS_LDM_LO10: u32 = 61; |
2466 | pub const R_SPARC_TLS_LDM_ADD: u32 = 62; |
2467 | pub const R_SPARC_TLS_LDM_CALL: u32 = 63; |
2468 | pub const R_SPARC_TLS_LDO_HIX22: u32 = 64; |
2469 | pub const R_SPARC_TLS_LDO_LOX10: u32 = 65; |
2470 | pub const R_SPARC_TLS_LDO_ADD: u32 = 66; |
2471 | pub const R_SPARC_TLS_IE_HI22: u32 = 67; |
2472 | pub const R_SPARC_TLS_IE_LO10: u32 = 68; |
2473 | pub const R_SPARC_TLS_IE_LD: u32 = 69; |
2474 | pub const R_SPARC_TLS_IE_LDX: u32 = 70; |
2475 | pub const R_SPARC_TLS_IE_ADD: u32 = 71; |
2476 | pub const R_SPARC_TLS_LE_HIX22: u32 = 72; |
2477 | pub const R_SPARC_TLS_LE_LOX10: u32 = 73; |
2478 | pub const R_SPARC_TLS_DTPMOD32: u32 = 74; |
2479 | pub const R_SPARC_TLS_DTPMOD64: u32 = 75; |
2480 | pub const R_SPARC_TLS_DTPOFF32: u32 = 76; |
2481 | pub const R_SPARC_TLS_DTPOFF64: u32 = 77; |
2482 | pub const R_SPARC_TLS_TPOFF32: u32 = 78; |
2483 | pub const R_SPARC_TLS_TPOFF64: u32 = 79; |
2484 | pub const R_SPARC_GOTDATA_HIX22: u32 = 80; |
2485 | pub const R_SPARC_GOTDATA_LOX10: u32 = 81; |
2486 | pub const R_SPARC_GOTDATA_OP_HIX22: u32 = 82; |
2487 | pub const R_SPARC_GOTDATA_OP_LOX10: u32 = 83; |
2488 | pub const R_SPARC_GOTDATA_OP: u32 = 84; |
2489 | pub const R_SPARC_H34: u32 = 85; |
2490 | pub const R_SPARC_SIZE32: u32 = 86; |
2491 | pub const R_SPARC_SIZE64: u32 = 87; |
2492 | pub const R_SPARC_WDISP10: u32 = 88; |
2493 | pub const R_SPARC_JMP_IREL: u32 = 248; |
2494 | pub const R_SPARC_IRELATIVE: u32 = 249; |
2495 | pub const R_SPARC_GNU_VTINHERIT: u32 = 250; |
2496 | pub const R_SPARC_GNU_VTENTRY: u32 = 251; |
2497 | pub const R_SPARC_REV32: u32 = 252; |
2498 | |
2499 | // Sparc64 values for `Dyn32::d_tag`. |
2500 | |
2501 | pub const DT_SPARC_REGISTER: u32 = 0x7000_0001; |
2502 | |
2503 | // MIPS R3000 specific definitions. |
2504 | |
2505 | // MIPS values for `FileHeader32::e_flags`. |
2506 | |
2507 | /// A .noreorder directive was used. |
2508 | pub const EF_MIPS_NOREORDER: u32 = 1; |
2509 | /// Contains PIC code. |
2510 | pub const EF_MIPS_PIC: u32 = 2; |
2511 | /// Uses PIC calling sequence. |
2512 | pub const EF_MIPS_CPIC: u32 = 4; |
2513 | pub const EF_MIPS_XGOT: u32 = 8; |
2514 | pub const EF_MIPS_64BIT_WHIRL: u32 = 16; |
2515 | pub const EF_MIPS_ABI2: u32 = 32; |
2516 | pub const EF_MIPS_ABI_ON32: u32 = 64; |
2517 | /// Uses FP64 (12 callee-saved). |
2518 | pub const EF_MIPS_FP64: u32 = 512; |
2519 | /// Uses IEEE 754-2008 NaN encoding. |
2520 | pub const EF_MIPS_NAN2008: u32 = 1024; |
2521 | /// MIPS architecture level. |
2522 | pub const EF_MIPS_ARCH: u32 = 0xf000_0000; |
2523 | |
2524 | /// The first MIPS 32 bit ABI |
2525 | pub const EF_MIPS_ABI_O32: u32 = 0x0000_1000; |
2526 | /// O32 ABI extended for 64-bit architectures |
2527 | pub const EF_MIPS_ABI_O64: u32 = 0x0000_2000; |
2528 | /// EABI in 32-bit mode |
2529 | pub const EF_MIPS_ABI_EABI32: u32 = 0x0000_3000; |
2530 | /// EABI in 64-bit mode |
2531 | pub const EF_MIPS_ABI_EABI64: u32 = 0x0000_4000; |
2532 | /// Mask for selecting EF_MIPS_ABI_ variant |
2533 | pub const EF_MIPS_ABI: u32 = 0x0000_f000; |
2534 | |
2535 | // Legal values for MIPS architecture level. |
2536 | |
2537 | /// -mips1 code. |
2538 | pub const EF_MIPS_ARCH_1: u32 = 0x0000_0000; |
2539 | /// -mips2 code. |
2540 | pub const EF_MIPS_ARCH_2: u32 = 0x1000_0000; |
2541 | /// -mips3 code. |
2542 | pub const EF_MIPS_ARCH_3: u32 = 0x2000_0000; |
2543 | /// -mips4 code. |
2544 | pub const EF_MIPS_ARCH_4: u32 = 0x3000_0000; |
2545 | /// -mips5 code. |
2546 | pub const EF_MIPS_ARCH_5: u32 = 0x4000_0000; |
2547 | /// MIPS32 code. |
2548 | pub const EF_MIPS_ARCH_32: u32 = 0x5000_0000; |
2549 | /// MIPS64 code. |
2550 | pub const EF_MIPS_ARCH_64: u32 = 0x6000_0000; |
2551 | /// MIPS32r2 code. |
2552 | pub const EF_MIPS_ARCH_32R2: u32 = 0x7000_0000; |
2553 | /// MIPS64r2 code. |
2554 | pub const EF_MIPS_ARCH_64R2: u32 = 0x8000_0000; |
2555 | /// MIPS32r6 code |
2556 | pub const EF_MIPS_ARCH_32R6: u32 = 0x9000_0000; |
2557 | /// MIPS64r6 code |
2558 | pub const EF_MIPS_ARCH_64R6: u32 = 0xa000_0000; |
2559 | |
2560 | // MIPS values for `Sym32::st_shndx`. |
2561 | |
2562 | /// Allocated common symbols. |
2563 | pub const SHN_MIPS_ACOMMON: u16 = 0xff00; |
2564 | /// Allocated test symbols. |
2565 | pub const SHN_MIPS_TEXT: u16 = 0xff01; |
2566 | /// Allocated data symbols. |
2567 | pub const SHN_MIPS_DATA: u16 = 0xff02; |
2568 | /// Small common symbols. |
2569 | pub const SHN_MIPS_SCOMMON: u16 = 0xff03; |
2570 | /// Small undefined symbols. |
2571 | pub const SHN_MIPS_SUNDEFINED: u16 = 0xff04; |
2572 | |
2573 | // MIPS values for `SectionHeader32::sh_type`. |
2574 | |
2575 | /// Shared objects used in link. |
2576 | pub const SHT_MIPS_LIBLIST: u32 = 0x7000_0000; |
2577 | pub const SHT_MIPS_MSYM: u32 = 0x7000_0001; |
2578 | /// Conflicting symbols. |
2579 | pub const SHT_MIPS_CONFLICT: u32 = 0x7000_0002; |
2580 | /// Global data area sizes. |
2581 | pub const SHT_MIPS_GPTAB: u32 = 0x7000_0003; |
2582 | /// Reserved for SGI/MIPS compilers |
2583 | pub const SHT_MIPS_UCODE: u32 = 0x7000_0004; |
2584 | /// MIPS ECOFF debugging info. |
2585 | pub const SHT_MIPS_DEBUG: u32 = 0x7000_0005; |
2586 | /// Register usage information. |
2587 | pub const SHT_MIPS_REGINFO: u32 = 0x7000_0006; |
2588 | pub const SHT_MIPS_PACKAGE: u32 = 0x7000_0007; |
2589 | pub const SHT_MIPS_PACKSYM: u32 = 0x7000_0008; |
2590 | pub const SHT_MIPS_RELD: u32 = 0x7000_0009; |
2591 | pub const SHT_MIPS_IFACE: u32 = 0x7000_000b; |
2592 | pub const SHT_MIPS_CONTENT: u32 = 0x7000_000c; |
2593 | /// Miscellaneous options. |
2594 | pub const SHT_MIPS_OPTIONS: u32 = 0x7000_000d; |
2595 | pub const SHT_MIPS_SHDR: u32 = 0x7000_0010; |
2596 | pub const SHT_MIPS_FDESC: u32 = 0x7000_0011; |
2597 | pub const SHT_MIPS_EXTSYM: u32 = 0x7000_0012; |
2598 | pub const SHT_MIPS_DENSE: u32 = 0x7000_0013; |
2599 | pub const SHT_MIPS_PDESC: u32 = 0x7000_0014; |
2600 | pub const SHT_MIPS_LOCSYM: u32 = 0x7000_0015; |
2601 | pub const SHT_MIPS_AUXSYM: u32 = 0x7000_0016; |
2602 | pub const SHT_MIPS_OPTSYM: u32 = 0x7000_0017; |
2603 | pub const SHT_MIPS_LOCSTR: u32 = 0x7000_0018; |
2604 | pub const SHT_MIPS_LINE: u32 = 0x7000_0019; |
2605 | pub const SHT_MIPS_RFDESC: u32 = 0x7000_001a; |
2606 | pub const SHT_MIPS_DELTASYM: u32 = 0x7000_001b; |
2607 | pub const SHT_MIPS_DELTAINST: u32 = 0x7000_001c; |
2608 | pub const SHT_MIPS_DELTACLASS: u32 = 0x7000_001d; |
2609 | /// DWARF debugging information. |
2610 | pub const SHT_MIPS_DWARF: u32 = 0x7000_001e; |
2611 | pub const SHT_MIPS_DELTADECL: u32 = 0x7000_001f; |
2612 | pub const SHT_MIPS_SYMBOL_LIB: u32 = 0x7000_0020; |
2613 | /// Event section. |
2614 | pub const SHT_MIPS_EVENTS: u32 = 0x7000_0021; |
2615 | pub const SHT_MIPS_TRANSLATE: u32 = 0x7000_0022; |
2616 | pub const SHT_MIPS_PIXIE: u32 = 0x7000_0023; |
2617 | pub const SHT_MIPS_XLATE: u32 = 0x7000_0024; |
2618 | pub const SHT_MIPS_XLATE_DEBUG: u32 = 0x7000_0025; |
2619 | pub const SHT_MIPS_WHIRL: u32 = 0x7000_0026; |
2620 | pub const SHT_MIPS_EH_REGION: u32 = 0x7000_0027; |
2621 | pub const SHT_MIPS_XLATE_OLD: u32 = 0x7000_0028; |
2622 | pub const SHT_MIPS_PDR_EXCEPTION: u32 = 0x7000_0029; |
2623 | |
2624 | // MIPS values for `SectionHeader32::sh_flags`. |
2625 | |
2626 | /// Must be in global data area. |
2627 | pub const SHF_MIPS_GPREL: u32 = 0x1000_0000; |
2628 | pub const SHF_MIPS_MERGE: u32 = 0x2000_0000; |
2629 | pub const SHF_MIPS_ADDR: u32 = 0x4000_0000; |
2630 | pub const SHF_MIPS_STRINGS: u32 = 0x8000_0000; |
2631 | pub const SHF_MIPS_NOSTRIP: u32 = 0x0800_0000; |
2632 | pub const SHF_MIPS_LOCAL: u32 = 0x0400_0000; |
2633 | pub const SHF_MIPS_NAMES: u32 = 0x0200_0000; |
2634 | pub const SHF_MIPS_NODUPE: u32 = 0x0100_0000; |
2635 | |
2636 | // MIPS values for `Sym32::st_other`. |
2637 | |
2638 | pub const STO_MIPS_PLT: u8 = 0x8; |
2639 | /// Only valid for `STB_MIPS_SPLIT_COMMON`. |
2640 | pub const STO_MIPS_SC_ALIGN_UNUSED: u8 = 0xff; |
2641 | |
2642 | // MIPS values for `Sym32::st_info'. |
2643 | pub const STB_MIPS_SPLIT_COMMON: u8 = 13; |
2644 | |
2645 | // Entries found in sections of type `SHT_MIPS_GPTAB`. |
2646 | |
2647 | // TODO: Elf32_gptab, Elf32_RegInfo, Elf_Options |
2648 | |
2649 | // Values for `Elf_Options::kind`. |
2650 | |
2651 | /// Undefined. |
2652 | pub const ODK_NULL: u32 = 0; |
2653 | /// Register usage information. |
2654 | pub const ODK_REGINFO: u32 = 1; |
2655 | /// Exception processing options. |
2656 | pub const ODK_EXCEPTIONS: u32 = 2; |
2657 | /// Section padding options. |
2658 | pub const ODK_PAD: u32 = 3; |
2659 | /// Hardware workarounds performed |
2660 | pub const ODK_HWPATCH: u32 = 4; |
2661 | /// record the fill value used by the linker. |
2662 | pub const ODK_FILL: u32 = 5; |
2663 | /// reserve space for desktop tools to write. |
2664 | pub const ODK_TAGS: u32 = 6; |
2665 | /// HW workarounds. 'AND' bits when merging. |
2666 | pub const ODK_HWAND: u32 = 7; |
2667 | /// HW workarounds. 'OR' bits when merging. |
2668 | pub const ODK_HWOR: u32 = 8; |
2669 | |
2670 | // Values for `Elf_Options::info` for `ODK_EXCEPTIONS` entries. |
2671 | |
2672 | /// FPE's which MUST be enabled. |
2673 | pub const OEX_FPU_MIN: u32 = 0x1f; |
2674 | /// FPE's which MAY be enabled. |
2675 | pub const OEX_FPU_MAX: u32 = 0x1f00; |
2676 | /// page zero must be mapped. |
2677 | pub const OEX_PAGE0: u32 = 0x10000; |
2678 | /// Force sequential memory mode? |
2679 | pub const OEX_SMM: u32 = 0x20000; |
2680 | /// Force floating point debug mode? |
2681 | pub const OEX_FPDBUG: u32 = 0x40000; |
2682 | pub const OEX_PRECISEFP: u32 = OEX_FPDBUG; |
2683 | /// Dismiss invalid address faults? |
2684 | pub const OEX_DISMISS: u32 = 0x80000; |
2685 | |
2686 | pub const OEX_FPU_INVAL: u32 = 0x10; |
2687 | pub const OEX_FPU_DIV0: u32 = 0x08; |
2688 | pub const OEX_FPU_OFLO: u32 = 0x04; |
2689 | pub const OEX_FPU_UFLO: u32 = 0x02; |
2690 | pub const OEX_FPU_INEX: u32 = 0x01; |
2691 | |
2692 | // Masks for `Elf_Options::info` for an `ODK_HWPATCH` entry. */ |
2693 | /// R4000 end-of-page patch. |
2694 | pub const OHW_R4KEOP: u32 = 0x1; |
2695 | /// may need R8000 prefetch patch. |
2696 | pub const OHW_R8KPFETCH: u32 = 0x2; |
2697 | /// R5000 end-of-page patch. |
2698 | pub const OHW_R5KEOP: u32 = 0x4; |
2699 | /// R5000 cvt.\[ds\].l bug. clean=1. |
2700 | pub const OHW_R5KCVTL: u32 = 0x8; |
2701 | |
2702 | pub const OPAD_PREFIX: u32 = 0x1; |
2703 | pub const OPAD_POSTFIX: u32 = 0x2; |
2704 | pub const OPAD_SYMBOL: u32 = 0x4; |
2705 | |
2706 | // Entries found in sections of type `SHT_MIPS_OPTIONS`. |
2707 | |
2708 | // TODO: Elf_Options_Hw |
2709 | |
2710 | // Masks for `ElfOptions::info` for `ODK_HWAND` and `ODK_HWOR` entries. |
2711 | |
2712 | pub const OHWA0_R4KEOP_CHECKED: u32 = 0x0000_0001; |
2713 | pub const OHWA1_R4KEOP_CLEAN: u32 = 0x0000_0002; |
2714 | |
2715 | // MIPS values for `Rel*::r_type`. |
2716 | |
2717 | /// No reloc |
2718 | pub const R_MIPS_NONE: u32 = 0; |
2719 | /// Direct 16 bit |
2720 | pub const R_MIPS_16: u32 = 1; |
2721 | /// Direct 32 bit |
2722 | pub const R_MIPS_32: u32 = 2; |
2723 | /// PC relative 32 bit |
2724 | pub const R_MIPS_REL32: u32 = 3; |
2725 | /// Direct 26 bit shifted |
2726 | pub const R_MIPS_26: u32 = 4; |
2727 | /// High 16 bit |
2728 | pub const R_MIPS_HI16: u32 = 5; |
2729 | /// Low 16 bit |
2730 | pub const R_MIPS_LO16: u32 = 6; |
2731 | /// GP relative 16 bit |
2732 | pub const R_MIPS_GPREL16: u32 = 7; |
2733 | /// 16 bit literal entry |
2734 | pub const R_MIPS_LITERAL: u32 = 8; |
2735 | /// 16 bit GOT entry |
2736 | pub const R_MIPS_GOT16: u32 = 9; |
2737 | /// PC relative 16 bit |
2738 | pub const R_MIPS_PC16: u32 = 10; |
2739 | /// 16 bit GOT entry for function |
2740 | pub const R_MIPS_CALL16: u32 = 11; |
2741 | /// GP relative 32 bit |
2742 | pub const R_MIPS_GPREL32: u32 = 12; |
2743 | |
2744 | pub const R_MIPS_SHIFT5: u32 = 16; |
2745 | pub const R_MIPS_SHIFT6: u32 = 17; |
2746 | pub const R_MIPS_64: u32 = 18; |
2747 | pub const R_MIPS_GOT_DISP: u32 = 19; |
2748 | pub const R_MIPS_GOT_PAGE: u32 = 20; |
2749 | pub const R_MIPS_GOT_OFST: u32 = 21; |
2750 | pub const R_MIPS_GOT_HI16: u32 = 22; |
2751 | pub const R_MIPS_GOT_LO16: u32 = 23; |
2752 | pub const R_MIPS_SUB: u32 = 24; |
2753 | pub const R_MIPS_INSERT_A: u32 = 25; |
2754 | pub const R_MIPS_INSERT_B: u32 = 26; |
2755 | pub const R_MIPS_DELETE: u32 = 27; |
2756 | pub const R_MIPS_HIGHER: u32 = 28; |
2757 | pub const R_MIPS_HIGHEST: u32 = 29; |
2758 | pub const R_MIPS_CALL_HI16: u32 = 30; |
2759 | pub const R_MIPS_CALL_LO16: u32 = 31; |
2760 | pub const R_MIPS_SCN_DISP: u32 = 32; |
2761 | pub const R_MIPS_REL16: u32 = 33; |
2762 | pub const R_MIPS_ADD_IMMEDIATE: u32 = 34; |
2763 | pub const R_MIPS_PJUMP: u32 = 35; |
2764 | pub const R_MIPS_RELGOT: u32 = 36; |
2765 | pub const R_MIPS_JALR: u32 = 37; |
2766 | /// Module number 32 bit |
2767 | pub const R_MIPS_TLS_DTPMOD32: u32 = 38; |
2768 | /// Module-relative offset 32 bit |
2769 | pub const R_MIPS_TLS_DTPREL32: u32 = 39; |
2770 | /// Module number 64 bit |
2771 | pub const R_MIPS_TLS_DTPMOD64: u32 = 40; |
2772 | /// Module-relative offset 64 bit |
2773 | pub const R_MIPS_TLS_DTPREL64: u32 = 41; |
2774 | /// 16 bit GOT offset for GD |
2775 | pub const R_MIPS_TLS_GD: u32 = 42; |
2776 | /// 16 bit GOT offset for LDM |
2777 | pub const R_MIPS_TLS_LDM: u32 = 43; |
2778 | /// Module-relative offset, high 16 bits |
2779 | pub const R_MIPS_TLS_DTPREL_HI16: u32 = 44; |
2780 | /// Module-relative offset, low 16 bits |
2781 | pub const R_MIPS_TLS_DTPREL_LO16: u32 = 45; |
2782 | /// 16 bit GOT offset for IE |
2783 | pub const R_MIPS_TLS_GOTTPREL: u32 = 46; |
2784 | /// TP-relative offset, 32 bit |
2785 | pub const R_MIPS_TLS_TPREL32: u32 = 47; |
2786 | /// TP-relative offset, 64 bit |
2787 | pub const R_MIPS_TLS_TPREL64: u32 = 48; |
2788 | /// TP-relative offset, high 16 bits |
2789 | pub const R_MIPS_TLS_TPREL_HI16: u32 = 49; |
2790 | /// TP-relative offset, low 16 bits |
2791 | pub const R_MIPS_TLS_TPREL_LO16: u32 = 50; |
2792 | pub const R_MIPS_GLOB_DAT: u32 = 51; |
2793 | pub const R_MIPS_COPY: u32 = 126; |
2794 | pub const R_MIPS_JUMP_SLOT: u32 = 127; |
2795 | |
2796 | // MIPS values for `ProgramHeader32::p_type`. |
2797 | |
2798 | /// Register usage information. |
2799 | pub const PT_MIPS_REGINFO: u32 = 0x7000_0000; |
2800 | /// Runtime procedure table. |
2801 | pub const PT_MIPS_RTPROC: u32 = 0x7000_0001; |
2802 | pub const PT_MIPS_OPTIONS: u32 = 0x7000_0002; |
2803 | /// FP mode requirement. |
2804 | pub const PT_MIPS_ABIFLAGS: u32 = 0x7000_0003; |
2805 | |
2806 | // MIPS values for `ProgramHeader32::p_flags`. |
2807 | |
2808 | pub const PF_MIPS_LOCAL: u32 = 0x1000_0000; |
2809 | |
2810 | // MIPS values for `Dyn32::d_tag`. |
2811 | |
2812 | /// Runtime linker interface version |
2813 | pub const DT_MIPS_RLD_VERSION: u32 = 0x7000_0001; |
2814 | /// Timestamp |
2815 | pub const DT_MIPS_TIME_STAMP: u32 = 0x7000_0002; |
2816 | /// Checksum |
2817 | pub const DT_MIPS_ICHECKSUM: u32 = 0x7000_0003; |
2818 | /// Version string (string tbl index) |
2819 | pub const DT_MIPS_IVERSION: u32 = 0x7000_0004; |
2820 | /// Flags |
2821 | pub const DT_MIPS_FLAGS: u32 = 0x7000_0005; |
2822 | /// Base address |
2823 | pub const DT_MIPS_BASE_ADDRESS: u32 = 0x7000_0006; |
2824 | pub const DT_MIPS_MSYM: u32 = 0x7000_0007; |
2825 | /// Address of CONFLICT section |
2826 | pub const DT_MIPS_CONFLICT: u32 = 0x7000_0008; |
2827 | /// Address of LIBLIST section |
2828 | pub const DT_MIPS_LIBLIST: u32 = 0x7000_0009; |
2829 | /// Number of local GOT entries |
2830 | pub const DT_MIPS_LOCAL_GOTNO: u32 = 0x7000_000a; |
2831 | /// Number of CONFLICT entries |
2832 | pub const DT_MIPS_CONFLICTNO: u32 = 0x7000_000b; |
2833 | /// Number of LIBLIST entries |
2834 | pub const DT_MIPS_LIBLISTNO: u32 = 0x7000_0010; |
2835 | /// Number of DYNSYM entries |
2836 | pub const DT_MIPS_SYMTABNO: u32 = 0x7000_0011; |
2837 | /// First external DYNSYM |
2838 | pub const DT_MIPS_UNREFEXTNO: u32 = 0x7000_0012; |
2839 | /// First GOT entry in DYNSYM |
2840 | pub const DT_MIPS_GOTSYM: u32 = 0x7000_0013; |
2841 | /// Number of GOT page table entries |
2842 | pub const DT_MIPS_HIPAGENO: u32 = 0x7000_0014; |
2843 | /// Address of run time loader map. |
2844 | pub const DT_MIPS_RLD_MAP: u32 = 0x7000_0016; |
2845 | /// Delta C++ class definition. |
2846 | pub const DT_MIPS_DELTA_CLASS: u32 = 0x7000_0017; |
2847 | /// Number of entries in DT_MIPS_DELTA_CLASS. |
2848 | pub const DT_MIPS_DELTA_CLASS_NO: u32 = 0x7000_0018; |
2849 | /// Delta C++ class instances. |
2850 | pub const DT_MIPS_DELTA_INSTANCE: u32 = 0x7000_0019; |
2851 | /// Number of entries in DT_MIPS_DELTA_INSTANCE. |
2852 | pub const DT_MIPS_DELTA_INSTANCE_NO: u32 = 0x7000_001a; |
2853 | /// Delta relocations. |
2854 | pub const DT_MIPS_DELTA_RELOC: u32 = 0x7000_001b; |
2855 | /// Number of entries in DT_MIPS_DELTA_RELOC. |
2856 | pub const DT_MIPS_DELTA_RELOC_NO: u32 = 0x7000_001c; |
2857 | /// Delta symbols that Delta relocations refer to. |
2858 | pub const DT_MIPS_DELTA_SYM: u32 = 0x7000_001d; |
2859 | /// Number of entries in DT_MIPS_DELTA_SYM. |
2860 | pub const DT_MIPS_DELTA_SYM_NO: u32 = 0x7000_001e; |
2861 | /// Delta symbols that hold the class declaration. |
2862 | pub const DT_MIPS_DELTA_CLASSSYM: u32 = 0x7000_0020; |
2863 | /// Number of entries in DT_MIPS_DELTA_CLASSSYM. |
2864 | pub const DT_MIPS_DELTA_CLASSSYM_NO: u32 = 0x7000_0021; |
2865 | /// Flags indicating for C++ flavor. |
2866 | pub const DT_MIPS_CXX_FLAGS: u32 = 0x7000_0022; |
2867 | pub const DT_MIPS_PIXIE_INIT: u32 = 0x7000_0023; |
2868 | pub const DT_MIPS_SYMBOL_LIB: u32 = 0x7000_0024; |
2869 | pub const DT_MIPS_LOCALPAGE_GOTIDX: u32 = 0x7000_0025; |
2870 | pub const DT_MIPS_LOCAL_GOTIDX: u32 = 0x7000_0026; |
2871 | pub const DT_MIPS_HIDDEN_GOTIDX: u32 = 0x7000_0027; |
2872 | pub const DT_MIPS_PROTECTED_GOTIDX: u32 = 0x7000_0028; |
2873 | /// Address of .options. |
2874 | pub const DT_MIPS_OPTIONS: u32 = 0x7000_0029; |
2875 | /// Address of .interface. |
2876 | pub const DT_MIPS_INTERFACE: u32 = 0x7000_002a; |
2877 | pub const DT_MIPS_DYNSTR_ALIGN: u32 = 0x7000_002b; |
2878 | /// Size of the .interface section. |
2879 | pub const DT_MIPS_INTERFACE_SIZE: u32 = 0x7000_002c; |
2880 | /// Address of rld_text_rsolve function stored in GOT. |
2881 | pub const DT_MIPS_RLD_TEXT_RESOLVE_ADDR: u32 = 0x7000_002d; |
2882 | /// Default suffix of dso to be added by rld on dlopen() calls. |
2883 | pub const DT_MIPS_PERF_SUFFIX: u32 = 0x7000_002e; |
2884 | /// (O32)Size of compact rel section. |
2885 | pub const DT_MIPS_COMPACT_SIZE: u32 = 0x7000_002f; |
2886 | /// GP value for aux GOTs. |
2887 | pub const DT_MIPS_GP_VALUE: u32 = 0x7000_0030; |
2888 | /// Address of aux .dynamic. |
2889 | pub const DT_MIPS_AUX_DYNAMIC: u32 = 0x7000_0031; |
2890 | /// The address of .got.plt in an executable using the new non-PIC ABI. |
2891 | pub const DT_MIPS_PLTGOT: u32 = 0x7000_0032; |
2892 | /// The base of the PLT in an executable using the new non-PIC ABI if that PLT is writable. For a non-writable PLT, this is omitted or has a zero value. |
2893 | pub const DT_MIPS_RWPLT: u32 = 0x7000_0034; |
2894 | /// An alternative description of the classic MIPS RLD_MAP that is usable in a PIE as it stores a relative offset from the address of the tag rather than an absolute address. |
2895 | pub const DT_MIPS_RLD_MAP_REL: u32 = 0x7000_0035; |
2896 | |
2897 | // Values for `DT_MIPS_FLAGS` `Dyn32` entry. |
2898 | |
2899 | /// No flags |
2900 | pub const RHF_NONE: u32 = 0; |
2901 | /// Use quickstart |
2902 | pub const RHF_QUICKSTART: u32 = 1 << 0; |
2903 | /// Hash size not power of 2 |
2904 | pub const RHF_NOTPOT: u32 = 1 << 1; |
2905 | /// Ignore LD_LIBRARY_PATH |
2906 | pub const RHF_NO_LIBRARY_REPLACEMENT: u32 = 1 << 2; |
2907 | pub const RHF_NO_MOVE: u32 = 1 << 3; |
2908 | pub const RHF_SGI_ONLY: u32 = 1 << 4; |
2909 | pub const RHF_GUARANTEE_INIT: u32 = 1 << 5; |
2910 | pub const RHF_DELTA_C_PLUS_PLUS: u32 = 1 << 6; |
2911 | pub const RHF_GUARANTEE_START_INIT: u32 = 1 << 7; |
2912 | pub const RHF_PIXIE: u32 = 1 << 8; |
2913 | pub const RHF_DEFAULT_DELAY_LOAD: u32 = 1 << 9; |
2914 | pub const RHF_REQUICKSTART: u32 = 1 << 10; |
2915 | pub const RHF_REQUICKSTARTED: u32 = 1 << 11; |
2916 | pub const RHF_CORD: u32 = 1 << 12; |
2917 | pub const RHF_NO_UNRES_UNDEF: u32 = 1 << 13; |
2918 | pub const RHF_RLD_ORDER_SAFE: u32 = 1 << 14; |
2919 | |
2920 | // Entries found in sections of type `SHT_MIPS_LIBLIST`. |
2921 | |
2922 | // TODO: Elf32_Lib, Elf64_Lib |
2923 | |
2924 | // Values for `Lib*::l_flags`. |
2925 | |
2926 | pub const LL_NONE: u32 = 0; |
2927 | /// Require exact match |
2928 | pub const LL_EXACT_MATCH: u32 = 1 << 0; |
2929 | /// Ignore interface version |
2930 | pub const LL_IGNORE_INT_VER: u32 = 1 << 1; |
2931 | pub const LL_REQUIRE_MINOR: u32 = 1 << 2; |
2932 | pub const LL_EXPORTS: u32 = 1 << 3; |
2933 | pub const LL_DELAY_LOAD: u32 = 1 << 4; |
2934 | pub const LL_DELTA: u32 = 1 << 5; |
2935 | |
2936 | // TODO: MIPS ABI flags |
2937 | |
2938 | // PA-RISC specific definitions. |
2939 | |
2940 | // PA-RISC values for `FileHeader32::e_flags`. |
2941 | |
2942 | /// Trap nil pointer dereference. |
2943 | pub const EF_PARISC_TRAPNIL: u32 = 0x0001_0000; |
2944 | /// Program uses arch. extensions. |
2945 | pub const EF_PARISC_EXT: u32 = 0x0002_0000; |
2946 | /// Program expects little endian. |
2947 | pub const EF_PARISC_LSB: u32 = 0x0004_0000; |
2948 | /// Program expects wide mode. |
2949 | pub const EF_PARISC_WIDE: u32 = 0x0008_0000; |
2950 | /// No kernel assisted branch prediction. |
2951 | pub const EF_PARISC_NO_KABP: u32 = 0x0010_0000; |
2952 | /// Allow lazy swapping. |
2953 | pub const EF_PARISC_LAZYSWAP: u32 = 0x0040_0000; |
2954 | /// Architecture version. |
2955 | pub const EF_PARISC_ARCH: u32 = 0x0000_ffff; |
2956 | |
2957 | // Values for `EF_PARISC_ARCH'. |
2958 | |
2959 | /// PA-RISC 1.0 big-endian. |
2960 | pub const EFA_PARISC_1_0: u32 = 0x020b; |
2961 | /// PA-RISC 1.1 big-endian. |
2962 | pub const EFA_PARISC_1_1: u32 = 0x0210; |
2963 | /// PA-RISC 2.0 big-endian. |
2964 | pub const EFA_PARISC_2_0: u32 = 0x0214; |
2965 | |
2966 | // PA-RISC values for `Sym*::st_shndx`. |
2967 | |
2968 | /// Section for tentatively declared symbols in ANSI C. |
2969 | pub const SHN_PARISC_ANSI_COMMON: u16 = 0xff00; |
2970 | /// Common blocks in huge model. |
2971 | pub const SHN_PARISC_HUGE_COMMON: u16 = 0xff01; |
2972 | |
2973 | // PA-RISC values for `SectionHeader32::sh_type`. |
2974 | |
2975 | /// Contains product specific ext. |
2976 | pub const SHT_PARISC_EXT: u32 = 0x7000_0000; |
2977 | /// Unwind information. |
2978 | pub const SHT_PARISC_UNWIND: u32 = 0x7000_0001; |
2979 | /// Debug info for optimized code. |
2980 | pub const SHT_PARISC_DOC: u32 = 0x7000_0002; |
2981 | |
2982 | // PA-RISC values for `SectionHeader32::sh_flags`. |
2983 | |
2984 | /// Section with short addressing. |
2985 | pub const SHF_PARISC_SHORT: u32 = 0x2000_0000; |
2986 | /// Section far from gp. |
2987 | pub const SHF_PARISC_HUGE: u32 = 0x4000_0000; |
2988 | /// Static branch prediction code. |
2989 | pub const SHF_PARISC_SBP: u32 = 0x8000_0000; |
2990 | |
2991 | // PA-RISC values for `st_type` component of `Sym32::st_info`. |
2992 | |
2993 | /// Millicode function entry point. |
2994 | pub const STT_PARISC_MILLICODE: u8 = 13; |
2995 | |
2996 | pub const STT_HP_OPAQUE: u8 = STT_LOOS + 0x1; |
2997 | pub const STT_HP_STUB: u8 = STT_LOOS + 0x2; |
2998 | |
2999 | // PA-RISC values for `Rel*::r_type`. |
3000 | |
3001 | /// No reloc. |
3002 | pub const R_PARISC_NONE: u32 = 0; |
3003 | /// Direct 32-bit reference. |
3004 | pub const R_PARISC_DIR32: u32 = 1; |
3005 | /// Left 21 bits of eff. address. |
3006 | pub const R_PARISC_DIR21L: u32 = 2; |
3007 | /// Right 17 bits of eff. address. |
3008 | pub const R_PARISC_DIR17R: u32 = 3; |
3009 | /// 17 bits of eff. address. |
3010 | pub const R_PARISC_DIR17F: u32 = 4; |
3011 | /// Right 14 bits of eff. address. |
3012 | pub const R_PARISC_DIR14R: u32 = 6; |
3013 | /// 32-bit rel. address. |
3014 | pub const R_PARISC_PCREL32: u32 = 9; |
3015 | /// Left 21 bits of rel. address. |
3016 | pub const R_PARISC_PCREL21L: u32 = 10; |
3017 | /// Right 17 bits of rel. address. |
3018 | pub const R_PARISC_PCREL17R: u32 = 11; |
3019 | /// 17 bits of rel. address. |
3020 | pub const R_PARISC_PCREL17F: u32 = 12; |
3021 | /// Right 14 bits of rel. address. |
3022 | pub const R_PARISC_PCREL14R: u32 = 14; |
3023 | /// Left 21 bits of rel. address. |
3024 | pub const R_PARISC_DPREL21L: u32 = 18; |
3025 | /// Right 14 bits of rel. address. |
3026 | pub const R_PARISC_DPREL14R: u32 = 22; |
3027 | /// GP-relative, left 21 bits. |
3028 | pub const R_PARISC_GPREL21L: u32 = 26; |
3029 | /// GP-relative, right 14 bits. |
3030 | pub const R_PARISC_GPREL14R: u32 = 30; |
3031 | /// LT-relative, left 21 bits. |
3032 | pub const R_PARISC_LTOFF21L: u32 = 34; |
3033 | /// LT-relative, right 14 bits. |
3034 | pub const R_PARISC_LTOFF14R: u32 = 38; |
3035 | /// 32 bits section rel. address. |
3036 | pub const R_PARISC_SECREL32: u32 = 41; |
3037 | /// No relocation, set segment base. |
3038 | pub const R_PARISC_SEGBASE: u32 = 48; |
3039 | /// 32 bits segment rel. address. |
3040 | pub const R_PARISC_SEGREL32: u32 = 49; |
3041 | /// PLT rel. address, left 21 bits. |
3042 | pub const R_PARISC_PLTOFF21L: u32 = 50; |
3043 | /// PLT rel. address, right 14 bits. |
3044 | pub const R_PARISC_PLTOFF14R: u32 = 54; |
3045 | /// 32 bits LT-rel. function pointer. |
3046 | pub const R_PARISC_LTOFF_FPTR32: u32 = 57; |
3047 | /// LT-rel. fct ptr, left 21 bits. |
3048 | pub const R_PARISC_LTOFF_FPTR21L: u32 = 58; |
3049 | /// LT-rel. fct ptr, right 14 bits. |
3050 | pub const R_PARISC_LTOFF_FPTR14R: u32 = 62; |
3051 | /// 64 bits function address. |
3052 | pub const R_PARISC_FPTR64: u32 = 64; |
3053 | /// 32 bits function address. |
3054 | pub const R_PARISC_PLABEL32: u32 = 65; |
3055 | /// Left 21 bits of fdesc address. |
3056 | pub const R_PARISC_PLABEL21L: u32 = 66; |
3057 | /// Right 14 bits of fdesc address. |
3058 | pub const R_PARISC_PLABEL14R: u32 = 70; |
3059 | /// 64 bits PC-rel. address. |
3060 | pub const R_PARISC_PCREL64: u32 = 72; |
3061 | /// 22 bits PC-rel. address. |
3062 | pub const R_PARISC_PCREL22F: u32 = 74; |
3063 | /// PC-rel. address, right 14 bits. |
3064 | pub const R_PARISC_PCREL14WR: u32 = 75; |
3065 | /// PC rel. address, right 14 bits. |
3066 | pub const R_PARISC_PCREL14DR: u32 = 76; |
3067 | /// 16 bits PC-rel. address. |
3068 | pub const R_PARISC_PCREL16F: u32 = 77; |
3069 | /// 16 bits PC-rel. address. |
3070 | pub const R_PARISC_PCREL16WF: u32 = 78; |
3071 | /// 16 bits PC-rel. address. |
3072 | pub const R_PARISC_PCREL16DF: u32 = 79; |
3073 | /// 64 bits of eff. address. |
3074 | pub const R_PARISC_DIR64: u32 = 80; |
3075 | /// 14 bits of eff. address. |
3076 | pub const R_PARISC_DIR14WR: u32 = 83; |
3077 | /// 14 bits of eff. address. |
3078 | pub const R_PARISC_DIR14DR: u32 = 84; |
3079 | /// 16 bits of eff. address. |
3080 | pub const R_PARISC_DIR16F: u32 = 85; |
3081 | /// 16 bits of eff. address. |
3082 | pub const R_PARISC_DIR16WF: u32 = 86; |
3083 | /// 16 bits of eff. address. |
3084 | pub const R_PARISC_DIR16DF: u32 = 87; |
3085 | /// 64 bits of GP-rel. address. |
3086 | pub const R_PARISC_GPREL64: u32 = 88; |
3087 | /// GP-rel. address, right 14 bits. |
3088 | pub const R_PARISC_GPREL14WR: u32 = 91; |
3089 | /// GP-rel. address, right 14 bits. |
3090 | pub const R_PARISC_GPREL14DR: u32 = 92; |
3091 | /// 16 bits GP-rel. address. |
3092 | pub const R_PARISC_GPREL16F: u32 = 93; |
3093 | /// 16 bits GP-rel. address. |
3094 | pub const R_PARISC_GPREL16WF: u32 = 94; |
3095 | /// 16 bits GP-rel. address. |
3096 | pub const R_PARISC_GPREL16DF: u32 = 95; |
3097 | /// 64 bits LT-rel. address. |
3098 | pub const R_PARISC_LTOFF64: u32 = 96; |
3099 | /// LT-rel. address, right 14 bits. |
3100 | pub const R_PARISC_LTOFF14WR: u32 = 99; |
3101 | /// LT-rel. address, right 14 bits. |
3102 | pub const R_PARISC_LTOFF14DR: u32 = 100; |
3103 | /// 16 bits LT-rel. address. |
3104 | pub const R_PARISC_LTOFF16F: u32 = 101; |
3105 | /// 16 bits LT-rel. address. |
3106 | pub const R_PARISC_LTOFF16WF: u32 = 102; |
3107 | /// 16 bits LT-rel. address. |
3108 | pub const R_PARISC_LTOFF16DF: u32 = 103; |
3109 | /// 64 bits section rel. address. |
3110 | pub const R_PARISC_SECREL64: u32 = 104; |
3111 | /// 64 bits segment rel. address. |
3112 | pub const R_PARISC_SEGREL64: u32 = 112; |
3113 | /// PLT-rel. address, right 14 bits. |
3114 | pub const R_PARISC_PLTOFF14WR: u32 = 115; |
3115 | /// PLT-rel. address, right 14 bits. |
3116 | pub const R_PARISC_PLTOFF14DR: u32 = 116; |
3117 | /// 16 bits LT-rel. address. |
3118 | pub const R_PARISC_PLTOFF16F: u32 = 117; |
3119 | /// 16 bits PLT-rel. address. |
3120 | pub const R_PARISC_PLTOFF16WF: u32 = 118; |
3121 | /// 16 bits PLT-rel. address. |
3122 | pub const R_PARISC_PLTOFF16DF: u32 = 119; |
3123 | /// 64 bits LT-rel. function ptr. |
3124 | pub const R_PARISC_LTOFF_FPTR64: u32 = 120; |
3125 | /// LT-rel. fct. ptr., right 14 bits. |
3126 | pub const R_PARISC_LTOFF_FPTR14WR: u32 = 123; |
3127 | /// LT-rel. fct. ptr., right 14 bits. |
3128 | pub const R_PARISC_LTOFF_FPTR14DR: u32 = 124; |
3129 | /// 16 bits LT-rel. function ptr. |
3130 | pub const R_PARISC_LTOFF_FPTR16F: u32 = 125; |
3131 | /// 16 bits LT-rel. function ptr. |
3132 | pub const R_PARISC_LTOFF_FPTR16WF: u32 = 126; |
3133 | /// 16 bits LT-rel. function ptr. |
3134 | pub const R_PARISC_LTOFF_FPTR16DF: u32 = 127; |
3135 | pub const R_PARISC_LORESERVE: u32 = 128; |
3136 | /// Copy relocation. |
3137 | pub const R_PARISC_COPY: u32 = 128; |
3138 | /// Dynamic reloc, imported PLT |
3139 | pub const R_PARISC_IPLT: u32 = 129; |
3140 | /// Dynamic reloc, exported PLT |
3141 | pub const R_PARISC_EPLT: u32 = 130; |
3142 | /// 32 bits TP-rel. address. |
3143 | pub const R_PARISC_TPREL32: u32 = 153; |
3144 | /// TP-rel. address, left 21 bits. |
3145 | pub const R_PARISC_TPREL21L: u32 = 154; |
3146 | /// TP-rel. address, right 14 bits. |
3147 | pub const R_PARISC_TPREL14R: u32 = 158; |
3148 | /// LT-TP-rel. address, left 21 bits. |
3149 | pub const R_PARISC_LTOFF_TP21L: u32 = 162; |
3150 | /// LT-TP-rel. address, right 14 bits. |
3151 | pub const R_PARISC_LTOFF_TP14R: u32 = 166; |
3152 | /// 14 bits LT-TP-rel. address. |
3153 | pub const R_PARISC_LTOFF_TP14F: u32 = 167; |
3154 | /// 64 bits TP-rel. address. |
3155 | pub const R_PARISC_TPREL64: u32 = 216; |
3156 | /// TP-rel. address, right 14 bits. |
3157 | pub const R_PARISC_TPREL14WR: u32 = 219; |
3158 | /// TP-rel. address, right 14 bits. |
3159 | pub const R_PARISC_TPREL14DR: u32 = 220; |
3160 | /// 16 bits TP-rel. address. |
3161 | pub const R_PARISC_TPREL16F: u32 = 221; |
3162 | /// 16 bits TP-rel. address. |
3163 | pub const R_PARISC_TPREL16WF: u32 = 222; |
3164 | /// 16 bits TP-rel. address. |
3165 | pub const R_PARISC_TPREL16DF: u32 = 223; |
3166 | /// 64 bits LT-TP-rel. address. |
3167 | pub const R_PARISC_LTOFF_TP64: u32 = 224; |
3168 | /// LT-TP-rel. address, right 14 bits. |
3169 | pub const R_PARISC_LTOFF_TP14WR: u32 = 227; |
3170 | /// LT-TP-rel. address, right 14 bits. |
3171 | pub const R_PARISC_LTOFF_TP14DR: u32 = 228; |
3172 | /// 16 bits LT-TP-rel. address. |
3173 | pub const R_PARISC_LTOFF_TP16F: u32 = 229; |
3174 | /// 16 bits LT-TP-rel. address. |
3175 | pub const R_PARISC_LTOFF_TP16WF: u32 = 230; |
3176 | /// 16 bits LT-TP-rel. address. |
3177 | pub const R_PARISC_LTOFF_TP16DF: u32 = 231; |
3178 | pub const R_PARISC_GNU_VTENTRY: u32 = 232; |
3179 | pub const R_PARISC_GNU_VTINHERIT: u32 = 233; |
3180 | /// GD 21-bit left. |
3181 | pub const R_PARISC_TLS_GD21L: u32 = 234; |
3182 | /// GD 14-bit right. |
3183 | pub const R_PARISC_TLS_GD14R: u32 = 235; |
3184 | /// GD call to __t_g_a. |
3185 | pub const R_PARISC_TLS_GDCALL: u32 = 236; |
3186 | /// LD module 21-bit left. |
3187 | pub const R_PARISC_TLS_LDM21L: u32 = 237; |
3188 | /// LD module 14-bit right. |
3189 | pub const R_PARISC_TLS_LDM14R: u32 = 238; |
3190 | /// LD module call to __t_g_a. |
3191 | pub const R_PARISC_TLS_LDMCALL: u32 = 239; |
3192 | /// LD offset 21-bit left. |
3193 | pub const R_PARISC_TLS_LDO21L: u32 = 240; |
3194 | /// LD offset 14-bit right. |
3195 | pub const R_PARISC_TLS_LDO14R: u32 = 241; |
3196 | /// DTP module 32-bit. |
3197 | pub const R_PARISC_TLS_DTPMOD32: u32 = 242; |
3198 | /// DTP module 64-bit. |
3199 | pub const R_PARISC_TLS_DTPMOD64: u32 = 243; |
3200 | /// DTP offset 32-bit. |
3201 | pub const R_PARISC_TLS_DTPOFF32: u32 = 244; |
3202 | /// DTP offset 32-bit. |
3203 | pub const R_PARISC_TLS_DTPOFF64: u32 = 245; |
3204 | pub const R_PARISC_TLS_LE21L: u32 = R_PARISC_TPREL21L; |
3205 | pub const R_PARISC_TLS_LE14R: u32 = R_PARISC_TPREL14R; |
3206 | pub const R_PARISC_TLS_IE21L: u32 = R_PARISC_LTOFF_TP21L; |
3207 | pub const R_PARISC_TLS_IE14R: u32 = R_PARISC_LTOFF_TP14R; |
3208 | pub const R_PARISC_TLS_TPREL32: u32 = R_PARISC_TPREL32; |
3209 | pub const R_PARISC_TLS_TPREL64: u32 = R_PARISC_TPREL64; |
3210 | pub const R_PARISC_HIRESERVE: u32 = 255; |
3211 | |
3212 | // PA-RISC values for `ProgramHeader*::p_type`. |
3213 | |
3214 | pub const PT_HP_TLS: u32 = PT_LOOS + 0x0; |
3215 | pub const PT_HP_CORE_NONE: u32 = PT_LOOS + 0x1; |
3216 | pub const PT_HP_CORE_VERSION: u32 = PT_LOOS + 0x2; |
3217 | pub const PT_HP_CORE_KERNEL: u32 = PT_LOOS + 0x3; |
3218 | pub const PT_HP_CORE_COMM: u32 = PT_LOOS + 0x4; |
3219 | pub const PT_HP_CORE_PROC: u32 = PT_LOOS + 0x5; |
3220 | pub const PT_HP_CORE_LOADABLE: u32 = PT_LOOS + 0x6; |
3221 | pub const PT_HP_CORE_STACK: u32 = PT_LOOS + 0x7; |
3222 | pub const PT_HP_CORE_SHM: u32 = PT_LOOS + 0x8; |
3223 | pub const PT_HP_CORE_MMF: u32 = PT_LOOS + 0x9; |
3224 | pub const PT_HP_PARALLEL: u32 = PT_LOOS + 0x10; |
3225 | pub const PT_HP_FASTBIND: u32 = PT_LOOS + 0x11; |
3226 | pub const PT_HP_OPT_ANNOT: u32 = PT_LOOS + 0x12; |
3227 | pub const PT_HP_HSL_ANNOT: u32 = PT_LOOS + 0x13; |
3228 | pub const PT_HP_STACK: u32 = PT_LOOS + 0x14; |
3229 | |
3230 | pub const PT_PARISC_ARCHEXT: u32 = 0x7000_0000; |
3231 | pub const PT_PARISC_UNWIND: u32 = 0x7000_0001; |
3232 | |
3233 | // PA-RISC values for `ProgramHeader*::p_flags`. |
3234 | |
3235 | pub const PF_PARISC_SBP: u32 = 0x0800_0000; |
3236 | |
3237 | pub const PF_HP_PAGE_SIZE: u32 = 0x0010_0000; |
3238 | pub const PF_HP_FAR_SHARED: u32 = 0x0020_0000; |
3239 | pub const PF_HP_NEAR_SHARED: u32 = 0x0040_0000; |
3240 | pub const PF_HP_CODE: u32 = 0x0100_0000; |
3241 | pub const PF_HP_MODIFY: u32 = 0x0200_0000; |
3242 | pub const PF_HP_LAZYSWAP: u32 = 0x0400_0000; |
3243 | pub const PF_HP_SBP: u32 = 0x0800_0000; |
3244 | |
3245 | // Alpha specific definitions. |
3246 | |
3247 | // Alpha values for `FileHeader64::e_flags`. |
3248 | |
3249 | /// All addresses must be < 2GB. |
3250 | pub const EF_ALPHA_32BIT: u32 = 1; |
3251 | /// Relocations for relaxing exist. |
3252 | pub const EF_ALPHA_CANRELAX: u32 = 2; |
3253 | |
3254 | // Alpha values for `SectionHeader64::sh_type`. |
3255 | |
3256 | // These two are primerily concerned with ECOFF debugging info. |
3257 | pub const SHT_ALPHA_DEBUG: u32 = 0x7000_0001; |
3258 | pub const SHT_ALPHA_REGINFO: u32 = 0x7000_0002; |
3259 | |
3260 | // Alpha values for `SectionHeader64::sh_flags`. |
3261 | |
3262 | pub const SHF_ALPHA_GPREL: u32 = 0x1000_0000; |
3263 | |
3264 | // Alpha values for `Sym64::st_other`. |
3265 | /// No PV required. |
3266 | pub const STO_ALPHA_NOPV: u8 = 0x80; |
3267 | /// PV only used for initial ldgp. |
3268 | pub const STO_ALPHA_STD_GPLOAD: u8 = 0x88; |
3269 | |
3270 | // Alpha values for `Rel64::r_type`. |
3271 | |
3272 | /// No reloc |
3273 | pub const R_ALPHA_NONE: u32 = 0; |
3274 | /// Direct 32 bit |
3275 | pub const R_ALPHA_REFLONG: u32 = 1; |
3276 | /// Direct 64 bit |
3277 | pub const R_ALPHA_REFQUAD: u32 = 2; |
3278 | /// GP relative 32 bit |
3279 | pub const R_ALPHA_GPREL32: u32 = 3; |
3280 | /// GP relative 16 bit w/optimization |
3281 | pub const R_ALPHA_LITERAL: u32 = 4; |
3282 | /// Optimization hint for LITERAL |
3283 | pub const R_ALPHA_LITUSE: u32 = 5; |
3284 | /// Add displacement to GP |
3285 | pub const R_ALPHA_GPDISP: u32 = 6; |
3286 | /// PC+4 relative 23 bit shifted |
3287 | pub const R_ALPHA_BRADDR: u32 = 7; |
3288 | /// PC+4 relative 16 bit shifted |
3289 | pub const R_ALPHA_HINT: u32 = 8; |
3290 | /// PC relative 16 bit |
3291 | pub const R_ALPHA_SREL16: u32 = 9; |
3292 | /// PC relative 32 bit |
3293 | pub const R_ALPHA_SREL32: u32 = 10; |
3294 | /// PC relative 64 bit |
3295 | pub const R_ALPHA_SREL64: u32 = 11; |
3296 | /// GP relative 32 bit, high 16 bits |
3297 | pub const R_ALPHA_GPRELHIGH: u32 = 17; |
3298 | /// GP relative 32 bit, low 16 bits |
3299 | pub const R_ALPHA_GPRELLOW: u32 = 18; |
3300 | /// GP relative 16 bit |
3301 | pub const R_ALPHA_GPREL16: u32 = 19; |
3302 | /// Copy symbol at runtime |
3303 | pub const R_ALPHA_COPY: u32 = 24; |
3304 | /// Create GOT entry |
3305 | pub const R_ALPHA_GLOB_DAT: u32 = 25; |
3306 | /// Create PLT entry |
3307 | pub const R_ALPHA_JMP_SLOT: u32 = 26; |
3308 | /// Adjust by program base |
3309 | pub const R_ALPHA_RELATIVE: u32 = 27; |
3310 | pub const R_ALPHA_TLS_GD_HI: u32 = 28; |
3311 | pub const R_ALPHA_TLSGD: u32 = 29; |
3312 | pub const R_ALPHA_TLS_LDM: u32 = 30; |
3313 | pub const R_ALPHA_DTPMOD64: u32 = 31; |
3314 | pub const R_ALPHA_GOTDTPREL: u32 = 32; |
3315 | pub const R_ALPHA_DTPREL64: u32 = 33; |
3316 | pub const R_ALPHA_DTPRELHI: u32 = 34; |
3317 | pub const R_ALPHA_DTPRELLO: u32 = 35; |
3318 | pub const R_ALPHA_DTPREL16: u32 = 36; |
3319 | pub const R_ALPHA_GOTTPREL: u32 = 37; |
3320 | pub const R_ALPHA_TPREL64: u32 = 38; |
3321 | pub const R_ALPHA_TPRELHI: u32 = 39; |
3322 | pub const R_ALPHA_TPRELLO: u32 = 40; |
3323 | pub const R_ALPHA_TPREL16: u32 = 41; |
3324 | |
3325 | // Magic values of the `R_ALPHA_LITUSE` relocation addend. |
3326 | pub const LITUSE_ALPHA_ADDR: u32 = 0; |
3327 | pub const LITUSE_ALPHA_BASE: u32 = 1; |
3328 | pub const LITUSE_ALPHA_BYTOFF: u32 = 2; |
3329 | pub const LITUSE_ALPHA_JSR: u32 = 3; |
3330 | pub const LITUSE_ALPHA_TLS_GD: u32 = 4; |
3331 | pub const LITUSE_ALPHA_TLS_LDM: u32 = 5; |
3332 | |
3333 | // Alpha values for `Dyn64::d_tag`. |
3334 | pub const DT_ALPHA_PLTRO: u32 = DT_LOPROC + 0; |
3335 | |
3336 | // PowerPC specific declarations. |
3337 | |
3338 | // PowerPC values for `FileHeader*::e_flags`. |
3339 | /// PowerPC embedded flag |
3340 | pub const EF_PPC_EMB: u32 = 0x8000_0000; |
3341 | |
3342 | // Cygnus local bits below . |
3343 | /// PowerPC -mrelocatable flag |
3344 | pub const EF_PPC_RELOCATABLE: u32 = 0x0001_0000; |
3345 | /// PowerPC -mrelocatable-lib flag |
3346 | pub const EF_PPC_RELOCATABLE_LIB: u32 = 0x0000_8000; |
3347 | |
3348 | // PowerPC values for `Rel*::r_type` defined by the ABIs. |
3349 | pub const R_PPC_NONE: u32 = 0; |
3350 | /// 32bit absolute address |
3351 | pub const R_PPC_ADDR32: u32 = 1; |
3352 | /// 26bit address, 2 bits ignored. |
3353 | pub const R_PPC_ADDR24: u32 = 2; |
3354 | /// 16bit absolute address |
3355 | pub const R_PPC_ADDR16: u32 = 3; |
3356 | /// lower 16bit of absolute address |
3357 | pub const R_PPC_ADDR16_LO: u32 = 4; |
3358 | /// high 16bit of absolute address |
3359 | pub const R_PPC_ADDR16_HI: u32 = 5; |
3360 | /// adjusted high 16bit |
3361 | pub const R_PPC_ADDR16_HA: u32 = 6; |
3362 | /// 16bit address, 2 bits ignored |
3363 | pub const R_PPC_ADDR14: u32 = 7; |
3364 | pub const R_PPC_ADDR14_BRTAKEN: u32 = 8; |
3365 | pub const R_PPC_ADDR14_BRNTAKEN: u32 = 9; |
3366 | /// PC relative 26 bit |
3367 | pub const R_PPC_REL24: u32 = 10; |
3368 | /// PC relative 16 bit |
3369 | pub const R_PPC_REL14: u32 = 11; |
3370 | pub const R_PPC_REL14_BRTAKEN: u32 = 12; |
3371 | pub const R_PPC_REL14_BRNTAKEN: u32 = 13; |
3372 | pub const R_PPC_GOT16: u32 = 14; |
3373 | pub const R_PPC_GOT16_LO: u32 = 15; |
3374 | pub const R_PPC_GOT16_HI: u32 = 16; |
3375 | pub const R_PPC_GOT16_HA: u32 = 17; |
3376 | pub const R_PPC_PLTREL24: u32 = 18; |
3377 | pub const R_PPC_COPY: u32 = 19; |
3378 | pub const R_PPC_GLOB_DAT: u32 = 20; |
3379 | pub const R_PPC_JMP_SLOT: u32 = 21; |
3380 | pub const R_PPC_RELATIVE: u32 = 22; |
3381 | pub const R_PPC_LOCAL24PC: u32 = 23; |
3382 | pub const R_PPC_UADDR32: u32 = 24; |
3383 | pub const R_PPC_UADDR16: u32 = 25; |
3384 | pub const R_PPC_REL32: u32 = 26; |
3385 | pub const R_PPC_PLT32: u32 = 27; |
3386 | pub const R_PPC_PLTREL32: u32 = 28; |
3387 | pub const R_PPC_PLT16_LO: u32 = 29; |
3388 | pub const R_PPC_PLT16_HI: u32 = 30; |
3389 | pub const R_PPC_PLT16_HA: u32 = 31; |
3390 | pub const R_PPC_SDAREL16: u32 = 32; |
3391 | pub const R_PPC_SECTOFF: u32 = 33; |
3392 | pub const R_PPC_SECTOFF_LO: u32 = 34; |
3393 | pub const R_PPC_SECTOFF_HI: u32 = 35; |
3394 | pub const R_PPC_SECTOFF_HA: u32 = 36; |
3395 | |
3396 | // PowerPC values for `Rel*::r_type` defined for the TLS access ABI. |
3397 | /// none (sym+add)@tls |
3398 | pub const R_PPC_TLS: u32 = 67; |
3399 | /// word32 (sym+add)@dtpmod |
3400 | pub const R_PPC_DTPMOD32: u32 = 68; |
3401 | /// half16* (sym+add)@tprel |
3402 | pub const R_PPC_TPREL16: u32 = 69; |
3403 | /// half16 (sym+add)@tprel@l |
3404 | pub const R_PPC_TPREL16_LO: u32 = 70; |
3405 | /// half16 (sym+add)@tprel@h |
3406 | pub const R_PPC_TPREL16_HI: u32 = 71; |
3407 | /// half16 (sym+add)@tprel@ha |
3408 | pub const R_PPC_TPREL16_HA: u32 = 72; |
3409 | /// word32 (sym+add)@tprel |
3410 | pub const R_PPC_TPREL32: u32 = 73; |
3411 | /// half16*(sym+add)@dtprel |
3412 | pub const R_PPC_DTPREL16: u32 = 74; |
3413 | /// half16 (sym+add)@dtprel@l |
3414 | pub const R_PPC_DTPREL16_LO: u32 = 75; |
3415 | /// half16 (sym+add)@dtprel@h |
3416 | pub const R_PPC_DTPREL16_HI: u32 = 76; |
3417 | /// half16 (sym+add)@dtprel@ha |
3418 | pub const R_PPC_DTPREL16_HA: u32 = 77; |
3419 | /// word32 (sym+add)@dtprel |
3420 | pub const R_PPC_DTPREL32: u32 = 78; |
3421 | /// half16* (sym+add)@got@tlsgd |
3422 | pub const R_PPC_GOT_TLSGD16: u32 = 79; |
3423 | /// half16 (sym+add)@got@tlsgd@l |
3424 | pub const R_PPC_GOT_TLSGD16_LO: u32 = 80; |
3425 | /// half16 (sym+add)@got@tlsgd@h |
3426 | pub const R_PPC_GOT_TLSGD16_HI: u32 = 81; |
3427 | /// half16 (sym+add)@got@tlsgd@ha |
3428 | pub const R_PPC_GOT_TLSGD16_HA: u32 = 82; |
3429 | /// half16* (sym+add)@got@tlsld |
3430 | pub const R_PPC_GOT_TLSLD16: u32 = 83; |
3431 | /// half16 (sym+add)@got@tlsld@l |
3432 | pub const R_PPC_GOT_TLSLD16_LO: u32 = 84; |
3433 | /// half16 (sym+add)@got@tlsld@h |
3434 | pub const R_PPC_GOT_TLSLD16_HI: u32 = 85; |
3435 | /// half16 (sym+add)@got@tlsld@ha |
3436 | pub const R_PPC_GOT_TLSLD16_HA: u32 = 86; |
3437 | /// half16* (sym+add)@got@tprel |
3438 | pub const R_PPC_GOT_TPREL16: u32 = 87; |
3439 | /// half16 (sym+add)@got@tprel@l |
3440 | pub const R_PPC_GOT_TPREL16_LO: u32 = 88; |
3441 | /// half16 (sym+add)@got@tprel@h |
3442 | pub const R_PPC_GOT_TPREL16_HI: u32 = 89; |
3443 | /// half16 (sym+add)@got@tprel@ha |
3444 | pub const R_PPC_GOT_TPREL16_HA: u32 = 90; |
3445 | /// half16* (sym+add)@got@dtprel |
3446 | pub const R_PPC_GOT_DTPREL16: u32 = 91; |
3447 | /// half16* (sym+add)@got@dtprel@l |
3448 | pub const R_PPC_GOT_DTPREL16_LO: u32 = 92; |
3449 | /// half16* (sym+add)@got@dtprel@h |
3450 | pub const R_PPC_GOT_DTPREL16_HI: u32 = 93; |
3451 | /// half16* (sym+add)@got@dtprel@ha |
3452 | pub const R_PPC_GOT_DTPREL16_HA: u32 = 94; |
3453 | /// none (sym+add)@tlsgd |
3454 | pub const R_PPC_TLSGD: u32 = 95; |
3455 | /// none (sym+add)@tlsld |
3456 | pub const R_PPC_TLSLD: u32 = 96; |
3457 | |
3458 | // PowerPC values for `Rel*::r_type` from the Embedded ELF ABI. |
3459 | pub const R_PPC_EMB_NADDR32: u32 = 101; |
3460 | pub const R_PPC_EMB_NADDR16: u32 = 102; |
3461 | pub const R_PPC_EMB_NADDR16_LO: u32 = 103; |
3462 | pub const R_PPC_EMB_NADDR16_HI: u32 = 104; |
3463 | pub const R_PPC_EMB_NADDR16_HA: u32 = 105; |
3464 | pub const R_PPC_EMB_SDAI16: u32 = 106; |
3465 | pub const R_PPC_EMB_SDA2I16: u32 = 107; |
3466 | pub const R_PPC_EMB_SDA2REL: u32 = 108; |
3467 | /// 16 bit offset in SDA |
3468 | pub const R_PPC_EMB_SDA21: u32 = 109; |
3469 | pub const R_PPC_EMB_MRKREF: u32 = 110; |
3470 | pub const R_PPC_EMB_RELSEC16: u32 = 111; |
3471 | pub const R_PPC_EMB_RELST_LO: u32 = 112; |
3472 | pub const R_PPC_EMB_RELST_HI: u32 = 113; |
3473 | pub const R_PPC_EMB_RELST_HA: u32 = 114; |
3474 | pub const R_PPC_EMB_BIT_FLD: u32 = 115; |
3475 | /// 16 bit relative offset in SDA |
3476 | pub const R_PPC_EMB_RELSDA: u32 = 116; |
3477 | |
3478 | // Diab tool values for `Rel*::r_type`. |
3479 | /// like EMB_SDA21, but lower 16 bit |
3480 | pub const R_PPC_DIAB_SDA21_LO: u32 = 180; |
3481 | /// like EMB_SDA21, but high 16 bit |
3482 | pub const R_PPC_DIAB_SDA21_HI: u32 = 181; |
3483 | /// like EMB_SDA21, adjusted high 16 |
3484 | pub const R_PPC_DIAB_SDA21_HA: u32 = 182; |
3485 | /// like EMB_RELSDA, but lower 16 bit |
3486 | pub const R_PPC_DIAB_RELSDA_LO: u32 = 183; |
3487 | /// like EMB_RELSDA, but high 16 bit |
3488 | pub const R_PPC_DIAB_RELSDA_HI: u32 = 184; |
3489 | /// like EMB_RELSDA, adjusted high 16 |
3490 | pub const R_PPC_DIAB_RELSDA_HA: u32 = 185; |
3491 | |
3492 | /// GNU extension to support local ifunc. |
3493 | pub const R_PPC_IRELATIVE: u32 = 248; |
3494 | |
3495 | // GNU relocs used in PIC code sequences. |
3496 | /// half16 (sym+add-.) |
3497 | pub const R_PPC_REL16: u32 = 249; |
3498 | /// half16 (sym+add-.)@l |
3499 | pub const R_PPC_REL16_LO: u32 = 250; |
3500 | /// half16 (sym+add-.)@h |
3501 | pub const R_PPC_REL16_HI: u32 = 251; |
3502 | /// half16 (sym+add-.)@ha |
3503 | pub const R_PPC_REL16_HA: u32 = 252; |
3504 | |
3505 | /// This is a phony reloc to handle any old fashioned TOC16 references that may |
3506 | /// still be in object files. |
3507 | pub const R_PPC_TOC16: u32 = 255; |
3508 | |
3509 | // PowerPC specific values for `Dyn*::d_tag`. |
3510 | pub const DT_PPC_GOT: u32 = DT_LOPROC + 0; |
3511 | pub const DT_PPC_OPT: u32 = DT_LOPROC + 1; |
3512 | |
3513 | // PowerPC specific values for the `DT_PPC_OPT` entry. |
3514 | pub const PPC_OPT_TLS: u32 = 1; |
3515 | |
3516 | // PowerPC64 values for `Rel*::r_type` defined by the ABIs. |
3517 | pub const R_PPC64_NONE: u32 = R_PPC_NONE; |
3518 | /// 32bit absolute address |
3519 | pub const R_PPC64_ADDR32: u32 = R_PPC_ADDR32; |
3520 | /// 26bit address, word aligned |
3521 | pub const R_PPC64_ADDR24: u32 = R_PPC_ADDR24; |
3522 | /// 16bit absolute address |
3523 | pub const R_PPC64_ADDR16: u32 = R_PPC_ADDR16; |
3524 | /// lower 16bits of address |
3525 | pub const R_PPC64_ADDR16_LO: u32 = R_PPC_ADDR16_LO; |
3526 | /// high 16bits of address. |
3527 | pub const R_PPC64_ADDR16_HI: u32 = R_PPC_ADDR16_HI; |
3528 | /// adjusted high 16bits. |
3529 | pub const R_PPC64_ADDR16_HA: u32 = R_PPC_ADDR16_HA; |
3530 | /// 16bit address, word aligned |
3531 | pub const R_PPC64_ADDR14: u32 = R_PPC_ADDR14; |
3532 | pub const R_PPC64_ADDR14_BRTAKEN: u32 = R_PPC_ADDR14_BRTAKEN; |
3533 | pub const R_PPC64_ADDR14_BRNTAKEN: u32 = R_PPC_ADDR14_BRNTAKEN; |
3534 | /// PC-rel. 26 bit, word aligned |
3535 | pub const R_PPC64_REL24: u32 = R_PPC_REL24; |
3536 | /// PC relative 16 bit |
3537 | pub const R_PPC64_REL14: u32 = R_PPC_REL14; |
3538 | pub const R_PPC64_REL14_BRTAKEN: u32 = R_PPC_REL14_BRTAKEN; |
3539 | pub const R_PPC64_REL14_BRNTAKEN: u32 = R_PPC_REL14_BRNTAKEN; |
3540 | pub const R_PPC64_GOT16: u32 = R_PPC_GOT16; |
3541 | pub const R_PPC64_GOT16_LO: u32 = R_PPC_GOT16_LO; |
3542 | pub const R_PPC64_GOT16_HI: u32 = R_PPC_GOT16_HI; |
3543 | pub const R_PPC64_GOT16_HA: u32 = R_PPC_GOT16_HA; |
3544 | |
3545 | pub const R_PPC64_COPY: u32 = R_PPC_COPY; |
3546 | pub const R_PPC64_GLOB_DAT: u32 = R_PPC_GLOB_DAT; |
3547 | pub const R_PPC64_JMP_SLOT: u32 = R_PPC_JMP_SLOT; |
3548 | pub const R_PPC64_RELATIVE: u32 = R_PPC_RELATIVE; |
3549 | |
3550 | pub const R_PPC64_UADDR32: u32 = R_PPC_UADDR32; |
3551 | pub const R_PPC64_UADDR16: u32 = R_PPC_UADDR16; |
3552 | pub const R_PPC64_REL32: u32 = R_PPC_REL32; |
3553 | pub const R_PPC64_PLT32: u32 = R_PPC_PLT32; |
3554 | pub const R_PPC64_PLTREL32: u32 = R_PPC_PLTREL32; |
3555 | pub const R_PPC64_PLT16_LO: u32 = R_PPC_PLT16_LO; |
3556 | pub const R_PPC64_PLT16_HI: u32 = R_PPC_PLT16_HI; |
3557 | pub const R_PPC64_PLT16_HA: u32 = R_PPC_PLT16_HA; |
3558 | |
3559 | pub const R_PPC64_SECTOFF: u32 = R_PPC_SECTOFF; |
3560 | pub const R_PPC64_SECTOFF_LO: u32 = R_PPC_SECTOFF_LO; |
3561 | pub const R_PPC64_SECTOFF_HI: u32 = R_PPC_SECTOFF_HI; |
3562 | pub const R_PPC64_SECTOFF_HA: u32 = R_PPC_SECTOFF_HA; |
3563 | /// word30 (S + A - P) >> 2 |
3564 | pub const R_PPC64_ADDR30: u32 = 37; |
3565 | /// doubleword64 S + A |
3566 | pub const R_PPC64_ADDR64: u32 = 38; |
3567 | /// half16 #higher(S + A) |
3568 | pub const R_PPC64_ADDR16_HIGHER: u32 = 39; |
3569 | /// half16 #highera(S + A) |
3570 | pub const R_PPC64_ADDR16_HIGHERA: u32 = 40; |
3571 | /// half16 #highest(S + A) |
3572 | pub const R_PPC64_ADDR16_HIGHEST: u32 = 41; |
3573 | /// half16 #highesta(S + A) |
3574 | pub const R_PPC64_ADDR16_HIGHESTA: u32 = 42; |
3575 | /// doubleword64 S + A |
3576 | pub const R_PPC64_UADDR64: u32 = 43; |
3577 | /// doubleword64 S + A - P |
3578 | pub const R_PPC64_REL64: u32 = 44; |
3579 | /// doubleword64 L + A |
3580 | pub const R_PPC64_PLT64: u32 = 45; |
3581 | /// doubleword64 L + A - P |
3582 | pub const R_PPC64_PLTREL64: u32 = 46; |
3583 | /// half16* S + A - .TOC |
3584 | pub const R_PPC64_TOC16: u32 = 47; |
3585 | /// half16 #lo(S + A - .TOC.) |
3586 | pub const R_PPC64_TOC16_LO: u32 = 48; |
3587 | /// half16 #hi(S + A - .TOC.) |
3588 | pub const R_PPC64_TOC16_HI: u32 = 49; |
3589 | /// half16 #ha(S + A - .TOC.) |
3590 | pub const R_PPC64_TOC16_HA: u32 = 50; |
3591 | /// doubleword64 .TOC |
3592 | pub const R_PPC64_TOC: u32 = 51; |
3593 | /// half16* M + A |
3594 | pub const R_PPC64_PLTGOT16: u32 = 52; |
3595 | /// half16 #lo(M + A) |
3596 | pub const R_PPC64_PLTGOT16_LO: u32 = 53; |
3597 | /// half16 #hi(M + A) |
3598 | pub const R_PPC64_PLTGOT16_HI: u32 = 54; |
3599 | /// half16 #ha(M + A) |
3600 | pub const R_PPC64_PLTGOT16_HA: u32 = 55; |
3601 | |
3602 | /// half16ds* (S + A) >> 2 |
3603 | pub const R_PPC64_ADDR16_DS: u32 = 56; |
3604 | /// half16ds #lo(S + A) >> 2 |
3605 | pub const R_PPC64_ADDR16_LO_DS: u32 = 57; |
3606 | /// half16ds* (G + A) >> 2 |
3607 | pub const R_PPC64_GOT16_DS: u32 = 58; |
3608 | /// half16ds #lo(G + A) >> 2 |
3609 | pub const R_PPC64_GOT16_LO_DS: u32 = 59; |
3610 | /// half16ds #lo(L + A) >> 2 |
3611 | pub const R_PPC64_PLT16_LO_DS: u32 = 60; |
3612 | /// half16ds* (R + A) >> 2 |
3613 | pub const R_PPC64_SECTOFF_DS: u32 = 61; |
3614 | /// half16ds #lo(R + A) >> 2 |
3615 | pub const R_PPC64_SECTOFF_LO_DS: u32 = 62; |
3616 | /// half16ds* (S + A - .TOC.) >> 2 |
3617 | pub const R_PPC64_TOC16_DS: u32 = 63; |
3618 | /// half16ds #lo(S + A - .TOC.) >> 2 |
3619 | pub const R_PPC64_TOC16_LO_DS: u32 = 64; |
3620 | /// half16ds* (M + A) >> 2 |
3621 | pub const R_PPC64_PLTGOT16_DS: u32 = 65; |
3622 | /// half16ds #lo(M + A) >> 2 |
3623 | pub const R_PPC64_PLTGOT16_LO_DS: u32 = 66; |
3624 | |
3625 | // PowerPC64 values for `Rel*::r_type` defined for the TLS access ABI. |
3626 | /// none (sym+add)@tls |
3627 | pub const R_PPC64_TLS: u32 = 67; |
3628 | /// doubleword64 (sym+add)@dtpmod |
3629 | pub const R_PPC64_DTPMOD64: u32 = 68; |
3630 | /// half16* (sym+add)@tprel |
3631 | pub const R_PPC64_TPREL16: u32 = 69; |
3632 | /// half16 (sym+add)@tprel@l |
3633 | pub const R_PPC64_TPREL16_LO: u32 = 70; |
3634 | /// half16 (sym+add)@tprel@h |
3635 | pub const R_PPC64_TPREL16_HI: u32 = 71; |
3636 | /// half16 (sym+add)@tprel@ha |
3637 | pub const R_PPC64_TPREL16_HA: u32 = 72; |
3638 | /// doubleword64 (sym+add)@tprel |
3639 | pub const R_PPC64_TPREL64: u32 = 73; |
3640 | /// half16* (sym+add)@dtprel |
3641 | pub const R_PPC64_DTPREL16: u32 = 74; |
3642 | /// half16 (sym+add)@dtprel@l |
3643 | pub const R_PPC64_DTPREL16_LO: u32 = 75; |
3644 | /// half16 (sym+add)@dtprel@h |
3645 | pub const R_PPC64_DTPREL16_HI: u32 = 76; |
3646 | /// half16 (sym+add)@dtprel@ha |
3647 | pub const R_PPC64_DTPREL16_HA: u32 = 77; |
3648 | /// doubleword64 (sym+add)@dtprel |
3649 | pub const R_PPC64_DTPREL64: u32 = 78; |
3650 | /// half16* (sym+add)@got@tlsgd |
3651 | pub const R_PPC64_GOT_TLSGD16: u32 = 79; |
3652 | /// half16 (sym+add)@got@tlsgd@l |
3653 | pub const R_PPC64_GOT_TLSGD16_LO: u32 = 80; |
3654 | /// half16 (sym+add)@got@tlsgd@h |
3655 | pub const R_PPC64_GOT_TLSGD16_HI: u32 = 81; |
3656 | /// half16 (sym+add)@got@tlsgd@ha |
3657 | pub const R_PPC64_GOT_TLSGD16_HA: u32 = 82; |
3658 | /// half16* (sym+add)@got@tlsld |
3659 | pub const R_PPC64_GOT_TLSLD16: u32 = 83; |
3660 | /// half16 (sym+add)@got@tlsld@l |
3661 | pub const R_PPC64_GOT_TLSLD16_LO: u32 = 84; |
3662 | /// half16 (sym+add)@got@tlsld@h |
3663 | pub const R_PPC64_GOT_TLSLD16_HI: u32 = 85; |
3664 | /// half16 (sym+add)@got@tlsld@ha |
3665 | pub const R_PPC64_GOT_TLSLD16_HA: u32 = 86; |
3666 | /// half16ds* (sym+add)@got@tprel |
3667 | pub const R_PPC64_GOT_TPREL16_DS: u32 = 87; |
3668 | /// half16ds (sym+add)@got@tprel@l |
3669 | pub const R_PPC64_GOT_TPREL16_LO_DS: u32 = 88; |
3670 | /// half16 (sym+add)@got@tprel@h |
3671 | pub const R_PPC64_GOT_TPREL16_HI: u32 = 89; |
3672 | /// half16 (sym+add)@got@tprel@ha |
3673 | pub const R_PPC64_GOT_TPREL16_HA: u32 = 90; |
3674 | /// half16ds* (sym+add)@got@dtprel |
3675 | pub const R_PPC64_GOT_DTPREL16_DS: u32 = 91; |
3676 | /// half16ds (sym+add)@got@dtprel@l |
3677 | pub const R_PPC64_GOT_DTPREL16_LO_DS: u32 = 92; |
3678 | /// half16 (sym+add)@got@dtprel@h |
3679 | pub const R_PPC64_GOT_DTPREL16_HI: u32 = 93; |
3680 | /// half16 (sym+add)@got@dtprel@ha |
3681 | pub const R_PPC64_GOT_DTPREL16_HA: u32 = 94; |
3682 | /// half16ds* (sym+add)@tprel |
3683 | pub const R_PPC64_TPREL16_DS: u32 = 95; |
3684 | /// half16ds (sym+add)@tprel@l |
3685 | pub const R_PPC64_TPREL16_LO_DS: u32 = 96; |
3686 | /// half16 (sym+add)@tprel@higher |
3687 | pub const R_PPC64_TPREL16_HIGHER: u32 = 97; |
3688 | /// half16 (sym+add)@tprel@highera |
3689 | pub const R_PPC64_TPREL16_HIGHERA: u32 = 98; |
3690 | /// half16 (sym+add)@tprel@highest |
3691 | pub const R_PPC64_TPREL16_HIGHEST: u32 = 99; |
3692 | /// half16 (sym+add)@tprel@highesta |
3693 | pub const R_PPC64_TPREL16_HIGHESTA: u32 = 100; |
3694 | /// half16ds* (sym+add)@dtprel |
3695 | pub const R_PPC64_DTPREL16_DS: u32 = 101; |
3696 | /// half16ds (sym+add)@dtprel@l |
3697 | pub const R_PPC64_DTPREL16_LO_DS: u32 = 102; |
3698 | /// half16 (sym+add)@dtprel@higher |
3699 | pub const R_PPC64_DTPREL16_HIGHER: u32 = 103; |
3700 | /// half16 (sym+add)@dtprel@highera |
3701 | pub const R_PPC64_DTPREL16_HIGHERA: u32 = 104; |
3702 | /// half16 (sym+add)@dtprel@highest |
3703 | pub const R_PPC64_DTPREL16_HIGHEST: u32 = 105; |
3704 | /// half16 (sym+add)@dtprel@highesta |
3705 | pub const R_PPC64_DTPREL16_HIGHESTA: u32 = 106; |
3706 | /// none (sym+add)@tlsgd |
3707 | pub const R_PPC64_TLSGD: u32 = 107; |
3708 | /// none (sym+add)@tlsld |
3709 | pub const R_PPC64_TLSLD: u32 = 108; |
3710 | /// none |
3711 | pub const R_PPC64_TOCSAVE: u32 = 109; |
3712 | |
3713 | // Added when HA and HI relocs were changed to report overflows. |
3714 | pub const R_PPC64_ADDR16_HIGH: u32 = 110; |
3715 | pub const R_PPC64_ADDR16_HIGHA: u32 = 111; |
3716 | pub const R_PPC64_TPREL16_HIGH: u32 = 112; |
3717 | pub const R_PPC64_TPREL16_HIGHA: u32 = 113; |
3718 | pub const R_PPC64_DTPREL16_HIGH: u32 = 114; |
3719 | pub const R_PPC64_DTPREL16_HIGHA: u32 = 115; |
3720 | |
3721 | /// GNU extension to support local ifunc. |
3722 | pub const R_PPC64_JMP_IREL: u32 = 247; |
3723 | /// GNU extension to support local ifunc. |
3724 | pub const R_PPC64_IRELATIVE: u32 = 248; |
3725 | /// half16 (sym+add-.) |
3726 | pub const R_PPC64_REL16: u32 = 249; |
3727 | /// half16 (sym+add-.)@l |
3728 | pub const R_PPC64_REL16_LO: u32 = 250; |
3729 | /// half16 (sym+add-.)@h |
3730 | pub const R_PPC64_REL16_HI: u32 = 251; |
3731 | /// half16 (sym+add-.)@ha |
3732 | pub const R_PPC64_REL16_HA: u32 = 252; |
3733 | |
3734 | // PowerPC64 values for `FileHeader64::e_flags. |
3735 | /// PowerPC64 bits specifying ABI. |
3736 | /// |
3737 | /// 1 for original function descriptor using ABI, |
3738 | /// 2 for revised ABI without function descriptors, |
3739 | /// 0 for unspecified or not using any features affected by the differences. |
3740 | pub const EF_PPC64_ABI: u32 = 3; |
3741 | |
3742 | // PowerPC64 values for `Dyn64::d_tag. |
3743 | pub const DT_PPC64_GLINK: u32 = DT_LOPROC + 0; |
3744 | pub const DT_PPC64_OPD: u32 = DT_LOPROC + 1; |
3745 | pub const DT_PPC64_OPDSZ: u32 = DT_LOPROC + 2; |
3746 | pub const DT_PPC64_OPT: u32 = DT_LOPROC + 3; |
3747 | |
3748 | // PowerPC64 bits for `DT_PPC64_OPT` entry. |
3749 | pub const PPC64_OPT_TLS: u32 = 1; |
3750 | pub const PPC64_OPT_MULTI_TOC: u32 = 2; |
3751 | pub const PPC64_OPT_LOCALENTRY: u32 = 4; |
3752 | |
3753 | // PowerPC64 values for `Sym64::st_other. |
3754 | pub const STO_PPC64_LOCAL_BIT: u8 = 5; |
3755 | pub const STO_PPC64_LOCAL_MASK: u8 = 7 << STO_PPC64_LOCAL_BIT; |
3756 | |
3757 | // ARM specific declarations. |
3758 | |
3759 | // ARM values for `FileHeader*::e_flags`. |
3760 | pub const EF_ARM_RELEXEC: u32 = 0x01; |
3761 | pub const EF_ARM_HASENTRY: u32 = 0x02; |
3762 | pub const EF_ARM_INTERWORK: u32 = 0x04; |
3763 | pub const EF_ARM_APCS_26: u32 = 0x08; |
3764 | pub const EF_ARM_APCS_FLOAT: u32 = 0x10; |
3765 | pub const EF_ARM_PIC: u32 = 0x20; |
3766 | /// 8-bit structure alignment is in use |
3767 | pub const EF_ARM_ALIGN8: u32 = 0x40; |
3768 | pub const EF_ARM_NEW_ABI: u32 = 0x80; |
3769 | pub const EF_ARM_OLD_ABI: u32 = 0x100; |
3770 | pub const EF_ARM_SOFT_FLOAT: u32 = 0x200; |
3771 | pub const EF_ARM_VFP_FLOAT: u32 = 0x400; |
3772 | pub const EF_ARM_MAVERICK_FLOAT: u32 = 0x800; |
3773 | |
3774 | /// NB conflicts with EF_ARM_SOFT_FLOAT |
3775 | pub const EF_ARM_ABI_FLOAT_SOFT: u32 = 0x200; |
3776 | /// NB conflicts with EF_ARM_VFP_FLOAT |
3777 | pub const EF_ARM_ABI_FLOAT_HARD: u32 = 0x400; |
3778 | |
3779 | // Other constants defined in the ARM ELF spec. version B-01. |
3780 | // NB. These conflict with values defined above. |
3781 | pub const EF_ARM_SYMSARESORTED: u32 = 0x04; |
3782 | pub const EF_ARM_DYNSYMSUSESEGIDX: u32 = 0x08; |
3783 | pub const EF_ARM_MAPSYMSFIRST: u32 = 0x10; |
3784 | |
3785 | // Constants defined in AAELF. |
3786 | pub const EF_ARM_BE8: u32 = 0x0080_0000; |
3787 | pub const EF_ARM_LE8: u32 = 0x0040_0000; |
3788 | |
3789 | pub const EF_ARM_EABIMASK: u32 = 0xff00_0000; |
3790 | pub const EF_ARM_EABI_UNKNOWN: u32 = 0x0000_0000; |
3791 | pub const EF_ARM_EABI_VER1: u32 = 0x0100_0000; |
3792 | pub const EF_ARM_EABI_VER2: u32 = 0x0200_0000; |
3793 | pub const EF_ARM_EABI_VER3: u32 = 0x0300_0000; |
3794 | pub const EF_ARM_EABI_VER4: u32 = 0x0400_0000; |
3795 | pub const EF_ARM_EABI_VER5: u32 = 0x0500_0000; |
3796 | |
3797 | // ARM Thumb values for `st_type` component of `Sym*::st_info`. |
3798 | /// A Thumb function. |
3799 | pub const STT_ARM_TFUNC: u8 = STT_LOPROC; |
3800 | /// A Thumb label. |
3801 | pub const STT_ARM_16BIT: u8 = STT_HIPROC; |
3802 | |
3803 | // ARM values for `SectionHeader*::sh_flags`. |
3804 | /// Section contains an entry point |
3805 | pub const SHF_ARM_ENTRYSECT: u32 = 0x1000_0000; |
3806 | /// Section may be multiply defined in the input to a link step. |
3807 | pub const SHF_ARM_COMDEF: u32 = 0x8000_0000; |
3808 | |
3809 | // ARM values for `ProgramHeader*::p_flags`. |
3810 | /// Segment contains the location addressed by the static base. |
3811 | pub const PF_ARM_SB: u32 = 0x1000_0000; |
3812 | /// Position-independent segment. |
3813 | pub const PF_ARM_PI: u32 = 0x2000_0000; |
3814 | /// Absolute segment. |
3815 | pub const PF_ARM_ABS: u32 = 0x4000_0000; |
3816 | |
3817 | // ARM values for `ProgramHeader*::p_type`. |
3818 | /// ARM unwind segment. |
3819 | pub const PT_ARM_EXIDX: u32 = PT_LOPROC + 1; |
3820 | |
3821 | // ARM values for `SectionHeader*::sh_type`. |
3822 | /// ARM unwind section. |
3823 | pub const SHT_ARM_EXIDX: u32 = SHT_LOPROC + 1; |
3824 | /// Preemption details. |
3825 | pub const SHT_ARM_PREEMPTMAP: u32 = SHT_LOPROC + 2; |
3826 | /// ARM attributes section. |
3827 | pub const SHT_ARM_ATTRIBUTES: u32 = SHT_LOPROC + 3; |
3828 | |
3829 | // AArch64 values for `Rel*::r_type`. |
3830 | |
3831 | /// No relocation. |
3832 | pub const R_AARCH64_NONE: u32 = 0; |
3833 | |
3834 | // ILP32 AArch64 relocs. |
3835 | /// Direct 32 bit. |
3836 | pub const R_AARCH64_P32_ABS32: u32 = 1; |
3837 | /// Copy symbol at runtime. |
3838 | pub const R_AARCH64_P32_COPY: u32 = 180; |
3839 | /// Create GOT entry. |
3840 | pub const R_AARCH64_P32_GLOB_DAT: u32 = 181; |
3841 | /// Create PLT entry. |
3842 | pub const R_AARCH64_P32_JUMP_SLOT: u32 = 182; |
3843 | /// Adjust by program base. |
3844 | pub const R_AARCH64_P32_RELATIVE: u32 = 183; |
3845 | /// Module number, 32 bit. |
3846 | pub const R_AARCH64_P32_TLS_DTPMOD: u32 = 184; |
3847 | /// Module-relative offset, 32 bit. |
3848 | pub const R_AARCH64_P32_TLS_DTPREL: u32 = 185; |
3849 | /// TP-relative offset, 32 bit. |
3850 | pub const R_AARCH64_P32_TLS_TPREL: u32 = 186; |
3851 | /// TLS Descriptor. |
3852 | pub const R_AARCH64_P32_TLSDESC: u32 = 187; |
3853 | /// STT_GNU_IFUNC relocation. |
3854 | pub const R_AARCH64_P32_IRELATIVE: u32 = 188; |
3855 | |
3856 | // LP64 AArch64 relocs. |
3857 | /// Direct 64 bit. |
3858 | pub const R_AARCH64_ABS64: u32 = 257; |
3859 | /// Direct 32 bit. |
3860 | pub const R_AARCH64_ABS32: u32 = 258; |
3861 | /// Direct 16-bit. |
3862 | pub const R_AARCH64_ABS16: u32 = 259; |
3863 | /// PC-relative 64-bit. |
3864 | pub const R_AARCH64_PREL64: u32 = 260; |
3865 | /// PC-relative 32-bit. |
3866 | pub const R_AARCH64_PREL32: u32 = 261; |
3867 | /// PC-relative 16-bit. |
3868 | pub const R_AARCH64_PREL16: u32 = 262; |
3869 | /// Dir. MOVZ imm. from bits 15:0. |
3870 | pub const R_AARCH64_MOVW_UABS_G0: u32 = 263; |
3871 | /// Likewise for MOVK; no check. |
3872 | pub const R_AARCH64_MOVW_UABS_G0_NC: u32 = 264; |
3873 | /// Dir. MOVZ imm. from bits 31:16. |
3874 | pub const R_AARCH64_MOVW_UABS_G1: u32 = 265; |
3875 | /// Likewise for MOVK; no check. |
3876 | pub const R_AARCH64_MOVW_UABS_G1_NC: u32 = 266; |
3877 | /// Dir. MOVZ imm. from bits 47:32. |
3878 | pub const R_AARCH64_MOVW_UABS_G2: u32 = 267; |
3879 | /// Likewise for MOVK; no check. |
3880 | pub const R_AARCH64_MOVW_UABS_G2_NC: u32 = 268; |
3881 | /// Dir. MOV{K,Z} imm. from 63:48. |
3882 | pub const R_AARCH64_MOVW_UABS_G3: u32 = 269; |
3883 | /// Dir. MOV{N,Z} imm. from 15:0. |
3884 | pub const R_AARCH64_MOVW_SABS_G0: u32 = 270; |
3885 | /// Dir. MOV{N,Z} imm. from 31:16. |
3886 | pub const R_AARCH64_MOVW_SABS_G1: u32 = 271; |
3887 | /// Dir. MOV{N,Z} imm. from 47:32. |
3888 | pub const R_AARCH64_MOVW_SABS_G2: u32 = 272; |
3889 | /// PC-rel. LD imm. from bits 20:2. |
3890 | pub const R_AARCH64_LD_PREL_LO19: u32 = 273; |
3891 | /// PC-rel. ADR imm. from bits 20:0. |
3892 | pub const R_AARCH64_ADR_PREL_LO21: u32 = 274; |
3893 | /// Page-rel. ADRP imm. from 32:12. |
3894 | pub const R_AARCH64_ADR_PREL_PG_HI21: u32 = 275; |
3895 | /// Likewise; no overflow check. |
3896 | pub const R_AARCH64_ADR_PREL_PG_HI21_NC: u32 = 276; |
3897 | /// Dir. ADD imm. from bits 11:0. |
3898 | pub const R_AARCH64_ADD_ABS_LO12_NC: u32 = 277; |
3899 | /// Likewise for LD/ST; no check. |
3900 | pub const R_AARCH64_LDST8_ABS_LO12_NC: u32 = 278; |
3901 | /// PC-rel. TBZ/TBNZ imm. from 15:2. |
3902 | pub const R_AARCH64_TSTBR14: u32 = 279; |
3903 | /// PC-rel. cond. br. imm. from 20:2. |
3904 | pub const R_AARCH64_CONDBR19: u32 = 280; |
3905 | /// PC-rel. B imm. from bits 27:2. |
3906 | pub const R_AARCH64_JUMP26: u32 = 282; |
3907 | /// Likewise for CALL. |
3908 | pub const R_AARCH64_CALL26: u32 = 283; |
3909 | /// Dir. ADD imm. from bits 11:1. |
3910 | pub const R_AARCH64_LDST16_ABS_LO12_NC: u32 = 284; |
3911 | /// Likewise for bits 11:2. |
3912 | pub const R_AARCH64_LDST32_ABS_LO12_NC: u32 = 285; |
3913 | /// Likewise for bits 11:3. |
3914 | pub const R_AARCH64_LDST64_ABS_LO12_NC: u32 = 286; |
3915 | /// PC-rel. MOV{N,Z} imm. from 15:0. |
3916 | pub const R_AARCH64_MOVW_PREL_G0: u32 = 287; |
3917 | /// Likewise for MOVK; no check. |
3918 | pub const R_AARCH64_MOVW_PREL_G0_NC: u32 = 288; |
3919 | /// PC-rel. MOV{N,Z} imm. from 31:16. |
3920 | pub const R_AARCH64_MOVW_PREL_G1: u32 = 289; |
3921 | /// Likewise for MOVK; no check. |
3922 | pub const R_AARCH64_MOVW_PREL_G1_NC: u32 = 290; |
3923 | /// PC-rel. MOV{N,Z} imm. from 47:32. |
3924 | pub const R_AARCH64_MOVW_PREL_G2: u32 = 291; |
3925 | /// Likewise for MOVK; no check. |
3926 | pub const R_AARCH64_MOVW_PREL_G2_NC: u32 = 292; |
3927 | /// PC-rel. MOV{N,Z} imm. from 63:48. |
3928 | pub const R_AARCH64_MOVW_PREL_G3: u32 = 293; |
3929 | /// Dir. ADD imm. from bits 11:4. |
3930 | pub const R_AARCH64_LDST128_ABS_LO12_NC: u32 = 299; |
3931 | /// GOT-rel. off. MOV{N,Z} imm. 15:0. |
3932 | pub const R_AARCH64_MOVW_GOTOFF_G0: u32 = 300; |
3933 | /// Likewise for MOVK; no check. |
3934 | pub const R_AARCH64_MOVW_GOTOFF_G0_NC: u32 = 301; |
3935 | /// GOT-rel. o. MOV{N,Z} imm. 31:16. |
3936 | pub const R_AARCH64_MOVW_GOTOFF_G1: u32 = 302; |
3937 | /// Likewise for MOVK; no check. |
3938 | pub const R_AARCH64_MOVW_GOTOFF_G1_NC: u32 = 303; |
3939 | /// GOT-rel. o. MOV{N,Z} imm. 47:32. |
3940 | pub const R_AARCH64_MOVW_GOTOFF_G2: u32 = 304; |
3941 | /// Likewise for MOVK; no check. |
3942 | pub const R_AARCH64_MOVW_GOTOFF_G2_NC: u32 = 305; |
3943 | /// GOT-rel. o. MOV{N,Z} imm. 63:48. |
3944 | pub const R_AARCH64_MOVW_GOTOFF_G3: u32 = 306; |
3945 | /// GOT-relative 64-bit. |
3946 | pub const R_AARCH64_GOTREL64: u32 = 307; |
3947 | /// GOT-relative 32-bit. |
3948 | pub const R_AARCH64_GOTREL32: u32 = 308; |
3949 | /// PC-rel. GOT off. load imm. 20:2. |
3950 | pub const R_AARCH64_GOT_LD_PREL19: u32 = 309; |
3951 | /// GOT-rel. off. LD/ST imm. 14:3. |
3952 | pub const R_AARCH64_LD64_GOTOFF_LO15: u32 = 310; |
3953 | /// P-page-rel. GOT off. ADRP 32:12. |
3954 | pub const R_AARCH64_ADR_GOT_PAGE: u32 = 311; |
3955 | /// Dir. GOT off. LD/ST imm. 11:3. |
3956 | pub const R_AARCH64_LD64_GOT_LO12_NC: u32 = 312; |
3957 | /// GOT-page-rel. GOT off. LD/ST 14:3 |
3958 | pub const R_AARCH64_LD64_GOTPAGE_LO15: u32 = 313; |
3959 | /// PC-relative ADR imm. 20:0. |
3960 | pub const R_AARCH64_TLSGD_ADR_PREL21: u32 = 512; |
3961 | /// page-rel. ADRP imm. 32:12. |
3962 | pub const R_AARCH64_TLSGD_ADR_PAGE21: u32 = 513; |
3963 | /// direct ADD imm. from 11:0. |
3964 | pub const R_AARCH64_TLSGD_ADD_LO12_NC: u32 = 514; |
3965 | /// GOT-rel. MOV{N,Z} 31:16. |
3966 | pub const R_AARCH64_TLSGD_MOVW_G1: u32 = 515; |
3967 | /// GOT-rel. MOVK imm. 15:0. |
3968 | pub const R_AARCH64_TLSGD_MOVW_G0_NC: u32 = 516; |
3969 | /// Like 512; local dynamic model. |
3970 | pub const R_AARCH64_TLSLD_ADR_PREL21: u32 = 517; |
3971 | /// Like 513; local dynamic model. |
3972 | pub const R_AARCH64_TLSLD_ADR_PAGE21: u32 = 518; |
3973 | /// Like 514; local dynamic model. |
3974 | pub const R_AARCH64_TLSLD_ADD_LO12_NC: u32 = 519; |
3975 | /// Like 515; local dynamic model. |
3976 | pub const R_AARCH64_TLSLD_MOVW_G1: u32 = 520; |
3977 | /// Like 516; local dynamic model. |
3978 | pub const R_AARCH64_TLSLD_MOVW_G0_NC: u32 = 521; |
3979 | /// TLS PC-rel. load imm. 20:2. |
3980 | pub const R_AARCH64_TLSLD_LD_PREL19: u32 = 522; |
3981 | /// TLS DTP-rel. MOV{N,Z} 47:32. |
3982 | pub const R_AARCH64_TLSLD_MOVW_DTPREL_G2: u32 = 523; |
3983 | /// TLS DTP-rel. MOV{N,Z} 31:16. |
3984 | pub const R_AARCH64_TLSLD_MOVW_DTPREL_G1: u32 = 524; |
3985 | /// Likewise; MOVK; no check. |
3986 | pub const R_AARCH64_TLSLD_MOVW_DTPREL_G1_NC: u32 = 525; |
3987 | /// TLS DTP-rel. MOV{N,Z} 15:0. |
3988 | pub const R_AARCH64_TLSLD_MOVW_DTPREL_G0: u32 = 526; |
3989 | /// Likewise; MOVK; no check. |
3990 | pub const R_AARCH64_TLSLD_MOVW_DTPREL_G0_NC: u32 = 527; |
3991 | /// DTP-rel. ADD imm. from 23:12. |
3992 | pub const R_AARCH64_TLSLD_ADD_DTPREL_HI12: u32 = 528; |
3993 | /// DTP-rel. ADD imm. from 11:0. |
3994 | pub const R_AARCH64_TLSLD_ADD_DTPREL_LO12: u32 = 529; |
3995 | /// Likewise; no ovfl. check. |
3996 | pub const R_AARCH64_TLSLD_ADD_DTPREL_LO12_NC: u32 = 530; |
3997 | /// DTP-rel. LD/ST imm. 11:0. |
3998 | pub const R_AARCH64_TLSLD_LDST8_DTPREL_LO12: u32 = 531; |
3999 | /// Likewise; no check. |
4000 | pub const R_AARCH64_TLSLD_LDST8_DTPREL_LO12_NC: u32 = 532; |
4001 | /// DTP-rel. LD/ST imm. 11:1. |
4002 | pub const R_AARCH64_TLSLD_LDST16_DTPREL_LO12: u32 = 533; |
4003 | /// Likewise; no check. |
4004 | pub const R_AARCH64_TLSLD_LDST16_DTPREL_LO12_NC: u32 = 534; |
4005 | /// DTP-rel. LD/ST imm. 11:2. |
4006 | pub const R_AARCH64_TLSLD_LDST32_DTPREL_LO12: u32 = 535; |
4007 | /// Likewise; no check. |
4008 | pub const R_AARCH64_TLSLD_LDST32_DTPREL_LO12_NC: u32 = 536; |
4009 | /// DTP-rel. LD/ST imm. 11:3. |
4010 | pub const R_AARCH64_TLSLD_LDST64_DTPREL_LO12: u32 = 537; |
4011 | /// Likewise; no check. |
4012 | pub const R_AARCH64_TLSLD_LDST64_DTPREL_LO12_NC: u32 = 538; |
4013 | /// GOT-rel. MOV{N,Z} 31:16. |
4014 | pub const R_AARCH64_TLSIE_MOVW_GOTTPREL_G1: u32 = 539; |
4015 | /// GOT-rel. MOVK 15:0. |
4016 | pub const R_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC: u32 = 540; |
4017 | /// Page-rel. ADRP 32:12. |
4018 | pub const R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21: u32 = 541; |
4019 | /// Direct LD off. 11:3. |
4020 | pub const R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC: u32 = 542; |
4021 | /// PC-rel. load imm. 20:2. |
4022 | pub const R_AARCH64_TLSIE_LD_GOTTPREL_PREL19: u32 = 543; |
4023 | /// TLS TP-rel. MOV{N,Z} 47:32. |
4024 | pub const R_AARCH64_TLSLE_MOVW_TPREL_G2: u32 = 544; |
4025 | /// TLS TP-rel. MOV{N,Z} 31:16. |
4026 | pub const R_AARCH64_TLSLE_MOVW_TPREL_G1: u32 = 545; |
4027 | /// Likewise; MOVK; no check. |
4028 | pub const R_AARCH64_TLSLE_MOVW_TPREL_G1_NC: u32 = 546; |
4029 | /// TLS TP-rel. MOV{N,Z} 15:0. |
4030 | pub const R_AARCH64_TLSLE_MOVW_TPREL_G0: u32 = 547; |
4031 | /// Likewise; MOVK; no check. |
4032 | pub const R_AARCH64_TLSLE_MOVW_TPREL_G0_NC: u32 = 548; |
4033 | /// TP-rel. ADD imm. 23:12. |
4034 | pub const R_AARCH64_TLSLE_ADD_TPREL_HI12: u32 = 549; |
4035 | /// TP-rel. ADD imm. 11:0. |
4036 | pub const R_AARCH64_TLSLE_ADD_TPREL_LO12: u32 = 550; |
4037 | /// Likewise; no ovfl. check. |
4038 | pub const R_AARCH64_TLSLE_ADD_TPREL_LO12_NC: u32 = 551; |
4039 | /// TP-rel. LD/ST off. 11:0. |
4040 | pub const R_AARCH64_TLSLE_LDST8_TPREL_LO12: u32 = 552; |
4041 | /// Likewise; no ovfl. check. |
4042 | pub const R_AARCH64_TLSLE_LDST8_TPREL_LO12_NC: u32 = 553; |
4043 | /// TP-rel. LD/ST off. 11:1. |
4044 | pub const R_AARCH64_TLSLE_LDST16_TPREL_LO12: u32 = 554; |
4045 | /// Likewise; no check. |
4046 | pub const R_AARCH64_TLSLE_LDST16_TPREL_LO12_NC: u32 = 555; |
4047 | /// TP-rel. LD/ST off. 11:2. |
4048 | pub const R_AARCH64_TLSLE_LDST32_TPREL_LO12: u32 = 556; |
4049 | /// Likewise; no check. |
4050 | pub const R_AARCH64_TLSLE_LDST32_TPREL_LO12_NC: u32 = 557; |
4051 | /// TP-rel. LD/ST off. 11:3. |
4052 | pub const R_AARCH64_TLSLE_LDST64_TPREL_LO12: u32 = 558; |
4053 | /// Likewise; no check. |
4054 | pub const R_AARCH64_TLSLE_LDST64_TPREL_LO12_NC: u32 = 559; |
4055 | /// PC-rel. load immediate 20:2. |
4056 | pub const R_AARCH64_TLSDESC_LD_PREL19: u32 = 560; |
4057 | /// PC-rel. ADR immediate 20:0. |
4058 | pub const R_AARCH64_TLSDESC_ADR_PREL21: u32 = 561; |
4059 | /// Page-rel. ADRP imm. 32:12. |
4060 | pub const R_AARCH64_TLSDESC_ADR_PAGE21: u32 = 562; |
4061 | /// Direct LD off. from 11:3. |
4062 | pub const R_AARCH64_TLSDESC_LD64_LO12: u32 = 563; |
4063 | /// Direct ADD imm. from 11:0. |
4064 | pub const R_AARCH64_TLSDESC_ADD_LO12: u32 = 564; |
4065 | /// GOT-rel. MOV{N,Z} imm. 31:16. |
4066 | pub const R_AARCH64_TLSDESC_OFF_G1: u32 = 565; |
4067 | /// GOT-rel. MOVK imm. 15:0; no ck. |
4068 | pub const R_AARCH64_TLSDESC_OFF_G0_NC: u32 = 566; |
4069 | /// Relax LDR. |
4070 | pub const R_AARCH64_TLSDESC_LDR: u32 = 567; |
4071 | /// Relax ADD. |
4072 | pub const R_AARCH64_TLSDESC_ADD: u32 = 568; |
4073 | /// Relax BLR. |
4074 | pub const R_AARCH64_TLSDESC_CALL: u32 = 569; |
4075 | /// TP-rel. LD/ST off. 11:4. |
4076 | pub const R_AARCH64_TLSLE_LDST128_TPREL_LO12: u32 = 570; |
4077 | /// Likewise; no check. |
4078 | pub const R_AARCH64_TLSLE_LDST128_TPREL_LO12_NC: u32 = 571; |
4079 | /// DTP-rel. LD/ST imm. 11:4. |
4080 | pub const R_AARCH64_TLSLD_LDST128_DTPREL_LO12: u32 = 572; |
4081 | /// Likewise; no check. |
4082 | pub const R_AARCH64_TLSLD_LDST128_DTPREL_LO12_NC: u32 = 573; |
4083 | /// Copy symbol at runtime. |
4084 | pub const R_AARCH64_COPY: u32 = 1024; |
4085 | /// Create GOT entry. |
4086 | pub const R_AARCH64_GLOB_DAT: u32 = 1025; |
4087 | /// Create PLT entry. |
4088 | pub const R_AARCH64_JUMP_SLOT: u32 = 1026; |
4089 | /// Adjust by program base. |
4090 | pub const R_AARCH64_RELATIVE: u32 = 1027; |
4091 | /// Module number, 64 bit. |
4092 | pub const R_AARCH64_TLS_DTPMOD: u32 = 1028; |
4093 | /// Module-relative offset, 64 bit. |
4094 | pub const R_AARCH64_TLS_DTPREL: u32 = 1029; |
4095 | /// TP-relative offset, 64 bit. |
4096 | pub const R_AARCH64_TLS_TPREL: u32 = 1030; |
4097 | /// TLS Descriptor. |
4098 | pub const R_AARCH64_TLSDESC: u32 = 1031; |
4099 | /// STT_GNU_IFUNC relocation. |
4100 | pub const R_AARCH64_IRELATIVE: u32 = 1032; |
4101 | |
4102 | // AVR values for `FileHeader*::e_flags`. |
4103 | |
4104 | /// Bitmask for `EF_AVR_ARCH_*`. |
4105 | pub const EF_AVR_ARCH: u32 = 0x7F; |
4106 | |
4107 | /// If set, it is assumed that the elf file uses local symbols as reference |
4108 | /// for the relocations so that linker relaxation is possible. |
4109 | pub const EF_AVR_LINKRELAX_PREPARED: u32 = 0x80; |
4110 | |
4111 | pub const EF_AVR_ARCH_AVR1: u32 = 1; |
4112 | pub const EF_AVR_ARCH_AVR2: u32 = 2; |
4113 | pub const EF_AVR_ARCH_AVR25: u32 = 25; |
4114 | pub const EF_AVR_ARCH_AVR3: u32 = 3; |
4115 | pub const EF_AVR_ARCH_AVR31: u32 = 31; |
4116 | pub const EF_AVR_ARCH_AVR35: u32 = 35; |
4117 | pub const EF_AVR_ARCH_AVR4: u32 = 4; |
4118 | pub const EF_AVR_ARCH_AVR5: u32 = 5; |
4119 | pub const EF_AVR_ARCH_AVR51: u32 = 51; |
4120 | pub const EF_AVR_ARCH_AVR6: u32 = 6; |
4121 | pub const EF_AVR_ARCH_AVRTINY: u32 = 100; |
4122 | pub const EF_AVR_ARCH_XMEGA1: u32 = 101; |
4123 | pub const EF_AVR_ARCH_XMEGA2: u32 = 102; |
4124 | pub const EF_AVR_ARCH_XMEGA3: u32 = 103; |
4125 | pub const EF_AVR_ARCH_XMEGA4: u32 = 104; |
4126 | pub const EF_AVR_ARCH_XMEGA5: u32 = 105; |
4127 | pub const EF_AVR_ARCH_XMEGA6: u32 = 106; |
4128 | pub const EF_AVR_ARCH_XMEGA7: u32 = 107; |
4129 | |
4130 | // AVR values for `Rel*::r_type`. |
4131 | |
4132 | pub const R_AVR_NONE: u32 = 0; |
4133 | /// Direct 32 bit |
4134 | pub const R_AVR_32: u32 = 1; |
4135 | pub const R_AVR_7_PCREL: u32 = 2; |
4136 | pub const R_AVR_13_PCREL: u32 = 3; |
4137 | /// Direct 16 bit |
4138 | pub const R_AVR_16: u32 = 4; |
4139 | pub const R_AVR_16_PM: u32 = 5; |
4140 | pub const R_AVR_LO8_LDI: u32 = 6; |
4141 | pub const R_AVR_HI8_LDI: u32 = 7; |
4142 | pub const R_AVR_HH8_LDI: u32 = 8; |
4143 | pub const R_AVR_LO8_LDI_NEG: u32 = 9; |
4144 | pub const R_AVR_HI8_LDI_NEG: u32 = 10; |
4145 | pub const R_AVR_HH8_LDI_NEG: u32 = 11; |
4146 | pub const R_AVR_LO8_LDI_PM: u32 = 12; |
4147 | pub const R_AVR_HI8_LDI_PM: u32 = 13; |
4148 | pub const R_AVR_HH8_LDI_PM: u32 = 14; |
4149 | pub const R_AVR_LO8_LDI_PM_NEG: u32 = 15; |
4150 | pub const R_AVR_HI8_LDI_PM_NEG: u32 = 16; |
4151 | pub const R_AVR_HH8_LDI_PM_NEG: u32 = 17; |
4152 | pub const R_AVR_CALL: u32 = 18; |
4153 | pub const R_AVR_LDI: u32 = 19; |
4154 | pub const R_AVR_6: u32 = 20; |
4155 | pub const R_AVR_6_ADIW: u32 = 21; |
4156 | pub const R_AVR_MS8_LDI: u32 = 22; |
4157 | pub const R_AVR_MS8_LDI_NEG: u32 = 23; |
4158 | pub const R_AVR_LO8_LDI_GS: u32 = 24; |
4159 | pub const R_AVR_HI8_LDI_GS: u32 = 25; |
4160 | pub const R_AVR_8: u32 = 26; |
4161 | pub const R_AVR_8_LO8: u32 = 27; |
4162 | pub const R_AVR_8_HI8: u32 = 28; |
4163 | pub const R_AVR_8_HLO8: u32 = 29; |
4164 | pub const R_AVR_DIFF8: u32 = 30; |
4165 | pub const R_AVR_DIFF16: u32 = 31; |
4166 | pub const R_AVR_DIFF32: u32 = 32; |
4167 | pub const R_AVR_LDS_STS_16: u32 = 33; |
4168 | pub const R_AVR_PORT6: u32 = 34; |
4169 | pub const R_AVR_PORT5: u32 = 35; |
4170 | pub const R_AVR_32_PCREL: u32 = 36; |
4171 | |
4172 | // MSP430 values for `Rel*::r_type`. |
4173 | |
4174 | /// Direct 32 bit |
4175 | pub const R_MSP430_32: u32 = 1; |
4176 | /// Direct 16 bit |
4177 | pub const R_MSP430_16_BYTE: u32 = 5; |
4178 | |
4179 | // Hexagon values for `Rel*::r_type`. |
4180 | |
4181 | /// Direct 32 bit |
4182 | pub const R_HEX_32: u32 = 6; |
4183 | |
4184 | // ARM values for `Rel*::r_type`. |
4185 | |
4186 | /// No reloc |
4187 | pub const R_ARM_NONE: u32 = 0; |
4188 | /// Deprecated PC relative 26 bit branch. |
4189 | pub const R_ARM_PC24: u32 = 1; |
4190 | /// Direct 32 bit |
4191 | pub const R_ARM_ABS32: u32 = 2; |
4192 | /// PC relative 32 bit |
4193 | pub const R_ARM_REL32: u32 = 3; |
4194 | pub const R_ARM_PC13: u32 = 4; |
4195 | /// Direct 16 bit |
4196 | pub const R_ARM_ABS16: u32 = 5; |
4197 | /// Direct 12 bit |
4198 | pub const R_ARM_ABS12: u32 = 6; |
4199 | /// Direct & 0x7C (`LDR`, `STR`). |
4200 | pub const R_ARM_THM_ABS5: u32 = 7; |
4201 | /// Direct 8 bit |
4202 | pub const R_ARM_ABS8: u32 = 8; |
4203 | pub const R_ARM_SBREL32: u32 = 9; |
4204 | /// PC relative 24 bit (Thumb32 `BL`). |
4205 | pub const R_ARM_THM_PC22: u32 = 10; |
4206 | /// PC relative & 0x3FC (Thumb16 `LDR`, `ADD`, `ADR`). |
4207 | pub const R_ARM_THM_PC8: u32 = 11; |
4208 | pub const R_ARM_AMP_VCALL9: u32 = 12; |
4209 | /// Obsolete static relocation. |
4210 | pub const R_ARM_SWI24: u32 = 13; |
4211 | /// Dynamic relocation. |
4212 | pub const R_ARM_TLS_DESC: u32 = 13; |
4213 | /// Reserved. |
4214 | pub const R_ARM_THM_SWI8: u32 = 14; |
4215 | /// Reserved. |
4216 | pub const R_ARM_XPC25: u32 = 15; |
4217 | /// Reserved. |
4218 | pub const R_ARM_THM_XPC22: u32 = 16; |
4219 | /// ID of module containing symbol |
4220 | pub const R_ARM_TLS_DTPMOD32: u32 = 17; |
4221 | /// Offset in TLS block |
4222 | pub const R_ARM_TLS_DTPOFF32: u32 = 18; |
4223 | /// Offset in static TLS block |
4224 | pub const R_ARM_TLS_TPOFF32: u32 = 19; |
4225 | /// Copy symbol at runtime |
4226 | pub const R_ARM_COPY: u32 = 20; |
4227 | /// Create GOT entry |
4228 | pub const R_ARM_GLOB_DAT: u32 = 21; |
4229 | /// Create PLT entry |
4230 | pub const R_ARM_JUMP_SLOT: u32 = 22; |
4231 | /// Adjust by program base |
4232 | pub const R_ARM_RELATIVE: u32 = 23; |
4233 | /// 32 bit offset to GOT |
4234 | pub const R_ARM_GOTOFF: u32 = 24; |
4235 | /// 32 bit PC relative offset to GOT |
4236 | pub const R_ARM_GOTPC: u32 = 25; |
4237 | /// 32 bit GOT entry |
4238 | pub const R_ARM_GOT32: u32 = 26; |
4239 | /// Deprecated, 32 bit PLT address. |
4240 | pub const R_ARM_PLT32: u32 = 27; |
4241 | /// PC relative 24 bit (`BL`, `BLX`). |
4242 | pub const R_ARM_CALL: u32 = 28; |
4243 | /// PC relative 24 bit (`B`, `BL<cond>`). |
4244 | pub const R_ARM_JUMP24: u32 = 29; |
4245 | /// PC relative 24 bit (Thumb32 `B.W`). |
4246 | pub const R_ARM_THM_JUMP24: u32 = 30; |
4247 | /// Adjust by program base. |
4248 | pub const R_ARM_BASE_ABS: u32 = 31; |
4249 | /// Obsolete. |
4250 | pub const R_ARM_ALU_PCREL_7_0: u32 = 32; |
4251 | /// Obsolete. |
4252 | pub const R_ARM_ALU_PCREL_15_8: u32 = 33; |
4253 | /// Obsolete. |
4254 | pub const R_ARM_ALU_PCREL_23_15: u32 = 34; |
4255 | /// Deprecated, prog. base relative. |
4256 | pub const R_ARM_LDR_SBREL_11_0: u32 = 35; |
4257 | /// Deprecated, prog. base relative. |
4258 | pub const R_ARM_ALU_SBREL_19_12: u32 = 36; |
4259 | /// Deprecated, prog. base relative. |
4260 | pub const R_ARM_ALU_SBREL_27_20: u32 = 37; |
4261 | pub const R_ARM_TARGET1: u32 = 38; |
4262 | /// Program base relative. |
4263 | pub const R_ARM_SBREL31: u32 = 39; |
4264 | pub const R_ARM_V4BX: u32 = 40; |
4265 | pub const R_ARM_TARGET2: u32 = 41; |
4266 | /// 32 bit PC relative. |
4267 | pub const R_ARM_PREL31: u32 = 42; |
4268 | /// Direct 16-bit (`MOVW`). |
4269 | pub const R_ARM_MOVW_ABS_NC: u32 = 43; |
4270 | /// Direct high 16-bit (`MOVT`). |
4271 | pub const R_ARM_MOVT_ABS: u32 = 44; |
4272 | /// PC relative 16-bit (`MOVW`). |
4273 | pub const R_ARM_MOVW_PREL_NC: u32 = 45; |
4274 | /// PC relative (MOVT). |
4275 | pub const R_ARM_MOVT_PREL: u32 = 46; |
4276 | /// Direct 16 bit (Thumb32 `MOVW`). |
4277 | pub const R_ARM_THM_MOVW_ABS_NC: u32 = 47; |
4278 | /// Direct high 16 bit (Thumb32 `MOVT`). |
4279 | pub const R_ARM_THM_MOVT_ABS: u32 = 48; |
4280 | /// PC relative 16 bit (Thumb32 `MOVW`). |
4281 | pub const R_ARM_THM_MOVW_PREL_NC: u32 = 49; |
4282 | /// PC relative high 16 bit (Thumb32 `MOVT`). |
4283 | pub const R_ARM_THM_MOVT_PREL: u32 = 50; |
4284 | /// PC relative 20 bit (Thumb32 `B<cond>.W`). |
4285 | pub const R_ARM_THM_JUMP19: u32 = 51; |
4286 | /// PC relative X & 0x7E (Thumb16 `CBZ`, `CBNZ`). |
4287 | pub const R_ARM_THM_JUMP6: u32 = 52; |
4288 | /// PC relative 12 bit (Thumb32 `ADR.W`). |
4289 | pub const R_ARM_THM_ALU_PREL_11_0: u32 = 53; |
4290 | /// PC relative 12 bit (Thumb32 `LDR{D,SB,H,SH}`). |
4291 | pub const R_ARM_THM_PC12: u32 = 54; |
4292 | /// Direct 32-bit. |
4293 | pub const R_ARM_ABS32_NOI: u32 = 55; |
4294 | /// PC relative 32-bit. |
4295 | pub const R_ARM_REL32_NOI: u32 = 56; |
4296 | /// PC relative (`ADD`, `SUB`). |
4297 | pub const R_ARM_ALU_PC_G0_NC: u32 = 57; |
4298 | /// PC relative (`ADD`, `SUB`). |
4299 | pub const R_ARM_ALU_PC_G0: u32 = 58; |
4300 | /// PC relative (`ADD`, `SUB`). |
4301 | pub const R_ARM_ALU_PC_G1_NC: u32 = 59; |
4302 | /// PC relative (`ADD`, `SUB`). |
4303 | pub const R_ARM_ALU_PC_G1: u32 = 60; |
4304 | /// PC relative (`ADD`, `SUB`). |
4305 | pub const R_ARM_ALU_PC_G2: u32 = 61; |
4306 | /// PC relative (`LDR`,`STR`,`LDRB`,`STRB`). |
4307 | pub const R_ARM_LDR_PC_G1: u32 = 62; |
4308 | /// PC relative (`LDR`,`STR`,`LDRB`,`STRB`). |
4309 | pub const R_ARM_LDR_PC_G2: u32 = 63; |
4310 | /// PC relative (`STR{D,H}`, `LDR{D,SB,H,SH}`). |
4311 | pub const R_ARM_LDRS_PC_G0: u32 = 64; |
4312 | /// PC relative (`STR{D,H}`, `LDR{D,SB,H,SH}`). |
4313 | pub const R_ARM_LDRS_PC_G1: u32 = 65; |
4314 | /// PC relative (`STR{D,H}`, `LDR{D,SB,H,SH}`). |
4315 | pub const R_ARM_LDRS_PC_G2: u32 = 66; |
4316 | /// PC relative (`LDC`, `STC`). |
4317 | pub const R_ARM_LDC_PC_G0: u32 = 67; |
4318 | /// PC relative (`LDC`, `STC`). |
4319 | pub const R_ARM_LDC_PC_G1: u32 = 68; |
4320 | /// PC relative (`LDC`, `STC`). |
4321 | pub const R_ARM_LDC_PC_G2: u32 = 69; |
4322 | /// Program base relative (`ADD`,`SUB`). |
4323 | pub const R_ARM_ALU_SB_G0_NC: u32 = 70; |
4324 | /// Program base relative (`ADD`,`SUB`). |
4325 | pub const R_ARM_ALU_SB_G0: u32 = 71; |
4326 | /// Program base relative (`ADD`,`SUB`). |
4327 | pub const R_ARM_ALU_SB_G1_NC: u32 = 72; |
4328 | /// Program base relative (`ADD`,`SUB`). |
4329 | pub const R_ARM_ALU_SB_G1: u32 = 73; |
4330 | /// Program base relative (`ADD`,`SUB`). |
4331 | pub const R_ARM_ALU_SB_G2: u32 = 74; |
4332 | /// Program base relative (`LDR`, `STR`, `LDRB`, `STRB`). |
4333 | pub const R_ARM_LDR_SB_G0: u32 = 75; |
4334 | /// Program base relative (`LDR`, `STR`, `LDRB`, `STRB`). |
4335 | pub const R_ARM_LDR_SB_G1: u32 = 76; |
4336 | /// Program base relative (`LDR`, `STR`, `LDRB`, `STRB`). |
4337 | pub const R_ARM_LDR_SB_G2: u32 = 77; |
4338 | /// Program base relative (`LDR`, `STR`, `LDRB`, `STRB`). |
4339 | pub const R_ARM_LDRS_SB_G0: u32 = 78; |
4340 | /// Program base relative (`LDR`, `STR`, `LDRB`, `STRB`). |
4341 | pub const R_ARM_LDRS_SB_G1: u32 = 79; |
4342 | /// Program base relative (`LDR`, `STR`, `LDRB`, `STRB`). |
4343 | pub const R_ARM_LDRS_SB_G2: u32 = 80; |
4344 | /// Program base relative (`LDC`,`STC`). |
4345 | pub const R_ARM_LDC_SB_G0: u32 = 81; |
4346 | /// Program base relative (`LDC`,`STC`). |
4347 | pub const R_ARM_LDC_SB_G1: u32 = 82; |
4348 | /// Program base relative (`LDC`,`STC`). |
4349 | pub const R_ARM_LDC_SB_G2: u32 = 83; |
4350 | /// Program base relative 16 bit (`MOVW`). |
4351 | pub const R_ARM_MOVW_BREL_NC: u32 = 84; |
4352 | /// Program base relative high 16 bit (`MOVT`). |
4353 | pub const R_ARM_MOVT_BREL: u32 = 85; |
4354 | /// Program base relative 16 bit (`MOVW`). |
4355 | pub const R_ARM_MOVW_BREL: u32 = 86; |
4356 | /// Program base relative 16 bit (Thumb32 `MOVW`). |
4357 | pub const R_ARM_THM_MOVW_BREL_NC: u32 = 87; |
4358 | /// Program base relative high 16 bit (Thumb32 `MOVT`). |
4359 | pub const R_ARM_THM_MOVT_BREL: u32 = 88; |
4360 | /// Program base relative 16 bit (Thumb32 `MOVW`). |
4361 | pub const R_ARM_THM_MOVW_BREL: u32 = 89; |
4362 | pub const R_ARM_TLS_GOTDESC: u32 = 90; |
4363 | pub const R_ARM_TLS_CALL: u32 = 91; |
4364 | /// TLS relaxation. |
4365 | pub const R_ARM_TLS_DESCSEQ: u32 = 92; |
4366 | pub const R_ARM_THM_TLS_CALL: u32 = 93; |
4367 | pub const R_ARM_PLT32_ABS: u32 = 94; |
4368 | /// GOT entry. |
4369 | pub const R_ARM_GOT_ABS: u32 = 95; |
4370 | /// PC relative GOT entry. |
4371 | pub const R_ARM_GOT_PREL: u32 = 96; |
4372 | /// GOT entry relative to GOT origin (`LDR`). |
4373 | pub const R_ARM_GOT_BREL12: u32 = 97; |
4374 | /// 12 bit, GOT entry relative to GOT origin (`LDR`, `STR`). |
4375 | pub const R_ARM_GOTOFF12: u32 = 98; |
4376 | pub const R_ARM_GOTRELAX: u32 = 99; |
4377 | pub const R_ARM_GNU_VTENTRY: u32 = 100; |
4378 | pub const R_ARM_GNU_VTINHERIT: u32 = 101; |
4379 | /// PC relative & 0xFFE (Thumb16 `B`). |
4380 | pub const R_ARM_THM_PC11: u32 = 102; |
4381 | /// PC relative & 0x1FE (Thumb16 `B`/`B<cond>`). |
4382 | pub const R_ARM_THM_PC9: u32 = 103; |
4383 | /// PC-rel 32 bit for global dynamic thread local data |
4384 | pub const R_ARM_TLS_GD32: u32 = 104; |
4385 | /// PC-rel 32 bit for local dynamic thread local data |
4386 | pub const R_ARM_TLS_LDM32: u32 = 105; |
4387 | /// 32 bit offset relative to TLS block |
4388 | pub const R_ARM_TLS_LDO32: u32 = 106; |
4389 | /// PC-rel 32 bit for GOT entry of static TLS block offset |
4390 | pub const R_ARM_TLS_IE32: u32 = 107; |
4391 | /// 32 bit offset relative to static TLS block |
4392 | pub const R_ARM_TLS_LE32: u32 = 108; |
4393 | /// 12 bit relative to TLS block (`LDR`, `STR`). |
4394 | pub const R_ARM_TLS_LDO12: u32 = 109; |
4395 | /// 12 bit relative to static TLS block (`LDR`, `STR`). |
4396 | pub const R_ARM_TLS_LE12: u32 = 110; |
4397 | /// 12 bit GOT entry relative to GOT origin (`LDR`). |
4398 | pub const R_ARM_TLS_IE12GP: u32 = 111; |
4399 | /// Obsolete. |
4400 | pub const R_ARM_ME_TOO: u32 = 128; |
4401 | pub const R_ARM_THM_TLS_DESCSEQ: u32 = 129; |
4402 | pub const R_ARM_THM_TLS_DESCSEQ16: u32 = 129; |
4403 | pub const R_ARM_THM_TLS_DESCSEQ32: u32 = 130; |
4404 | /// GOT entry relative to GOT origin, 12 bit (Thumb32 `LDR`). |
4405 | pub const R_ARM_THM_GOT_BREL12: u32 = 131; |
4406 | pub const R_ARM_IRELATIVE: u32 = 160; |
4407 | pub const R_ARM_RXPC25: u32 = 249; |
4408 | pub const R_ARM_RSBREL32: u32 = 250; |
4409 | pub const R_ARM_THM_RPC22: u32 = 251; |
4410 | pub const R_ARM_RREL32: u32 = 252; |
4411 | pub const R_ARM_RABS22: u32 = 253; |
4412 | pub const R_ARM_RPC24: u32 = 254; |
4413 | pub const R_ARM_RBASE: u32 = 255; |
4414 | |
4415 | // C-SKY values for `Rel*::r_type`. |
4416 | /// no reloc |
4417 | pub const R_CKCORE_NONE: u32 = 0; |
4418 | /// direct 32 bit (S + A) |
4419 | pub const R_CKCORE_ADDR32: u32 = 1; |
4420 | /// disp ((S + A - P) >> 2) & 0xff |
4421 | pub const R_CKCORE_PCRELIMM8BY4: u32 = 2; |
4422 | /// disp ((S + A - P) >> 1) & 0x7ff |
4423 | pub const R_CKCORE_PCRELIMM11BY2: u32 = 3; |
4424 | /// 32-bit rel (S + A - P) |
4425 | pub const R_CKCORE_PCREL32: u32 = 5; |
4426 | /// disp ((S + A - P) >>1) & 0x7ff |
4427 | pub const R_CKCORE_PCRELJSR_IMM11BY2: u32 = 6; |
4428 | /// 32 bit adjust program base(B + A) |
4429 | pub const R_CKCORE_RELATIVE: u32 = 9; |
4430 | /// 32 bit adjust by program base |
4431 | pub const R_CKCORE_COPY: u32 = 10; |
4432 | /// off between got and sym (S) |
4433 | pub const R_CKCORE_GLOB_DAT: u32 = 11; |
4434 | /// PLT entry (S) |
4435 | pub const R_CKCORE_JUMP_SLOT: u32 = 12; |
4436 | /// offset to GOT (S + A - GOT) |
4437 | pub const R_CKCORE_GOTOFF: u32 = 13; |
4438 | /// PC offset to GOT (GOT + A - P) |
4439 | pub const R_CKCORE_GOTPC: u32 = 14; |
4440 | /// 32 bit GOT entry (G) |
4441 | pub const R_CKCORE_GOT32: u32 = 15; |
4442 | /// 32 bit PLT entry (G) |
4443 | pub const R_CKCORE_PLT32: u32 = 16; |
4444 | /// GOT entry in GLOB_DAT (GOT + G) |
4445 | pub const R_CKCORE_ADDRGOT: u32 = 17; |
4446 | /// PLT entry in GLOB_DAT (GOT + G) |
4447 | pub const R_CKCORE_ADDRPLT: u32 = 18; |
4448 | /// ((S + A - P) >> 1) & 0x3ff_ffff |
4449 | pub const R_CKCORE_PCREL_IMM26BY2: u32 = 19; |
4450 | /// disp ((S + A - P) >> 1) & 0xffff |
4451 | pub const R_CKCORE_PCREL_IMM16BY2: u32 = 20; |
4452 | /// disp ((S + A - P) >> 2) & 0xffff |
4453 | pub const R_CKCORE_PCREL_IMM16BY4: u32 = 21; |
4454 | /// disp ((S + A - P) >> 1) & 0x3ff |
4455 | pub const R_CKCORE_PCREL_IMM10BY2: u32 = 22; |
4456 | /// disp ((S + A - P) >> 2) & 0x3ff |
4457 | pub const R_CKCORE_PCREL_IMM10BY4: u32 = 23; |
4458 | /// high & low 16 bit ADDR, ((S + A) >> 16) & 0xffff |
4459 | pub const R_CKCORE_ADDR_HI16: u32 = 24; |
4460 | /// (S + A) & 0xffff |
4461 | pub const R_CKCORE_ADDR_LO16: u32 = 25; |
4462 | /// high & low 16 bit GOTPC, ((GOT + A - P) >> 16) & 0xffff |
4463 | pub const R_CKCORE_GOTPC_HI16: u32 = 26; |
4464 | /// (GOT + A - P) & 0xffff |
4465 | pub const R_CKCORE_GOTPC_LO16: u32 = 27; |
4466 | /// high & low 16 bit GOTOFF, ((S + A - GOT) >> 16) & 0xffff |
4467 | pub const R_CKCORE_GOTOFF_HI16: u32 = 28; |
4468 | /// (S + A - GOT) & 0xffff |
4469 | pub const R_CKCORE_GOTOFF_LO16: u32 = 29; |
4470 | /// 12 bit disp GOT entry (G) |
4471 | pub const R_CKCORE_GOT12: u32 = 30; |
4472 | /// high & low 16 bit GOT, (G >> 16) & 0xffff |
4473 | pub const R_CKCORE_GOT_HI16: u32 = 31; |
4474 | /// (G & 0xffff) |
4475 | pub const R_CKCORE_GOT_LO16: u32 = 32; |
4476 | /// 12 bit disp PLT entry (G) |
4477 | pub const R_CKCORE_PLT12: u32 = 33; |
4478 | /// high & low 16 bit PLT, (G >> 16) & 0xffff |
4479 | pub const R_CKCORE_PLT_HI16: u32 = 34; |
4480 | /// G & 0xffff |
4481 | pub const R_CKCORE_PLT_LO16: u32 = 35; |
4482 | /// high & low 16 bit ADDRGOT, (GOT + G * 4) & 0xffff |
4483 | pub const R_CKCORE_ADDRGOT_HI16: u32 = 36; |
4484 | /// (GOT + G * 4) & 0xffff |
4485 | pub const R_CKCORE_ADDRGOT_LO16: u32 = 37; |
4486 | /// high & low 16 bit ADDRPLT, ((GOT + G * 4) >> 16) & 0xFFFF |
4487 | pub const R_CKCORE_ADDRPLT_HI16: u32 = 38; |
4488 | /// (GOT+G*4) & 0xffff |
4489 | pub const R_CKCORE_ADDRPLT_LO16: u32 = 39; |
4490 | /// disp ((S+A-P) >>1) & x3ff_ffff |
4491 | pub const R_CKCORE_PCREL_JSR_IMM26BY2: u32 = 40; |
4492 | /// (S+A-BTEXT) & 0xffff |
4493 | pub const R_CKCORE_TOFFSET_LO16: u32 = 41; |
4494 | /// (S+A-BTEXT) & 0xffff |
4495 | pub const R_CKCORE_DOFFSET_LO16: u32 = 42; |
4496 | /// disp ((S+A-P) >>1) & 0x3ffff |
4497 | pub const R_CKCORE_PCREL_IMM18BY2: u32 = 43; |
4498 | /// disp (S+A-BDATA) & 0x3ffff |
4499 | pub const R_CKCORE_DOFFSET_IMM18: u32 = 44; |
4500 | /// disp ((S+A-BDATA)>>1) & 0x3ffff |
4501 | pub const R_CKCORE_DOFFSET_IMM18BY2: u32 = 45; |
4502 | /// disp ((S+A-BDATA)>>2) & 0x3ffff |
4503 | pub const R_CKCORE_DOFFSET_IMM18BY4: u32 = 46; |
4504 | /// disp (G >> 2) |
4505 | pub const R_CKCORE_GOT_IMM18BY4: u32 = 48; |
4506 | /// disp (G >> 2) |
4507 | pub const R_CKCORE_PLT_IMM18BY4: u32 = 49; |
4508 | /// disp ((S+A-P) >>2) & 0x7f |
4509 | pub const R_CKCORE_PCREL_IMM7BY4: u32 = 50; |
4510 | /// 32 bit offset to TLS block |
4511 | pub const R_CKCORE_TLS_LE32: u32 = 51; |
4512 | pub const R_CKCORE_TLS_IE32: u32 = 52; |
4513 | pub const R_CKCORE_TLS_GD32: u32 = 53; |
4514 | pub const R_CKCORE_TLS_LDM32: u32 = 54; |
4515 | pub const R_CKCORE_TLS_LDO32: u32 = 55; |
4516 | pub const R_CKCORE_TLS_DTPMOD32: u32 = 56; |
4517 | pub const R_CKCORE_TLS_DTPOFF32: u32 = 57; |
4518 | pub const R_CKCORE_TLS_TPOFF32: u32 = 58; |
4519 | |
4520 | // C-SKY values for `FileHeader*::e_flags`. |
4521 | pub const EF_CSKY_ABIMASK: u32 = 0xF000_0000; |
4522 | pub const EF_CSKY_OTHER: u32 = 0x0FFF_0000; |
4523 | pub const EF_CSKY_PROCESSOR: u32 = 0x0000_FFFF; |
4524 | |
4525 | pub const EF_CSKY_ABIV1: u32 = 0x1000_0000; |
4526 | pub const EF_CSKY_ABIV2: u32 = 0x2000_0000; |
4527 | |
4528 | // C-SKY values for `SectionHeader*::sh_type`. |
4529 | /// C-SKY attributes section. |
4530 | pub const SHT_CSKY_ATTRIBUTES: u32 = SHT_LOPROC + 1; |
4531 | |
4532 | // IA-64 specific declarations. |
4533 | |
4534 | // IA-64 values for `FileHeader64::e_flags`. |
4535 | /// os-specific flags |
4536 | pub const EF_IA_64_MASKOS: u32 = 0x0000_000f; |
4537 | /// 64-bit ABI |
4538 | pub const EF_IA_64_ABI64: u32 = 0x0000_0010; |
4539 | /// arch. version mask |
4540 | pub const EF_IA_64_ARCH: u32 = 0xff00_0000; |
4541 | |
4542 | // IA-64 values for `ProgramHeader64::p_type`. |
4543 | /// arch extension bits |
4544 | pub const PT_IA_64_ARCHEXT: u32 = PT_LOPROC + 0; |
4545 | /// ia64 unwind bits |
4546 | pub const PT_IA_64_UNWIND: u32 = PT_LOPROC + 1; |
4547 | pub const PT_IA_64_HP_OPT_ANOT: u32 = PT_LOOS + 0x12; |
4548 | pub const PT_IA_64_HP_HSL_ANOT: u32 = PT_LOOS + 0x13; |
4549 | pub const PT_IA_64_HP_STACK: u32 = PT_LOOS + 0x14; |
4550 | |
4551 | // IA-64 values for `ProgramHeader64::p_flags`. |
4552 | /// spec insns w/o recovery |
4553 | pub const PF_IA_64_NORECOV: u32 = 0x8000_0000; |
4554 | |
4555 | // IA-64 values for `SectionHeader64::sh_type`. |
4556 | /// extension bits |
4557 | pub const SHT_IA_64_EXT: u32 = SHT_LOPROC + 0; |
4558 | /// unwind bits |
4559 | pub const SHT_IA_64_UNWIND: u32 = SHT_LOPROC + 1; |
4560 | |
4561 | // IA-64 values for `SectionHeader64::sh_flags`. |
4562 | /// section near gp |
4563 | pub const SHF_IA_64_SHORT: u32 = 0x1000_0000; |
4564 | /// spec insns w/o recovery |
4565 | pub const SHF_IA_64_NORECOV: u32 = 0x2000_0000; |
4566 | |
4567 | // IA-64 values for `Dyn64::d_tag`. |
4568 | pub const DT_IA_64_PLT_RESERVE: u32 = DT_LOPROC + 0; |
4569 | |
4570 | // IA-64 values for `Rel*::r_type`. |
4571 | /// none |
4572 | pub const R_IA64_NONE: u32 = 0x00; |
4573 | /// symbol + addend, add imm14 |
4574 | pub const R_IA64_IMM14: u32 = 0x21; |
4575 | /// symbol + addend, add imm22 |
4576 | pub const R_IA64_IMM22: u32 = 0x22; |
4577 | /// symbol + addend, mov imm64 |
4578 | pub const R_IA64_IMM64: u32 = 0x23; |
4579 | /// symbol + addend, data4 MSB |
4580 | pub const R_IA64_DIR32MSB: u32 = 0x24; |
4581 | /// symbol + addend, data4 LSB |
4582 | pub const R_IA64_DIR32LSB: u32 = 0x25; |
4583 | /// symbol + addend, data8 MSB |
4584 | pub const R_IA64_DIR64MSB: u32 = 0x26; |
4585 | /// symbol + addend, data8 LSB |
4586 | pub const R_IA64_DIR64LSB: u32 = 0x27; |
4587 | /// @gprel(sym + add), add imm22 |
4588 | pub const R_IA64_GPREL22: u32 = 0x2a; |
4589 | /// @gprel(sym + add), mov imm64 |
4590 | pub const R_IA64_GPREL64I: u32 = 0x2b; |
4591 | /// @gprel(sym + add), data4 MSB |
4592 | pub const R_IA64_GPREL32MSB: u32 = 0x2c; |
4593 | /// @gprel(sym + add), data4 LSB |
4594 | pub const R_IA64_GPREL32LSB: u32 = 0x2d; |
4595 | /// @gprel(sym + add), data8 MSB |
4596 | pub const R_IA64_GPREL64MSB: u32 = 0x2e; |
4597 | /// @gprel(sym + add), data8 LSB |
4598 | pub const R_IA64_GPREL64LSB: u32 = 0x2f; |
4599 | /// @ltoff(sym + add), add imm22 |
4600 | pub const R_IA64_LTOFF22: u32 = 0x32; |
4601 | /// @ltoff(sym + add), mov imm64 |
4602 | pub const R_IA64_LTOFF64I: u32 = 0x33; |
4603 | /// @pltoff(sym + add), add imm22 |
4604 | pub const R_IA64_PLTOFF22: u32 = 0x3a; |
4605 | /// @pltoff(sym + add), mov imm64 |
4606 | pub const R_IA64_PLTOFF64I: u32 = 0x3b; |
4607 | /// @pltoff(sym + add), data8 MSB |
4608 | pub const R_IA64_PLTOFF64MSB: u32 = 0x3e; |
4609 | /// @pltoff(sym + add), data8 LSB |
4610 | pub const R_IA64_PLTOFF64LSB: u32 = 0x3f; |
4611 | /// @fptr(sym + add), mov imm64 |
4612 | pub const R_IA64_FPTR64I: u32 = 0x43; |
4613 | /// @fptr(sym + add), data4 MSB |
4614 | pub const R_IA64_FPTR32MSB: u32 = 0x44; |
4615 | /// @fptr(sym + add), data4 LSB |
4616 | pub const R_IA64_FPTR32LSB: u32 = 0x45; |
4617 | /// @fptr(sym + add), data8 MSB |
4618 | pub const R_IA64_FPTR64MSB: u32 = 0x46; |
4619 | /// @fptr(sym + add), data8 LSB |
4620 | pub const R_IA64_FPTR64LSB: u32 = 0x47; |
4621 | /// @pcrel(sym + add), brl |
4622 | pub const R_IA64_PCREL60B: u32 = 0x48; |
4623 | /// @pcrel(sym + add), ptb, call |
4624 | pub const R_IA64_PCREL21B: u32 = 0x49; |
4625 | /// @pcrel(sym + add), chk.s |
4626 | pub const R_IA64_PCREL21M: u32 = 0x4a; |
4627 | /// @pcrel(sym + add), fchkf |
4628 | pub const R_IA64_PCREL21F: u32 = 0x4b; |
4629 | /// @pcrel(sym + add), data4 MSB |
4630 | pub const R_IA64_PCREL32MSB: u32 = 0x4c; |
4631 | /// @pcrel(sym + add), data4 LSB |
4632 | pub const R_IA64_PCREL32LSB: u32 = 0x4d; |
4633 | /// @pcrel(sym + add), data8 MSB |
4634 | pub const R_IA64_PCREL64MSB: u32 = 0x4e; |
4635 | /// @pcrel(sym + add), data8 LSB |
4636 | pub const R_IA64_PCREL64LSB: u32 = 0x4f; |
4637 | /// @ltoff(@fptr(s+a)), imm22 |
4638 | pub const R_IA64_LTOFF_FPTR22: u32 = 0x52; |
4639 | /// @ltoff(@fptr(s+a)), imm64 |
4640 | pub const R_IA64_LTOFF_FPTR64I: u32 = 0x53; |
4641 | /// @ltoff(@fptr(s+a)), data4 MSB |
4642 | pub const R_IA64_LTOFF_FPTR32MSB: u32 = 0x54; |
4643 | /// @ltoff(@fptr(s+a)), data4 LSB |
4644 | pub const R_IA64_LTOFF_FPTR32LSB: u32 = 0x55; |
4645 | /// @ltoff(@fptr(s+a)), data8 MSB |
4646 | pub const R_IA64_LTOFF_FPTR64MSB: u32 = 0x56; |
4647 | /// @ltoff(@fptr(s+a)), data8 LSB |
4648 | pub const R_IA64_LTOFF_FPTR64LSB: u32 = 0x57; |
4649 | /// @segrel(sym + add), data4 MSB |
4650 | pub const R_IA64_SEGREL32MSB: u32 = 0x5c; |
4651 | /// @segrel(sym + add), data4 LSB |
4652 | pub const R_IA64_SEGREL32LSB: u32 = 0x5d; |
4653 | /// @segrel(sym + add), data8 MSB |
4654 | pub const R_IA64_SEGREL64MSB: u32 = 0x5e; |
4655 | /// @segrel(sym + add), data8 LSB |
4656 | pub const R_IA64_SEGREL64LSB: u32 = 0x5f; |
4657 | /// @secrel(sym + add), data4 MSB |
4658 | pub const R_IA64_SECREL32MSB: u32 = 0x64; |
4659 | /// @secrel(sym + add), data4 LSB |
4660 | pub const R_IA64_SECREL32LSB: u32 = 0x65; |
4661 | /// @secrel(sym + add), data8 MSB |
4662 | pub const R_IA64_SECREL64MSB: u32 = 0x66; |
4663 | /// @secrel(sym + add), data8 LSB |
4664 | pub const R_IA64_SECREL64LSB: u32 = 0x67; |
4665 | /// data 4 + REL |
4666 | pub const R_IA64_REL32MSB: u32 = 0x6c; |
4667 | /// data 4 + REL |
4668 | pub const R_IA64_REL32LSB: u32 = 0x6d; |
4669 | /// data 8 + REL |
4670 | pub const R_IA64_REL64MSB: u32 = 0x6e; |
4671 | /// data 8 + REL |
4672 | pub const R_IA64_REL64LSB: u32 = 0x6f; |
4673 | /// symbol + addend, data4 MSB |
4674 | pub const R_IA64_LTV32MSB: u32 = 0x74; |
4675 | /// symbol + addend, data4 LSB |
4676 | pub const R_IA64_LTV32LSB: u32 = 0x75; |
4677 | /// symbol + addend, data8 MSB |
4678 | pub const R_IA64_LTV64MSB: u32 = 0x76; |
4679 | /// symbol + addend, data8 LSB |
4680 | pub const R_IA64_LTV64LSB: u32 = 0x77; |
4681 | /// @pcrel(sym + add), 21bit inst |
4682 | pub const R_IA64_PCREL21BI: u32 = 0x79; |
4683 | /// @pcrel(sym + add), 22bit inst |
4684 | pub const R_IA64_PCREL22: u32 = 0x7a; |
4685 | /// @pcrel(sym + add), 64bit inst |
4686 | pub const R_IA64_PCREL64I: u32 = 0x7b; |
4687 | /// dynamic reloc, imported PLT, MSB |
4688 | pub const R_IA64_IPLTMSB: u32 = 0x80; |
4689 | /// dynamic reloc, imported PLT, LSB |
4690 | pub const R_IA64_IPLTLSB: u32 = 0x81; |
4691 | /// copy relocation |
4692 | pub const R_IA64_COPY: u32 = 0x84; |
4693 | /// Addend and symbol difference |
4694 | pub const R_IA64_SUB: u32 = 0x85; |
4695 | /// LTOFF22, relaxable. |
4696 | pub const R_IA64_LTOFF22X: u32 = 0x86; |
4697 | /// Use of LTOFF22X. |
4698 | pub const R_IA64_LDXMOV: u32 = 0x87; |
4699 | /// @tprel(sym + add), imm14 |
4700 | pub const R_IA64_TPREL14: u32 = 0x91; |
4701 | /// @tprel(sym + add), imm22 |
4702 | pub const R_IA64_TPREL22: u32 = 0x92; |
4703 | /// @tprel(sym + add), imm64 |
4704 | pub const R_IA64_TPREL64I: u32 = 0x93; |
4705 | /// @tprel(sym + add), data8 MSB |
4706 | pub const R_IA64_TPREL64MSB: u32 = 0x96; |
4707 | /// @tprel(sym + add), data8 LSB |
4708 | pub const R_IA64_TPREL64LSB: u32 = 0x97; |
4709 | /// @ltoff(@tprel(s+a)), imm2 |
4710 | pub const R_IA64_LTOFF_TPREL22: u32 = 0x9a; |
4711 | /// @dtpmod(sym + add), data8 MSB |
4712 | pub const R_IA64_DTPMOD64MSB: u32 = 0xa6; |
4713 | /// @dtpmod(sym + add), data8 LSB |
4714 | pub const R_IA64_DTPMOD64LSB: u32 = 0xa7; |
4715 | /// @ltoff(@dtpmod(sym + add)), imm22 |
4716 | pub const R_IA64_LTOFF_DTPMOD22: u32 = 0xaa; |
4717 | /// @dtprel(sym + add), imm14 |
4718 | pub const R_IA64_DTPREL14: u32 = 0xb1; |
4719 | /// @dtprel(sym + add), imm22 |
4720 | pub const R_IA64_DTPREL22: u32 = 0xb2; |
4721 | /// @dtprel(sym + add), imm64 |
4722 | pub const R_IA64_DTPREL64I: u32 = 0xb3; |
4723 | /// @dtprel(sym + add), data4 MSB |
4724 | pub const R_IA64_DTPREL32MSB: u32 = 0xb4; |
4725 | /// @dtprel(sym + add), data4 LSB |
4726 | pub const R_IA64_DTPREL32LSB: u32 = 0xb5; |
4727 | /// @dtprel(sym + add), data8 MSB |
4728 | pub const R_IA64_DTPREL64MSB: u32 = 0xb6; |
4729 | /// @dtprel(sym + add), data8 LSB |
4730 | pub const R_IA64_DTPREL64LSB: u32 = 0xb7; |
4731 | /// @ltoff(@dtprel(s+a)), imm22 |
4732 | pub const R_IA64_LTOFF_DTPREL22: u32 = 0xba; |
4733 | |
4734 | // SH specific declarations. |
4735 | |
4736 | // SH values `FileHeader*::e_flags`. |
4737 | pub const EF_SH_MACH_MASK: u32 = 0x1f; |
4738 | pub const EF_SH_UNKNOWN: u32 = 0x0; |
4739 | pub const EF_SH1: u32 = 0x1; |
4740 | pub const EF_SH2: u32 = 0x2; |
4741 | pub const EF_SH3: u32 = 0x3; |
4742 | pub const EF_SH_DSP: u32 = 0x4; |
4743 | pub const EF_SH3_DSP: u32 = 0x5; |
4744 | pub const EF_SH4AL_DSP: u32 = 0x6; |
4745 | pub const EF_SH3E: u32 = 0x8; |
4746 | pub const EF_SH4: u32 = 0x9; |
4747 | pub const EF_SH2E: u32 = 0xb; |
4748 | pub const EF_SH4A: u32 = 0xc; |
4749 | pub const EF_SH2A: u32 = 0xd; |
4750 | pub const EF_SH4_NOFPU: u32 = 0x10; |
4751 | pub const EF_SH4A_NOFPU: u32 = 0x11; |
4752 | pub const EF_SH4_NOMMU_NOFPU: u32 = 0x12; |
4753 | pub const EF_SH2A_NOFPU: u32 = 0x13; |
4754 | pub const EF_SH3_NOMMU: u32 = 0x14; |
4755 | pub const EF_SH2A_SH4_NOFPU: u32 = 0x15; |
4756 | pub const EF_SH2A_SH3_NOFPU: u32 = 0x16; |
4757 | pub const EF_SH2A_SH4: u32 = 0x17; |
4758 | pub const EF_SH2A_SH3E: u32 = 0x18; |
4759 | |
4760 | // SH values `Rel*::r_type`. |
4761 | pub const R_SH_NONE: u32 = 0; |
4762 | pub const R_SH_DIR32: u32 = 1; |
4763 | pub const R_SH_REL32: u32 = 2; |
4764 | pub const R_SH_DIR8WPN: u32 = 3; |
4765 | pub const R_SH_IND12W: u32 = 4; |
4766 | pub const R_SH_DIR8WPL: u32 = 5; |
4767 | pub const R_SH_DIR8WPZ: u32 = 6; |
4768 | pub const R_SH_DIR8BP: u32 = 7; |
4769 | pub const R_SH_DIR8W: u32 = 8; |
4770 | pub const R_SH_DIR8L: u32 = 9; |
4771 | pub const R_SH_SWITCH16: u32 = 25; |
4772 | pub const R_SH_SWITCH32: u32 = 26; |
4773 | pub const R_SH_USES: u32 = 27; |
4774 | pub const R_SH_COUNT: u32 = 28; |
4775 | pub const R_SH_ALIGN: u32 = 29; |
4776 | pub const R_SH_CODE: u32 = 30; |
4777 | pub const R_SH_DATA: u32 = 31; |
4778 | pub const R_SH_LABEL: u32 = 32; |
4779 | pub const R_SH_SWITCH8: u32 = 33; |
4780 | pub const R_SH_GNU_VTINHERIT: u32 = 34; |
4781 | pub const R_SH_GNU_VTENTRY: u32 = 35; |
4782 | pub const R_SH_TLS_GD_32: u32 = 144; |
4783 | pub const R_SH_TLS_LD_32: u32 = 145; |
4784 | pub const R_SH_TLS_LDO_32: u32 = 146; |
4785 | pub const R_SH_TLS_IE_32: u32 = 147; |
4786 | pub const R_SH_TLS_LE_32: u32 = 148; |
4787 | pub const R_SH_TLS_DTPMOD32: u32 = 149; |
4788 | pub const R_SH_TLS_DTPOFF32: u32 = 150; |
4789 | pub const R_SH_TLS_TPOFF32: u32 = 151; |
4790 | pub const R_SH_GOT32: u32 = 160; |
4791 | pub const R_SH_PLT32: u32 = 161; |
4792 | pub const R_SH_COPY: u32 = 162; |
4793 | pub const R_SH_GLOB_DAT: u32 = 163; |
4794 | pub const R_SH_JMP_SLOT: u32 = 164; |
4795 | pub const R_SH_RELATIVE: u32 = 165; |
4796 | pub const R_SH_GOTOFF: u32 = 166; |
4797 | pub const R_SH_GOTPC: u32 = 167; |
4798 | |
4799 | // S/390 specific definitions. |
4800 | |
4801 | // S/390 values `FileHeader*::e_flags`. |
4802 | |
4803 | /// High GPRs kernel facility needed. |
4804 | pub const EF_S390_HIGH_GPRS: u32 = 0x0000_0001; |
4805 | |
4806 | // S/390 values `Rel*::r_type`. |
4807 | |
4808 | /// No reloc. |
4809 | pub const R_390_NONE: u32 = 0; |
4810 | /// Direct 8 bit. |
4811 | pub const R_390_8: u32 = 1; |
4812 | /// Direct 12 bit. |
4813 | pub const R_390_12: u32 = 2; |
4814 | /// Direct 16 bit. |
4815 | pub const R_390_16: u32 = 3; |
4816 | /// Direct 32 bit. |
4817 | pub const R_390_32: u32 = 4; |
4818 | /// PC relative 32 bit. |
4819 | pub const R_390_PC32: u32 = 5; |
4820 | /// 12 bit GOT offset. |
4821 | pub const R_390_GOT12: u32 = 6; |
4822 | /// 32 bit GOT offset. |
4823 | pub const R_390_GOT32: u32 = 7; |
4824 | /// 32 bit PC relative PLT address. |
4825 | pub const R_390_PLT32: u32 = 8; |
4826 | /// Copy symbol at runtime. |
4827 | pub const R_390_COPY: u32 = 9; |
4828 | /// Create GOT entry. |
4829 | pub const R_390_GLOB_DAT: u32 = 10; |
4830 | /// Create PLT entry. |
4831 | pub const R_390_JMP_SLOT: u32 = 11; |
4832 | /// Adjust by program base. |
4833 | pub const R_390_RELATIVE: u32 = 12; |
4834 | /// 32 bit offset to GOT. |
4835 | pub const R_390_GOTOFF32: u32 = 13; |
4836 | /// 32 bit PC relative offset to GOT. |
4837 | pub const R_390_GOTPC: u32 = 14; |
4838 | /// 16 bit GOT offset. |
4839 | pub const R_390_GOT16: u32 = 15; |
4840 | /// PC relative 16 bit. |
4841 | pub const R_390_PC16: u32 = 16; |
4842 | /// PC relative 16 bit shifted by 1. |
4843 | pub const R_390_PC16DBL: u32 = 17; |
4844 | /// 16 bit PC rel. PLT shifted by 1. |
4845 | pub const R_390_PLT16DBL: u32 = 18; |
4846 | /// PC relative 32 bit shifted by 1. |
4847 | pub const R_390_PC32DBL: u32 = 19; |
4848 | /// 32 bit PC rel. PLT shifted by 1. |
4849 | pub const R_390_PLT32DBL: u32 = 20; |
4850 | /// 32 bit PC rel. GOT shifted by 1. |
4851 | pub const R_390_GOTPCDBL: u32 = 21; |
4852 | /// Direct 64 bit. |
4853 | pub const R_390_64: u32 = 22; |
4854 | /// PC relative 64 bit. |
4855 | pub const R_390_PC64: u32 = 23; |
4856 | /// 64 bit GOT offset. |
4857 | pub const R_390_GOT64: u32 = 24; |
4858 | /// 64 bit PC relative PLT address. |
4859 | pub const R_390_PLT64: u32 = 25; |
4860 | /// 32 bit PC rel. to GOT entry >> 1. |
4861 | pub const R_390_GOTENT: u32 = 26; |
4862 | /// 16 bit offset to GOT. |
4863 | pub const R_390_GOTOFF16: u32 = 27; |
4864 | /// 64 bit offset to GOT. |
4865 | pub const R_390_GOTOFF64: u32 = 28; |
4866 | /// 12 bit offset to jump slot. |
4867 | pub const R_390_GOTPLT12: u32 = 29; |
4868 | /// 16 bit offset to jump slot. |
4869 | pub const R_390_GOTPLT16: u32 = 30; |
4870 | /// 32 bit offset to jump slot. |
4871 | pub const R_390_GOTPLT32: u32 = 31; |
4872 | /// 64 bit offset to jump slot. |
4873 | pub const R_390_GOTPLT64: u32 = 32; |
4874 | /// 32 bit rel. offset to jump slot. |
4875 | pub const R_390_GOTPLTENT: u32 = 33; |
4876 | /// 16 bit offset from GOT to PLT. |
4877 | pub const R_390_PLTOFF16: u32 = 34; |
4878 | /// 32 bit offset from GOT to PLT. |
4879 | pub const R_390_PLTOFF32: u32 = 35; |
4880 | /// 16 bit offset from GOT to PLT. |
4881 | pub const R_390_PLTOFF64: u32 = 36; |
4882 | /// Tag for load insn in TLS code. |
4883 | pub const R_390_TLS_LOAD: u32 = 37; |
4884 | /// Tag for function call in general dynamic TLS code. |
4885 | pub const R_390_TLS_GDCALL: u32 = 38; |
4886 | /// Tag for function call in local dynamic TLS code. |
4887 | pub const R_390_TLS_LDCALL: u32 = 39; |
4888 | /// Direct 32 bit for general dynamic thread local data. |
4889 | pub const R_390_TLS_GD32: u32 = 40; |
4890 | /// Direct 64 bit for general dynamic thread local data. |
4891 | pub const R_390_TLS_GD64: u32 = 41; |
4892 | /// 12 bit GOT offset for static TLS block offset. |
4893 | pub const R_390_TLS_GOTIE12: u32 = 42; |
4894 | /// 32 bit GOT offset for static TLS block offset. |
4895 | pub const R_390_TLS_GOTIE32: u32 = 43; |
4896 | /// 64 bit GOT offset for static TLS block offset. |
4897 | pub const R_390_TLS_GOTIE64: u32 = 44; |
4898 | /// Direct 32 bit for local dynamic thread local data in LE code. |
4899 | pub const R_390_TLS_LDM32: u32 = 45; |
4900 | /// Direct 64 bit for local dynamic thread local data in LE code. |
4901 | pub const R_390_TLS_LDM64: u32 = 46; |
4902 | /// 32 bit address of GOT entry for negated static TLS block offset. |
4903 | pub const R_390_TLS_IE32: u32 = 47; |
4904 | /// 64 bit address of GOT entry for negated static TLS block offset. |
4905 | pub const R_390_TLS_IE64: u32 = 48; |
4906 | /// 32 bit rel. offset to GOT entry for negated static TLS block offset. |
4907 | pub const R_390_TLS_IEENT: u32 = 49; |
4908 | /// 32 bit negated offset relative to static TLS block. |
4909 | pub const R_390_TLS_LE32: u32 = 50; |
4910 | /// 64 bit negated offset relative to static TLS block. |
4911 | pub const R_390_TLS_LE64: u32 = 51; |
4912 | /// 32 bit offset relative to TLS block. |
4913 | pub const R_390_TLS_LDO32: u32 = 52; |
4914 | /// 64 bit offset relative to TLS block. |
4915 | pub const R_390_TLS_LDO64: u32 = 53; |
4916 | /// ID of module containing symbol. |
4917 | pub const R_390_TLS_DTPMOD: u32 = 54; |
4918 | /// Offset in TLS block. |
4919 | pub const R_390_TLS_DTPOFF: u32 = 55; |
4920 | /// Negated offset in static TLS block. |
4921 | pub const R_390_TLS_TPOFF: u32 = 56; |
4922 | /// Direct 20 bit. |
4923 | pub const R_390_20: u32 = 57; |
4924 | /// 20 bit GOT offset. |
4925 | pub const R_390_GOT20: u32 = 58; |
4926 | /// 20 bit offset to jump slot. |
4927 | pub const R_390_GOTPLT20: u32 = 59; |
4928 | /// 20 bit GOT offset for static TLS block offset. |
4929 | pub const R_390_TLS_GOTIE20: u32 = 60; |
4930 | /// STT_GNU_IFUNC relocation. |
4931 | pub const R_390_IRELATIVE: u32 = 61; |
4932 | |
4933 | // CRIS values `Rel*::r_type`. |
4934 | pub const R_CRIS_NONE: u32 = 0; |
4935 | pub const R_CRIS_8: u32 = 1; |
4936 | pub const R_CRIS_16: u32 = 2; |
4937 | pub const R_CRIS_32: u32 = 3; |
4938 | pub const R_CRIS_8_PCREL: u32 = 4; |
4939 | pub const R_CRIS_16_PCREL: u32 = 5; |
4940 | pub const R_CRIS_32_PCREL: u32 = 6; |
4941 | pub const R_CRIS_GNU_VTINHERIT: u32 = 7; |
4942 | pub const R_CRIS_GNU_VTENTRY: u32 = 8; |
4943 | pub const R_CRIS_COPY: u32 = 9; |
4944 | pub const R_CRIS_GLOB_DAT: u32 = 10; |
4945 | pub const R_CRIS_JUMP_SLOT: u32 = 11; |
4946 | pub const R_CRIS_RELATIVE: u32 = 12; |
4947 | pub const R_CRIS_16_GOT: u32 = 13; |
4948 | pub const R_CRIS_32_GOT: u32 = 14; |
4949 | pub const R_CRIS_16_GOTPLT: u32 = 15; |
4950 | pub const R_CRIS_32_GOTPLT: u32 = 16; |
4951 | pub const R_CRIS_32_GOTREL: u32 = 17; |
4952 | pub const R_CRIS_32_PLT_GOTREL: u32 = 18; |
4953 | pub const R_CRIS_32_PLT_PCREL: u32 = 19; |
4954 | |
4955 | // AMD x86-64 values `Rel*::r_type`. |
4956 | /// No reloc |
4957 | pub const R_X86_64_NONE: u32 = 0; |
4958 | /// Direct 64 bit |
4959 | pub const R_X86_64_64: u32 = 1; |
4960 | /// PC relative 32 bit signed |
4961 | pub const R_X86_64_PC32: u32 = 2; |
4962 | /// 32 bit GOT entry |
4963 | pub const R_X86_64_GOT32: u32 = 3; |
4964 | /// 32 bit PLT address |
4965 | pub const R_X86_64_PLT32: u32 = 4; |
4966 | /// Copy symbol at runtime |
4967 | pub const R_X86_64_COPY: u32 = 5; |
4968 | /// Create GOT entry |
4969 | pub const R_X86_64_GLOB_DAT: u32 = 6; |
4970 | /// Create PLT entry |
4971 | pub const R_X86_64_JUMP_SLOT: u32 = 7; |
4972 | /// Adjust by program base |
4973 | pub const R_X86_64_RELATIVE: u32 = 8; |
4974 | /// 32 bit signed PC relative offset to GOT |
4975 | pub const R_X86_64_GOTPCREL: u32 = 9; |
4976 | /// Direct 32 bit zero extended |
4977 | pub const R_X86_64_32: u32 = 10; |
4978 | /// Direct 32 bit sign extended |
4979 | pub const R_X86_64_32S: u32 = 11; |
4980 | /// Direct 16 bit zero extended |
4981 | pub const R_X86_64_16: u32 = 12; |
4982 | /// 16 bit sign extended pc relative |
4983 | pub const R_X86_64_PC16: u32 = 13; |
4984 | /// Direct 8 bit sign extended |
4985 | pub const R_X86_64_8: u32 = 14; |
4986 | /// 8 bit sign extended pc relative |
4987 | pub const R_X86_64_PC8: u32 = 15; |
4988 | /// ID of module containing symbol |
4989 | pub const R_X86_64_DTPMOD64: u32 = 16; |
4990 | /// Offset in module's TLS block |
4991 | pub const R_X86_64_DTPOFF64: u32 = 17; |
4992 | /// Offset in initial TLS block |
4993 | pub const R_X86_64_TPOFF64: u32 = 18; |
4994 | /// 32 bit signed PC relative offset to two GOT entries for GD symbol |
4995 | pub const R_X86_64_TLSGD: u32 = 19; |
4996 | /// 32 bit signed PC relative offset to two GOT entries for LD symbol |
4997 | pub const R_X86_64_TLSLD: u32 = 20; |
4998 | /// Offset in TLS block |
4999 | pub const R_X86_64_DTPOFF32: u32 = 21; |
5000 | /// 32 bit signed PC relative offset to GOT entry for IE symbol |
5001 | pub const R_X86_64_GOTTPOFF: u32 = 22; |
5002 | /// Offset in initial TLS block |
5003 | pub const R_X86_64_TPOFF32: u32 = 23; |
5004 | /// PC relative 64 bit |
5005 | pub const R_X86_64_PC64: u32 = 24; |
5006 | /// 64 bit offset to GOT |
5007 | pub const R_X86_64_GOTOFF64: u32 = 25; |
5008 | /// 32 bit signed pc relative offset to GOT |
5009 | pub const R_X86_64_GOTPC32: u32 = 26; |
5010 | /// 64-bit GOT entry offset |
5011 | pub const R_X86_64_GOT64: u32 = 27; |
5012 | /// 64-bit PC relative offset to GOT entry |
5013 | pub const R_X86_64_GOTPCREL64: u32 = 28; |
5014 | /// 64-bit PC relative offset to GOT |
5015 | pub const R_X86_64_GOTPC64: u32 = 29; |
5016 | /// like GOT64, says PLT entry needed |
5017 | pub const R_X86_64_GOTPLT64: u32 = 30; |
5018 | /// 64-bit GOT relative offset to PLT entry |
5019 | pub const R_X86_64_PLTOFF64: u32 = 31; |
5020 | /// Size of symbol plus 32-bit addend |
5021 | pub const R_X86_64_SIZE32: u32 = 32; |
5022 | /// Size of symbol plus 64-bit addend |
5023 | pub const R_X86_64_SIZE64: u32 = 33; |
5024 | /// GOT offset for TLS descriptor. |
5025 | pub const R_X86_64_GOTPC32_TLSDESC: u32 = 34; |
5026 | /// Marker for call through TLS descriptor. |
5027 | pub const R_X86_64_TLSDESC_CALL: u32 = 35; |
5028 | /// TLS descriptor. |
5029 | pub const R_X86_64_TLSDESC: u32 = 36; |
5030 | /// Adjust indirectly by program base |
5031 | pub const R_X86_64_IRELATIVE: u32 = 37; |
5032 | /// 64-bit adjust by program base |
5033 | pub const R_X86_64_RELATIVE64: u32 = 38; |
5034 | // 39 Reserved was R_X86_64_PC32_BND |
5035 | // 40 Reserved was R_X86_64_PLT32_BND |
5036 | /// Load from 32 bit signed pc relative offset to GOT entry without REX prefix, relaxable. |
5037 | pub const R_X86_64_GOTPCRELX: u32 = 41; |
5038 | /// Load from 32 bit signed pc relative offset to GOT entry with REX prefix, relaxable. |
5039 | pub const R_X86_64_REX_GOTPCRELX: u32 = 42; |
5040 | |
5041 | // AMD x86-64 values `SectionHeader*::sh_type`. |
5042 | /// Unwind information. |
5043 | pub const SHT_X86_64_UNWIND: u32 = 0x7000_0001; |
5044 | |
5045 | // AM33 values `Rel*::r_type`. |
5046 | /// No reloc. |
5047 | pub const R_MN10300_NONE: u32 = 0; |
5048 | /// Direct 32 bit. |
5049 | pub const R_MN10300_32: u32 = 1; |
5050 | /// Direct 16 bit. |
5051 | pub const R_MN10300_16: u32 = 2; |
5052 | /// Direct 8 bit. |
5053 | pub const R_MN10300_8: u32 = 3; |
5054 | /// PC-relative 32-bit. |
5055 | pub const R_MN10300_PCREL32: u32 = 4; |
5056 | /// PC-relative 16-bit signed. |
5057 | pub const R_MN10300_PCREL16: u32 = 5; |
5058 | /// PC-relative 8-bit signed. |
5059 | pub const R_MN10300_PCREL8: u32 = 6; |
5060 | /// Ancient C++ vtable garbage... |
5061 | pub const R_MN10300_GNU_VTINHERIT: u32 = 7; |
5062 | /// ... collection annotation. |
5063 | pub const R_MN10300_GNU_VTENTRY: u32 = 8; |
5064 | /// Direct 24 bit. |
5065 | pub const R_MN10300_24: u32 = 9; |
5066 | /// 32-bit PCrel offset to GOT. |
5067 | pub const R_MN10300_GOTPC32: u32 = 10; |
5068 | /// 16-bit PCrel offset to GOT. |
5069 | pub const R_MN10300_GOTPC16: u32 = 11; |
5070 | /// 32-bit offset from GOT. |
5071 | pub const R_MN10300_GOTOFF32: u32 = 12; |
5072 | /// 24-bit offset from GOT. |
5073 | pub const R_MN10300_GOTOFF24: u32 = 13; |
5074 | /// 16-bit offset from GOT. |
5075 | pub const R_MN10300_GOTOFF16: u32 = 14; |
5076 | /// 32-bit PCrel to PLT entry. |
5077 | pub const R_MN10300_PLT32: u32 = 15; |
5078 | /// 16-bit PCrel to PLT entry. |
5079 | pub const R_MN10300_PLT16: u32 = 16; |
5080 | /// 32-bit offset to GOT entry. |
5081 | pub const R_MN10300_GOT32: u32 = 17; |
5082 | /// 24-bit offset to GOT entry. |
5083 | pub const R_MN10300_GOT24: u32 = 18; |
5084 | /// 16-bit offset to GOT entry. |
5085 | pub const R_MN10300_GOT16: u32 = 19; |
5086 | /// Copy symbol at runtime. |
5087 | pub const R_MN10300_COPY: u32 = 20; |
5088 | /// Create GOT entry. |
5089 | pub const R_MN10300_GLOB_DAT: u32 = 21; |
5090 | /// Create PLT entry. |
5091 | pub const R_MN10300_JMP_SLOT: u32 = 22; |
5092 | /// Adjust by program base. |
5093 | pub const R_MN10300_RELATIVE: u32 = 23; |
5094 | /// 32-bit offset for global dynamic. |
5095 | pub const R_MN10300_TLS_GD: u32 = 24; |
5096 | /// 32-bit offset for local dynamic. |
5097 | pub const R_MN10300_TLS_LD: u32 = 25; |
5098 | /// Module-relative offset. |
5099 | pub const R_MN10300_TLS_LDO: u32 = 26; |
5100 | /// GOT offset for static TLS block offset. |
5101 | pub const R_MN10300_TLS_GOTIE: u32 = 27; |
5102 | /// GOT address for static TLS block offset. |
5103 | pub const R_MN10300_TLS_IE: u32 = 28; |
5104 | /// Offset relative to static TLS block. |
5105 | pub const R_MN10300_TLS_LE: u32 = 29; |
5106 | /// ID of module containing symbol. |
5107 | pub const R_MN10300_TLS_DTPMOD: u32 = 30; |
5108 | /// Offset in module TLS block. |
5109 | pub const R_MN10300_TLS_DTPOFF: u32 = 31; |
5110 | /// Offset in static TLS block. |
5111 | pub const R_MN10300_TLS_TPOFF: u32 = 32; |
5112 | /// Adjustment for next reloc as needed by linker relaxation. |
5113 | pub const R_MN10300_SYM_DIFF: u32 = 33; |
5114 | /// Alignment requirement for linker relaxation. |
5115 | pub const R_MN10300_ALIGN: u32 = 34; |
5116 | |
5117 | // M32R values `Rel32::r_type`. |
5118 | /// No reloc. |
5119 | pub const R_M32R_NONE: u32 = 0; |
5120 | /// Direct 16 bit. |
5121 | pub const R_M32R_16: u32 = 1; |
5122 | /// Direct 32 bit. |
5123 | pub const R_M32R_32: u32 = 2; |
5124 | /// Direct 24 bit. |
5125 | pub const R_M32R_24: u32 = 3; |
5126 | /// PC relative 10 bit shifted. |
5127 | pub const R_M32R_10_PCREL: u32 = 4; |
5128 | /// PC relative 18 bit shifted. |
5129 | pub const R_M32R_18_PCREL: u32 = 5; |
5130 | /// PC relative 26 bit shifted. |
5131 | pub const R_M32R_26_PCREL: u32 = 6; |
5132 | /// High 16 bit with unsigned low. |
5133 | pub const R_M32R_HI16_ULO: u32 = 7; |
5134 | /// High 16 bit with signed low. |
5135 | pub const R_M32R_HI16_SLO: u32 = 8; |
5136 | /// Low 16 bit. |
5137 | pub const R_M32R_LO16: u32 = 9; |
5138 | /// 16 bit offset in SDA. |
5139 | pub const R_M32R_SDA16: u32 = 10; |
5140 | pub const R_M32R_GNU_VTINHERIT: u32 = 11; |
5141 | pub const R_M32R_GNU_VTENTRY: u32 = 12; |
5142 | // M32R values `Rela32::r_type`. |
5143 | /// Direct 16 bit. |
5144 | pub const R_M32R_16_RELA: u32 = 33; |
5145 | /// Direct 32 bit. |
5146 | pub const R_M32R_32_RELA: u32 = 34; |
5147 | /// Direct 24 bit. |
5148 | pub const R_M32R_24_RELA: u32 = 35; |
5149 | /// PC relative 10 bit shifted. |
5150 | pub const R_M32R_10_PCREL_RELA: u32 = 36; |
5151 | /// PC relative 18 bit shifted. |
5152 | pub const R_M32R_18_PCREL_RELA: u32 = 37; |
5153 | /// PC relative 26 bit shifted. |
5154 | pub const R_M32R_26_PCREL_RELA: u32 = 38; |
5155 | /// High 16 bit with unsigned low |
5156 | pub const R_M32R_HI16_ULO_RELA: u32 = 39; |
5157 | /// High 16 bit with signed low |
5158 | pub const R_M32R_HI16_SLO_RELA: u32 = 40; |
5159 | /// Low 16 bit |
5160 | pub const R_M32R_LO16_RELA: u32 = 41; |
5161 | /// 16 bit offset in SDA |
5162 | pub const R_M32R_SDA16_RELA: u32 = 42; |
5163 | pub const R_M32R_RELA_GNU_VTINHERIT: u32 = 43; |
5164 | pub const R_M32R_RELA_GNU_VTENTRY: u32 = 44; |
5165 | /// PC relative 32 bit. |
5166 | pub const R_M32R_REL32: u32 = 45; |
5167 | |
5168 | /// 24 bit GOT entry |
5169 | pub const R_M32R_GOT24: u32 = 48; |
5170 | /// 26 bit PC relative to PLT shifted |
5171 | pub const R_M32R_26_PLTREL: u32 = 49; |
5172 | /// Copy symbol at runtime |
5173 | pub const R_M32R_COPY: u32 = 50; |
5174 | /// Create GOT entry |
5175 | pub const R_M32R_GLOB_DAT: u32 = 51; |
5176 | /// Create PLT entry |
5177 | pub const R_M32R_JMP_SLOT: u32 = 52; |
5178 | /// Adjust by program base |
5179 | pub const R_M32R_RELATIVE: u32 = 53; |
5180 | /// 24 bit offset to GOT |
5181 | pub const R_M32R_GOTOFF: u32 = 54; |
5182 | /// 24 bit PC relative offset to GOT |
5183 | pub const R_M32R_GOTPC24: u32 = 55; |
5184 | /// High 16 bit GOT entry with unsigned low |
5185 | pub const R_M32R_GOT16_HI_ULO: u32 = 56; |
5186 | /// High 16 bit GOT entry with signed low |
5187 | pub const R_M32R_GOT16_HI_SLO: u32 = 57; |
5188 | /// Low 16 bit GOT entry |
5189 | pub const R_M32R_GOT16_LO: u32 = 58; |
5190 | /// High 16 bit PC relative offset to GOT with unsigned low |
5191 | pub const R_M32R_GOTPC_HI_ULO: u32 = 59; |
5192 | /// High 16 bit PC relative offset to GOT with signed low |
5193 | pub const R_M32R_GOTPC_HI_SLO: u32 = 60; |
5194 | /// Low 16 bit PC relative offset to GOT |
5195 | pub const R_M32R_GOTPC_LO: u32 = 61; |
5196 | /// High 16 bit offset to GOT with unsigned low |
5197 | pub const R_M32R_GOTOFF_HI_ULO: u32 = 62; |
5198 | /// High 16 bit offset to GOT with signed low |
5199 | pub const R_M32R_GOTOFF_HI_SLO: u32 = 63; |
5200 | /// Low 16 bit offset to GOT |
5201 | pub const R_M32R_GOTOFF_LO: u32 = 64; |
5202 | /// Keep this the last entry. |
5203 | pub const R_M32R_NUM: u32 = 256; |
5204 | |
5205 | // MicroBlaze values `Rel*::r_type`. |
5206 | /// No reloc. |
5207 | pub const R_MICROBLAZE_NONE: u32 = 0; |
5208 | /// Direct 32 bit. |
5209 | pub const R_MICROBLAZE_32: u32 = 1; |
5210 | /// PC relative 32 bit. |
5211 | pub const R_MICROBLAZE_32_PCREL: u32 = 2; |
5212 | /// PC relative 64 bit. |
5213 | pub const R_MICROBLAZE_64_PCREL: u32 = 3; |
5214 | /// Low 16 bits of PCREL32. |
5215 | pub const R_MICROBLAZE_32_PCREL_LO: u32 = 4; |
5216 | /// Direct 64 bit. |
5217 | pub const R_MICROBLAZE_64: u32 = 5; |
5218 | /// Low 16 bit. |
5219 | pub const R_MICROBLAZE_32_LO: u32 = 6; |
5220 | /// Read-only small data area. |
5221 | pub const R_MICROBLAZE_SRO32: u32 = 7; |
5222 | /// Read-write small data area. |
5223 | pub const R_MICROBLAZE_SRW32: u32 = 8; |
5224 | /// No reloc. |
5225 | pub const R_MICROBLAZE_64_NONE: u32 = 9; |
5226 | /// Symbol Op Symbol relocation. |
5227 | pub const R_MICROBLAZE_32_SYM_OP_SYM: u32 = 10; |
5228 | /// GNU C++ vtable hierarchy. |
5229 | pub const R_MICROBLAZE_GNU_VTINHERIT: u32 = 11; |
5230 | /// GNU C++ vtable member usage. |
5231 | pub const R_MICROBLAZE_GNU_VTENTRY: u32 = 12; |
5232 | /// PC-relative GOT offset. |
5233 | pub const R_MICROBLAZE_GOTPC_64: u32 = 13; |
5234 | /// GOT entry offset. |
5235 | pub const R_MICROBLAZE_GOT_64: u32 = 14; |
5236 | /// PLT offset (PC-relative). |
5237 | pub const R_MICROBLAZE_PLT_64: u32 = 15; |
5238 | /// Adjust by program base. |
5239 | pub const R_MICROBLAZE_REL: u32 = 16; |
5240 | /// Create PLT entry. |
5241 | pub const R_MICROBLAZE_JUMP_SLOT: u32 = 17; |
5242 | /// Create GOT entry. |
5243 | pub const R_MICROBLAZE_GLOB_DAT: u32 = 18; |
5244 | /// 64 bit offset to GOT. |
5245 | pub const R_MICROBLAZE_GOTOFF_64: u32 = 19; |
5246 | /// 32 bit offset to GOT. |
5247 | pub const R_MICROBLAZE_GOTOFF_32: u32 = 20; |
5248 | /// Runtime copy. |
5249 | pub const R_MICROBLAZE_COPY: u32 = 21; |
5250 | /// TLS Reloc. |
5251 | pub const R_MICROBLAZE_TLS: u32 = 22; |
5252 | /// TLS General Dynamic. |
5253 | pub const R_MICROBLAZE_TLSGD: u32 = 23; |
5254 | /// TLS Local Dynamic. |
5255 | pub const R_MICROBLAZE_TLSLD: u32 = 24; |
5256 | /// TLS Module ID. |
5257 | pub const R_MICROBLAZE_TLSDTPMOD32: u32 = 25; |
5258 | /// TLS Offset Within TLS Block. |
5259 | pub const R_MICROBLAZE_TLSDTPREL32: u32 = 26; |
5260 | /// TLS Offset Within TLS Block. |
5261 | pub const R_MICROBLAZE_TLSDTPREL64: u32 = 27; |
5262 | /// TLS Offset From Thread Pointer. |
5263 | pub const R_MICROBLAZE_TLSGOTTPREL32: u32 = 28; |
5264 | /// TLS Offset From Thread Pointer. |
5265 | pub const R_MICROBLAZE_TLSTPREL32: u32 = 29; |
5266 | |
5267 | // Nios II values `Dyn::d_tag`. |
5268 | /// Address of _gp. |
5269 | pub const DT_NIOS2_GP: u32 = 0x7000_0002; |
5270 | |
5271 | // Nios II values `Rel*::r_type`. |
5272 | /// No reloc. |
5273 | pub const R_NIOS2_NONE: u32 = 0; |
5274 | /// Direct signed 16 bit. |
5275 | pub const R_NIOS2_S16: u32 = 1; |
5276 | /// Direct unsigned 16 bit. |
5277 | pub const R_NIOS2_U16: u32 = 2; |
5278 | /// PC relative 16 bit. |
5279 | pub const R_NIOS2_PCREL16: u32 = 3; |
5280 | /// Direct call. |
5281 | pub const R_NIOS2_CALL26: u32 = 4; |
5282 | /// 5 bit constant expression. |
5283 | pub const R_NIOS2_IMM5: u32 = 5; |
5284 | /// 5 bit expression, shift 22. |
5285 | pub const R_NIOS2_CACHE_OPX: u32 = 6; |
5286 | /// 6 bit constant expression. |
5287 | pub const R_NIOS2_IMM6: u32 = 7; |
5288 | /// 8 bit constant expression. |
5289 | pub const R_NIOS2_IMM8: u32 = 8; |
5290 | /// High 16 bit. |
5291 | pub const R_NIOS2_HI16: u32 = 9; |
5292 | /// Low 16 bit. |
5293 | pub const R_NIOS2_LO16: u32 = 10; |
5294 | /// High 16 bit, adjusted. |
5295 | pub const R_NIOS2_HIADJ16: u32 = 11; |
5296 | /// 32 bit symbol value + addend. |
5297 | pub const R_NIOS2_BFD_RELOC_32: u32 = 12; |
5298 | /// 16 bit symbol value + addend. |
5299 | pub const R_NIOS2_BFD_RELOC_16: u32 = 13; |
5300 | /// 8 bit symbol value + addend. |
5301 | pub const R_NIOS2_BFD_RELOC_8: u32 = 14; |
5302 | /// 16 bit GP pointer offset. |
5303 | pub const R_NIOS2_GPREL: u32 = 15; |
5304 | /// GNU C++ vtable hierarchy. |
5305 | pub const R_NIOS2_GNU_VTINHERIT: u32 = 16; |
5306 | /// GNU C++ vtable member usage. |
5307 | pub const R_NIOS2_GNU_VTENTRY: u32 = 17; |
5308 | /// Unconditional branch. |
5309 | pub const R_NIOS2_UJMP: u32 = 18; |
5310 | /// Conditional branch. |
5311 | pub const R_NIOS2_CJMP: u32 = 19; |
5312 | /// Indirect call through register. |
5313 | pub const R_NIOS2_CALLR: u32 = 20; |
5314 | /// Alignment requirement for linker relaxation. |
5315 | pub const R_NIOS2_ALIGN: u32 = 21; |
5316 | /// 16 bit GOT entry. |
5317 | pub const R_NIOS2_GOT16: u32 = 22; |
5318 | /// 16 bit GOT entry for function. |
5319 | pub const R_NIOS2_CALL16: u32 = 23; |
5320 | /// %lo of offset to GOT pointer. |
5321 | pub const R_NIOS2_GOTOFF_LO: u32 = 24; |
5322 | /// %hiadj of offset to GOT pointer. |
5323 | pub const R_NIOS2_GOTOFF_HA: u32 = 25; |
5324 | /// %lo of PC relative offset. |
5325 | pub const R_NIOS2_PCREL_LO: u32 = 26; |
5326 | /// %hiadj of PC relative offset. |
5327 | pub const R_NIOS2_PCREL_HA: u32 = 27; |
5328 | /// 16 bit GOT offset for TLS GD. |
5329 | pub const R_NIOS2_TLS_GD16: u32 = 28; |
5330 | /// 16 bit GOT offset for TLS LDM. |
5331 | pub const R_NIOS2_TLS_LDM16: u32 = 29; |
5332 | /// 16 bit module relative offset. |
5333 | pub const R_NIOS2_TLS_LDO16: u32 = 30; |
5334 | /// 16 bit GOT offset for TLS IE. |
5335 | pub const R_NIOS2_TLS_IE16: u32 = 31; |
5336 | /// 16 bit LE TP-relative offset. |
5337 | pub const R_NIOS2_TLS_LE16: u32 = 32; |
5338 | /// Module number. |
5339 | pub const R_NIOS2_TLS_DTPMOD: u32 = 33; |
5340 | /// Module-relative offset. |
5341 | pub const R_NIOS2_TLS_DTPREL: u32 = 34; |
5342 | /// TP-relative offset. |
5343 | pub const R_NIOS2_TLS_TPREL: u32 = 35; |
5344 | /// Copy symbol at runtime. |
5345 | pub const R_NIOS2_COPY: u32 = 36; |
5346 | /// Create GOT entry. |
5347 | pub const R_NIOS2_GLOB_DAT: u32 = 37; |
5348 | /// Create PLT entry. |
5349 | pub const R_NIOS2_JUMP_SLOT: u32 = 38; |
5350 | /// Adjust by program base. |
5351 | pub const R_NIOS2_RELATIVE: u32 = 39; |
5352 | /// 16 bit offset to GOT pointer. |
5353 | pub const R_NIOS2_GOTOFF: u32 = 40; |
5354 | /// Direct call in .noat section. |
5355 | pub const R_NIOS2_CALL26_NOAT: u32 = 41; |
5356 | /// %lo() of GOT entry. |
5357 | pub const R_NIOS2_GOT_LO: u32 = 42; |
5358 | /// %hiadj() of GOT entry. |
5359 | pub const R_NIOS2_GOT_HA: u32 = 43; |
5360 | /// %lo() of function GOT entry. |
5361 | pub const R_NIOS2_CALL_LO: u32 = 44; |
5362 | /// %hiadj() of function GOT entry. |
5363 | pub const R_NIOS2_CALL_HA: u32 = 45; |
5364 | |
5365 | // TILEPro values `Rel*::r_type`. |
5366 | /// No reloc |
5367 | pub const R_TILEPRO_NONE: u32 = 0; |
5368 | /// Direct 32 bit |
5369 | pub const R_TILEPRO_32: u32 = 1; |
5370 | /// Direct 16 bit |
5371 | pub const R_TILEPRO_16: u32 = 2; |
5372 | /// Direct 8 bit |
5373 | pub const R_TILEPRO_8: u32 = 3; |
5374 | /// PC relative 32 bit |
5375 | pub const R_TILEPRO_32_PCREL: u32 = 4; |
5376 | /// PC relative 16 bit |
5377 | pub const R_TILEPRO_16_PCREL: u32 = 5; |
5378 | /// PC relative 8 bit |
5379 | pub const R_TILEPRO_8_PCREL: u32 = 6; |
5380 | /// Low 16 bit |
5381 | pub const R_TILEPRO_LO16: u32 = 7; |
5382 | /// High 16 bit |
5383 | pub const R_TILEPRO_HI16: u32 = 8; |
5384 | /// High 16 bit, adjusted |
5385 | pub const R_TILEPRO_HA16: u32 = 9; |
5386 | /// Copy relocation |
5387 | pub const R_TILEPRO_COPY: u32 = 10; |
5388 | /// Create GOT entry |
5389 | pub const R_TILEPRO_GLOB_DAT: u32 = 11; |
5390 | /// Create PLT entry |
5391 | pub const R_TILEPRO_JMP_SLOT: u32 = 12; |
5392 | /// Adjust by program base |
5393 | pub const R_TILEPRO_RELATIVE: u32 = 13; |
5394 | /// X1 pipe branch offset |
5395 | pub const R_TILEPRO_BROFF_X1: u32 = 14; |
5396 | /// X1 pipe jump offset |
5397 | pub const R_TILEPRO_JOFFLONG_X1: u32 = 15; |
5398 | /// X1 pipe jump offset to PLT |
5399 | pub const R_TILEPRO_JOFFLONG_X1_PLT: u32 = 16; |
5400 | /// X0 pipe 8-bit |
5401 | pub const R_TILEPRO_IMM8_X0: u32 = 17; |
5402 | /// Y0 pipe 8-bit |
5403 | pub const R_TILEPRO_IMM8_Y0: u32 = 18; |
5404 | /// X1 pipe 8-bit |
5405 | pub const R_TILEPRO_IMM8_X1: u32 = 19; |
5406 | /// Y1 pipe 8-bit |
5407 | pub const R_TILEPRO_IMM8_Y1: u32 = 20; |
5408 | /// X1 pipe mtspr |
5409 | pub const R_TILEPRO_MT_IMM15_X1: u32 = 21; |
5410 | /// X1 pipe mfspr |
5411 | pub const R_TILEPRO_MF_IMM15_X1: u32 = 22; |
5412 | /// X0 pipe 16-bit |
5413 | pub const R_TILEPRO_IMM16_X0: u32 = 23; |
5414 | /// X1 pipe 16-bit |
5415 | pub const R_TILEPRO_IMM16_X1: u32 = 24; |
5416 | /// X0 pipe low 16-bit |
5417 | pub const R_TILEPRO_IMM16_X0_LO: u32 = 25; |
5418 | /// X1 pipe low 16-bit |
5419 | pub const R_TILEPRO_IMM16_X1_LO: u32 = 26; |
5420 | /// X0 pipe high 16-bit |
5421 | pub const R_TILEPRO_IMM16_X0_HI: u32 = 27; |
5422 | /// X1 pipe high 16-bit |
5423 | pub const R_TILEPRO_IMM16_X1_HI: u32 = 28; |
5424 | /// X0 pipe high 16-bit, adjusted |
5425 | pub const R_TILEPRO_IMM16_X0_HA: u32 = 29; |
5426 | /// X1 pipe high 16-bit, adjusted |
5427 | pub const R_TILEPRO_IMM16_X1_HA: u32 = 30; |
5428 | /// X0 pipe PC relative 16 bit |
5429 | pub const R_TILEPRO_IMM16_X0_PCREL: u32 = 31; |
5430 | /// X1 pipe PC relative 16 bit |
5431 | pub const R_TILEPRO_IMM16_X1_PCREL: u32 = 32; |
5432 | /// X0 pipe PC relative low 16 bit |
5433 | pub const R_TILEPRO_IMM16_X0_LO_PCREL: u32 = 33; |
5434 | /// X1 pipe PC relative low 16 bit |
5435 | pub const R_TILEPRO_IMM16_X1_LO_PCREL: u32 = 34; |
5436 | /// X0 pipe PC relative high 16 bit |
5437 | pub const R_TILEPRO_IMM16_X0_HI_PCREL: u32 = 35; |
5438 | /// X1 pipe PC relative high 16 bit |
5439 | pub const R_TILEPRO_IMM16_X1_HI_PCREL: u32 = 36; |
5440 | /// X0 pipe PC relative ha() 16 bit |
5441 | pub const R_TILEPRO_IMM16_X0_HA_PCREL: u32 = 37; |
5442 | /// X1 pipe PC relative ha() 16 bit |
5443 | pub const R_TILEPRO_IMM16_X1_HA_PCREL: u32 = 38; |
5444 | /// X0 pipe 16-bit GOT offset |
5445 | pub const R_TILEPRO_IMM16_X0_GOT: u32 = 39; |
5446 | /// X1 pipe 16-bit GOT offset |
5447 | pub const R_TILEPRO_IMM16_X1_GOT: u32 = 40; |
5448 | /// X0 pipe low 16-bit GOT offset |
5449 | pub const R_TILEPRO_IMM16_X0_GOT_LO: u32 = 41; |
5450 | /// X1 pipe low 16-bit GOT offset |
5451 | pub const R_TILEPRO_IMM16_X1_GOT_LO: u32 = 42; |
5452 | /// X0 pipe high 16-bit GOT offset |
5453 | pub const R_TILEPRO_IMM16_X0_GOT_HI: u32 = 43; |
5454 | /// X1 pipe high 16-bit GOT offset |
5455 | pub const R_TILEPRO_IMM16_X1_GOT_HI: u32 = 44; |
5456 | /// X0 pipe ha() 16-bit GOT offset |
5457 | pub const R_TILEPRO_IMM16_X0_GOT_HA: u32 = 45; |
5458 | /// X1 pipe ha() 16-bit GOT offset |
5459 | pub const R_TILEPRO_IMM16_X1_GOT_HA: u32 = 46; |
5460 | /// X0 pipe mm "start" |
5461 | pub const R_TILEPRO_MMSTART_X0: u32 = 47; |
5462 | /// X0 pipe mm "end" |
5463 | pub const R_TILEPRO_MMEND_X0: u32 = 48; |
5464 | /// X1 pipe mm "start" |
5465 | pub const R_TILEPRO_MMSTART_X1: u32 = 49; |
5466 | /// X1 pipe mm "end" |
5467 | pub const R_TILEPRO_MMEND_X1: u32 = 50; |
5468 | /// X0 pipe shift amount |
5469 | pub const R_TILEPRO_SHAMT_X0: u32 = 51; |
5470 | /// X1 pipe shift amount |
5471 | pub const R_TILEPRO_SHAMT_X1: u32 = 52; |
5472 | /// Y0 pipe shift amount |
5473 | pub const R_TILEPRO_SHAMT_Y0: u32 = 53; |
5474 | /// Y1 pipe shift amount |
5475 | pub const R_TILEPRO_SHAMT_Y1: u32 = 54; |
5476 | /// X1 pipe destination 8-bit |
5477 | pub const R_TILEPRO_DEST_IMM8_X1: u32 = 55; |
5478 | // Relocs 56-59 are currently not defined. |
5479 | /// "jal" for TLS GD |
5480 | pub const R_TILEPRO_TLS_GD_CALL: u32 = 60; |
5481 | /// X0 pipe "addi" for TLS GD |
5482 | pub const R_TILEPRO_IMM8_X0_TLS_GD_ADD: u32 = 61; |
5483 | /// X1 pipe "addi" for TLS GD |
5484 | pub const R_TILEPRO_IMM8_X1_TLS_GD_ADD: u32 = 62; |
5485 | /// Y0 pipe "addi" for TLS GD |
5486 | pub const R_TILEPRO_IMM8_Y0_TLS_GD_ADD: u32 = 63; |
5487 | /// Y1 pipe "addi" for TLS GD |
5488 | pub const R_TILEPRO_IMM8_Y1_TLS_GD_ADD: u32 = 64; |
5489 | /// "lw_tls" for TLS IE |
5490 | pub const R_TILEPRO_TLS_IE_LOAD: u32 = 65; |
5491 | /// X0 pipe 16-bit TLS GD offset |
5492 | pub const R_TILEPRO_IMM16_X0_TLS_GD: u32 = 66; |
5493 | /// X1 pipe 16-bit TLS GD offset |
5494 | pub const R_TILEPRO_IMM16_X1_TLS_GD: u32 = 67; |
5495 | /// X0 pipe low 16-bit TLS GD offset |
5496 | pub const R_TILEPRO_IMM16_X0_TLS_GD_LO: u32 = 68; |
5497 | /// X1 pipe low 16-bit TLS GD offset |
5498 | pub const R_TILEPRO_IMM16_X1_TLS_GD_LO: u32 = 69; |
5499 | /// X0 pipe high 16-bit TLS GD offset |
5500 | pub const R_TILEPRO_IMM16_X0_TLS_GD_HI: u32 = 70; |
5501 | /// X1 pipe high 16-bit TLS GD offset |
5502 | pub const R_TILEPRO_IMM16_X1_TLS_GD_HI: u32 = 71; |
5503 | /// X0 pipe ha() 16-bit TLS GD offset |
5504 | pub const R_TILEPRO_IMM16_X0_TLS_GD_HA: u32 = 72; |
5505 | /// X1 pipe ha() 16-bit TLS GD offset |
5506 | pub const R_TILEPRO_IMM16_X1_TLS_GD_HA: u32 = 73; |
5507 | /// X0 pipe 16-bit TLS IE offset |
5508 | pub const R_TILEPRO_IMM16_X0_TLS_IE: u32 = 74; |
5509 | /// X1 pipe 16-bit TLS IE offset |
5510 | pub const R_TILEPRO_IMM16_X1_TLS_IE: u32 = 75; |
5511 | /// X0 pipe low 16-bit TLS IE offset |
5512 | pub const R_TILEPRO_IMM16_X0_TLS_IE_LO: u32 = 76; |
5513 | /// X1 pipe low 16-bit TLS IE offset |
5514 | pub const R_TILEPRO_IMM16_X1_TLS_IE_LO: u32 = 77; |
5515 | /// X0 pipe high 16-bit TLS IE offset |
5516 | pub const R_TILEPRO_IMM16_X0_TLS_IE_HI: u32 = 78; |
5517 | /// X1 pipe high 16-bit TLS IE offset |
5518 | pub const R_TILEPRO_IMM16_X1_TLS_IE_HI: u32 = 79; |
5519 | /// X0 pipe ha() 16-bit TLS IE offset |
5520 | pub const R_TILEPRO_IMM16_X0_TLS_IE_HA: u32 = 80; |
5521 | /// X1 pipe ha() 16-bit TLS IE offset |
5522 | pub const R_TILEPRO_IMM16_X1_TLS_IE_HA: u32 = 81; |
5523 | /// ID of module containing symbol |
5524 | pub const R_TILEPRO_TLS_DTPMOD32: u32 = 82; |
5525 | /// Offset in TLS block |
5526 | pub const R_TILEPRO_TLS_DTPOFF32: u32 = 83; |
5527 | /// Offset in static TLS block |
5528 | pub const R_TILEPRO_TLS_TPOFF32: u32 = 84; |
5529 | /// X0 pipe 16-bit TLS LE offset |
5530 | pub const R_TILEPRO_IMM16_X0_TLS_LE: u32 = 85; |
5531 | /// X1 pipe 16-bit TLS LE offset |
5532 | pub const R_TILEPRO_IMM16_X1_TLS_LE: u32 = 86; |
5533 | /// X0 pipe low 16-bit TLS LE offset |
5534 | pub const R_TILEPRO_IMM16_X0_TLS_LE_LO: u32 = 87; |
5535 | /// X1 pipe low 16-bit TLS LE offset |
5536 | pub const R_TILEPRO_IMM16_X1_TLS_LE_LO: u32 = 88; |
5537 | /// X0 pipe high 16-bit TLS LE offset |
5538 | pub const R_TILEPRO_IMM16_X0_TLS_LE_HI: u32 = 89; |
5539 | /// X1 pipe high 16-bit TLS LE offset |
5540 | pub const R_TILEPRO_IMM16_X1_TLS_LE_HI: u32 = 90; |
5541 | /// X0 pipe ha() 16-bit TLS LE offset |
5542 | pub const R_TILEPRO_IMM16_X0_TLS_LE_HA: u32 = 91; |
5543 | /// X1 pipe ha() 16-bit TLS LE offset |
5544 | pub const R_TILEPRO_IMM16_X1_TLS_LE_HA: u32 = 92; |
5545 | |
5546 | /// GNU C++ vtable hierarchy |
5547 | pub const R_TILEPRO_GNU_VTINHERIT: u32 = 128; |
5548 | /// GNU C++ vtable member usage |
5549 | pub const R_TILEPRO_GNU_VTENTRY: u32 = 129; |
5550 | |
5551 | // TILE-Gx values `Rel*::r_type`. |
5552 | /// No reloc |
5553 | pub const R_TILEGX_NONE: u32 = 0; |
5554 | /// Direct 64 bit |
5555 | pub const R_TILEGX_64: u32 = 1; |
5556 | /// Direct 32 bit |
5557 | pub const R_TILEGX_32: u32 = 2; |
5558 | /// Direct 16 bit |
5559 | pub const R_TILEGX_16: u32 = 3; |
5560 | /// Direct 8 bit |
5561 | pub const R_TILEGX_8: u32 = 4; |
5562 | /// PC relative 64 bit |
5563 | pub const R_TILEGX_64_PCREL: u32 = 5; |
5564 | /// PC relative 32 bit |
5565 | pub const R_TILEGX_32_PCREL: u32 = 6; |
5566 | /// PC relative 16 bit |
5567 | pub const R_TILEGX_16_PCREL: u32 = 7; |
5568 | /// PC relative 8 bit |
5569 | pub const R_TILEGX_8_PCREL: u32 = 8; |
5570 | /// hword 0 16-bit |
5571 | pub const R_TILEGX_HW0: u32 = 9; |
5572 | /// hword 1 16-bit |
5573 | pub const R_TILEGX_HW1: u32 = 10; |
5574 | /// hword 2 16-bit |
5575 | pub const R_TILEGX_HW2: u32 = 11; |
5576 | /// hword 3 16-bit |
5577 | pub const R_TILEGX_HW3: u32 = 12; |
5578 | /// last hword 0 16-bit |
5579 | pub const R_TILEGX_HW0_LAST: u32 = 13; |
5580 | /// last hword 1 16-bit |
5581 | pub const R_TILEGX_HW1_LAST: u32 = 14; |
5582 | /// last hword 2 16-bit |
5583 | pub const R_TILEGX_HW2_LAST: u32 = 15; |
5584 | /// Copy relocation |
5585 | pub const R_TILEGX_COPY: u32 = 16; |
5586 | /// Create GOT entry |
5587 | pub const R_TILEGX_GLOB_DAT: u32 = 17; |
5588 | /// Create PLT entry |
5589 | pub const R_TILEGX_JMP_SLOT: u32 = 18; |
5590 | /// Adjust by program base |
5591 | pub const R_TILEGX_RELATIVE: u32 = 19; |
5592 | /// X1 pipe branch offset |
5593 | pub const R_TILEGX_BROFF_X1: u32 = 20; |
5594 | /// X1 pipe jump offset |
5595 | pub const R_TILEGX_JUMPOFF_X1: u32 = 21; |
5596 | /// X1 pipe jump offset to PLT |
5597 | pub const R_TILEGX_JUMPOFF_X1_PLT: u32 = 22; |
5598 | /// X0 pipe 8-bit |
5599 | pub const R_TILEGX_IMM8_X0: u32 = 23; |
5600 | /// Y0 pipe 8-bit |
5601 | pub const R_TILEGX_IMM8_Y0: u32 = 24; |
5602 | /// X1 pipe 8-bit |
5603 | pub const R_TILEGX_IMM8_X1: u32 = 25; |
5604 | /// Y1 pipe 8-bit |
5605 | pub const R_TILEGX_IMM8_Y1: u32 = 26; |
5606 | /// X1 pipe destination 8-bit |
5607 | pub const R_TILEGX_DEST_IMM8_X1: u32 = 27; |
5608 | /// X1 pipe mtspr |
5609 | pub const R_TILEGX_MT_IMM14_X1: u32 = 28; |
5610 | /// X1 pipe mfspr |
5611 | pub const R_TILEGX_MF_IMM14_X1: u32 = 29; |
5612 | /// X0 pipe mm "start" |
5613 | pub const R_TILEGX_MMSTART_X0: u32 = 30; |
5614 | /// X0 pipe mm "end" |
5615 | pub const R_TILEGX_MMEND_X0: u32 = 31; |
5616 | /// X0 pipe shift amount |
5617 | pub const R_TILEGX_SHAMT_X0: u32 = 32; |
5618 | /// X1 pipe shift amount |
5619 | pub const R_TILEGX_SHAMT_X1: u32 = 33; |
5620 | /// Y0 pipe shift amount |
5621 | pub const R_TILEGX_SHAMT_Y0: u32 = 34; |
5622 | /// Y1 pipe shift amount |
5623 | pub const R_TILEGX_SHAMT_Y1: u32 = 35; |
5624 | /// X0 pipe hword 0 |
5625 | pub const R_TILEGX_IMM16_X0_HW0: u32 = 36; |
5626 | /// X1 pipe hword 0 |
5627 | pub const R_TILEGX_IMM16_X1_HW0: u32 = 37; |
5628 | /// X0 pipe hword 1 |
5629 | pub const R_TILEGX_IMM16_X0_HW1: u32 = 38; |
5630 | /// X1 pipe hword 1 |
5631 | pub const R_TILEGX_IMM16_X1_HW1: u32 = 39; |
5632 | /// X0 pipe hword 2 |
5633 | pub const R_TILEGX_IMM16_X0_HW2: u32 = 40; |
5634 | /// X1 pipe hword 2 |
5635 | pub const R_TILEGX_IMM16_X1_HW2: u32 = 41; |
5636 | /// X0 pipe hword 3 |
5637 | pub const R_TILEGX_IMM16_X0_HW3: u32 = 42; |
5638 | /// X1 pipe hword 3 |
5639 | pub const R_TILEGX_IMM16_X1_HW3: u32 = 43; |
5640 | /// X0 pipe last hword 0 |
5641 | pub const R_TILEGX_IMM16_X0_HW0_LAST: u32 = 44; |
5642 | /// X1 pipe last hword 0 |
5643 | pub const R_TILEGX_IMM16_X1_HW0_LAST: u32 = 45; |
5644 | /// X0 pipe last hword 1 |
5645 | pub const R_TILEGX_IMM16_X0_HW1_LAST: u32 = 46; |
5646 | /// X1 pipe last hword 1 |
5647 | pub const R_TILEGX_IMM16_X1_HW1_LAST: u32 = 47; |
5648 | /// X0 pipe last hword 2 |
5649 | pub const R_TILEGX_IMM16_X0_HW2_LAST: u32 = 48; |
5650 | /// X1 pipe last hword 2 |
5651 | pub const R_TILEGX_IMM16_X1_HW2_LAST: u32 = 49; |
5652 | /// X0 pipe PC relative hword 0 |
5653 | pub const R_TILEGX_IMM16_X0_HW0_PCREL: u32 = 50; |
5654 | /// X1 pipe PC relative hword 0 |
5655 | pub const R_TILEGX_IMM16_X1_HW0_PCREL: u32 = 51; |
5656 | /// X0 pipe PC relative hword 1 |
5657 | pub const R_TILEGX_IMM16_X0_HW1_PCREL: u32 = 52; |
5658 | /// X1 pipe PC relative hword 1 |
5659 | pub const R_TILEGX_IMM16_X1_HW1_PCREL: u32 = 53; |
5660 | /// X0 pipe PC relative hword 2 |
5661 | pub const R_TILEGX_IMM16_X0_HW2_PCREL: u32 = 54; |
5662 | /// X1 pipe PC relative hword 2 |
5663 | pub const R_TILEGX_IMM16_X1_HW2_PCREL: u32 = 55; |
5664 | /// X0 pipe PC relative hword 3 |
5665 | pub const R_TILEGX_IMM16_X0_HW3_PCREL: u32 = 56; |
5666 | /// X1 pipe PC relative hword 3 |
5667 | pub const R_TILEGX_IMM16_X1_HW3_PCREL: u32 = 57; |
5668 | /// X0 pipe PC-rel last hword 0 |
5669 | pub const R_TILEGX_IMM16_X0_HW0_LAST_PCREL: u32 = 58; |
5670 | /// X1 pipe PC-rel last hword 0 |
5671 | pub const R_TILEGX_IMM16_X1_HW0_LAST_PCREL: u32 = 59; |
5672 | /// X0 pipe PC-rel last hword 1 |
5673 | pub const R_TILEGX_IMM16_X0_HW1_LAST_PCREL: u32 = 60; |
5674 | /// X1 pipe PC-rel last hword 1 |
5675 | pub const R_TILEGX_IMM16_X1_HW1_LAST_PCREL: u32 = 61; |
5676 | /// X0 pipe PC-rel last hword 2 |
5677 | pub const R_TILEGX_IMM16_X0_HW2_LAST_PCREL: u32 = 62; |
5678 | /// X1 pipe PC-rel last hword 2 |
5679 | pub const R_TILEGX_IMM16_X1_HW2_LAST_PCREL: u32 = 63; |
5680 | /// X0 pipe hword 0 GOT offset |
5681 | pub const R_TILEGX_IMM16_X0_HW0_GOT: u32 = 64; |
5682 | /// X1 pipe hword 0 GOT offset |
5683 | pub const R_TILEGX_IMM16_X1_HW0_GOT: u32 = 65; |
5684 | /// X0 pipe PC-rel PLT hword 0 |
5685 | pub const R_TILEGX_IMM16_X0_HW0_PLT_PCREL: u32 = 66; |
5686 | /// X1 pipe PC-rel PLT hword 0 |
5687 | pub const R_TILEGX_IMM16_X1_HW0_PLT_PCREL: u32 = 67; |
5688 | /// X0 pipe PC-rel PLT hword 1 |
5689 | pub const R_TILEGX_IMM16_X0_HW1_PLT_PCREL: u32 = 68; |
5690 | /// X1 pipe PC-rel PLT hword 1 |
5691 | pub const R_TILEGX_IMM16_X1_HW1_PLT_PCREL: u32 = 69; |
5692 | /// X0 pipe PC-rel PLT hword 2 |
5693 | pub const R_TILEGX_IMM16_X0_HW2_PLT_PCREL: u32 = 70; |
5694 | /// X1 pipe PC-rel PLT hword 2 |
5695 | pub const R_TILEGX_IMM16_X1_HW2_PLT_PCREL: u32 = 71; |
5696 | /// X0 pipe last hword 0 GOT offset |
5697 | pub const R_TILEGX_IMM16_X0_HW0_LAST_GOT: u32 = 72; |
5698 | /// X1 pipe last hword 0 GOT offset |
5699 | pub const R_TILEGX_IMM16_X1_HW0_LAST_GOT: u32 = 73; |
5700 | /// X0 pipe last hword 1 GOT offset |
5701 | pub const R_TILEGX_IMM16_X0_HW1_LAST_GOT: u32 = 74; |
5702 | /// X1 pipe last hword 1 GOT offset |
5703 | pub const R_TILEGX_IMM16_X1_HW1_LAST_GOT: u32 = 75; |
5704 | /// X0 pipe PC-rel PLT hword 3 |
5705 | pub const R_TILEGX_IMM16_X0_HW3_PLT_PCREL: u32 = 76; |
5706 | /// X1 pipe PC-rel PLT hword 3 |
5707 | pub const R_TILEGX_IMM16_X1_HW3_PLT_PCREL: u32 = 77; |
5708 | /// X0 pipe hword 0 TLS GD offset |
5709 | pub const R_TILEGX_IMM16_X0_HW0_TLS_GD: u32 = 78; |
5710 | /// X1 pipe hword 0 TLS GD offset |
5711 | pub const R_TILEGX_IMM16_X1_HW0_TLS_GD: u32 = 79; |
5712 | /// X0 pipe hword 0 TLS LE offset |
5713 | pub const R_TILEGX_IMM16_X0_HW0_TLS_LE: u32 = 80; |
5714 | /// X1 pipe hword 0 TLS LE offset |
5715 | pub const R_TILEGX_IMM16_X1_HW0_TLS_LE: u32 = 81; |
5716 | /// X0 pipe last hword 0 LE off |
5717 | pub const R_TILEGX_IMM16_X0_HW0_LAST_TLS_LE: u32 = 82; |
5718 | /// X1 pipe last hword 0 LE off |
5719 | pub const R_TILEGX_IMM16_X1_HW0_LAST_TLS_LE: u32 = 83; |
5720 | /// X0 pipe last hword 1 LE off |
5721 | pub const R_TILEGX_IMM16_X0_HW1_LAST_TLS_LE: u32 = 84; |
5722 | /// X1 pipe last hword 1 LE off |
5723 | pub const R_TILEGX_IMM16_X1_HW1_LAST_TLS_LE: u32 = 85; |
5724 | /// X0 pipe last hword 0 GD off |
5725 | pub const R_TILEGX_IMM16_X0_HW0_LAST_TLS_GD: u32 = 86; |
5726 | /// X1 pipe last hword 0 GD off |
5727 | pub const R_TILEGX_IMM16_X1_HW0_LAST_TLS_GD: u32 = 87; |
5728 | /// X0 pipe last hword 1 GD off |
5729 | pub const R_TILEGX_IMM16_X0_HW1_LAST_TLS_GD: u32 = 88; |
5730 | /// X1 pipe last hword 1 GD off |
5731 | pub const R_TILEGX_IMM16_X1_HW1_LAST_TLS_GD: u32 = 89; |
5732 | // Relocs 90-91 are currently not defined. |
5733 | /// X0 pipe hword 0 TLS IE offset |
5734 | pub const R_TILEGX_IMM16_X0_HW0_TLS_IE: u32 = 92; |
5735 | /// X1 pipe hword 0 TLS IE offset |
5736 | pub const R_TILEGX_IMM16_X1_HW0_TLS_IE: u32 = 93; |
5737 | /// X0 pipe PC-rel PLT last hword 0 |
5738 | pub const R_TILEGX_IMM16_X0_HW0_LAST_PLT_PCREL: u32 = 94; |
5739 | /// X1 pipe PC-rel PLT last hword 0 |
5740 | pub const R_TILEGX_IMM16_X1_HW0_LAST_PLT_PCREL: u32 = 95; |
5741 | /// X0 pipe PC-rel PLT last hword 1 |
5742 | pub const R_TILEGX_IMM16_X0_HW1_LAST_PLT_PCREL: u32 = 96; |
5743 | /// X1 pipe PC-rel PLT last hword 1 |
5744 | pub const R_TILEGX_IMM16_X1_HW1_LAST_PLT_PCREL: u32 = 97; |
5745 | /// X0 pipe PC-rel PLT last hword 2 |
5746 | pub const R_TILEGX_IMM16_X0_HW2_LAST_PLT_PCREL: u32 = 98; |
5747 | /// X1 pipe PC-rel PLT last hword 2 |
5748 | pub const R_TILEGX_IMM16_X1_HW2_LAST_PLT_PCREL: u32 = 99; |
5749 | /// X0 pipe last hword 0 IE off |
5750 | pub const R_TILEGX_IMM16_X0_HW0_LAST_TLS_IE: u32 = 100; |
5751 | /// X1 pipe last hword 0 IE off |
5752 | pub const R_TILEGX_IMM16_X1_HW0_LAST_TLS_IE: u32 = 101; |
5753 | /// X0 pipe last hword 1 IE off |
5754 | pub const R_TILEGX_IMM16_X0_HW1_LAST_TLS_IE: u32 = 102; |
5755 | /// X1 pipe last hword 1 IE off |
5756 | pub const R_TILEGX_IMM16_X1_HW1_LAST_TLS_IE: u32 = 103; |
5757 | // Relocs 104-105 are currently not defined. |
5758 | /// 64-bit ID of symbol's module |
5759 | pub const R_TILEGX_TLS_DTPMOD64: u32 = 106; |
5760 | /// 64-bit offset in TLS block |
5761 | pub const R_TILEGX_TLS_DTPOFF64: u32 = 107; |
5762 | /// 64-bit offset in static TLS block |
5763 | pub const R_TILEGX_TLS_TPOFF64: u32 = 108; |
5764 | /// 32-bit ID of symbol's module |
5765 | pub const R_TILEGX_TLS_DTPMOD32: u32 = 109; |
5766 | /// 32-bit offset in TLS block |
5767 | pub const R_TILEGX_TLS_DTPOFF32: u32 = 110; |
5768 | /// 32-bit offset in static TLS block |
5769 | pub const R_TILEGX_TLS_TPOFF32: u32 = 111; |
5770 | /// "jal" for TLS GD |
5771 | pub const R_TILEGX_TLS_GD_CALL: u32 = 112; |
5772 | /// X0 pipe "addi" for TLS GD |
5773 | pub const R_TILEGX_IMM8_X0_TLS_GD_ADD: u32 = 113; |
5774 | /// X1 pipe "addi" for TLS GD |
5775 | pub const R_TILEGX_IMM8_X1_TLS_GD_ADD: u32 = 114; |
5776 | /// Y0 pipe "addi" for TLS GD |
5777 | pub const R_TILEGX_IMM8_Y0_TLS_GD_ADD: u32 = 115; |
5778 | /// Y1 pipe "addi" for TLS GD |
5779 | pub const R_TILEGX_IMM8_Y1_TLS_GD_ADD: u32 = 116; |
5780 | /// "ld_tls" for TLS IE |
5781 | pub const R_TILEGX_TLS_IE_LOAD: u32 = 117; |
5782 | /// X0 pipe "addi" for TLS GD/IE |
5783 | pub const R_TILEGX_IMM8_X0_TLS_ADD: u32 = 118; |
5784 | /// X1 pipe "addi" for TLS GD/IE |
5785 | pub const R_TILEGX_IMM8_X1_TLS_ADD: u32 = 119; |
5786 | /// Y0 pipe "addi" for TLS GD/IE |
5787 | pub const R_TILEGX_IMM8_Y0_TLS_ADD: u32 = 120; |
5788 | /// Y1 pipe "addi" for TLS GD/IE |
5789 | pub const R_TILEGX_IMM8_Y1_TLS_ADD: u32 = 121; |
5790 | |
5791 | /// GNU C++ vtable hierarchy |
5792 | pub const R_TILEGX_GNU_VTINHERIT: u32 = 128; |
5793 | /// GNU C++ vtable member usage |
5794 | pub const R_TILEGX_GNU_VTENTRY: u32 = 129; |
5795 | |
5796 | // RISC-V values `FileHeader*::e_flags`. |
5797 | pub const EF_RISCV_RVC: u32 = 0x0001; |
5798 | pub const EF_RISCV_FLOAT_ABI: u32 = 0x0006; |
5799 | pub const EF_RISCV_FLOAT_ABI_SOFT: u32 = 0x0000; |
5800 | pub const EF_RISCV_FLOAT_ABI_SINGLE: u32 = 0x0002; |
5801 | pub const EF_RISCV_FLOAT_ABI_DOUBLE: u32 = 0x0004; |
5802 | pub const EF_RISCV_FLOAT_ABI_QUAD: u32 = 0x0006; |
5803 | pub const EF_RISCV_RVE: u32 = 0x0008; |
5804 | pub const EF_RISCV_TSO: u32 = 0x0010; |
5805 | |
5806 | // RISC-V values `Rel*::r_type`. |
5807 | pub const R_RISCV_NONE: u32 = 0; |
5808 | pub const R_RISCV_32: u32 = 1; |
5809 | pub const R_RISCV_64: u32 = 2; |
5810 | pub const R_RISCV_RELATIVE: u32 = 3; |
5811 | pub const R_RISCV_COPY: u32 = 4; |
5812 | pub const R_RISCV_JUMP_SLOT: u32 = 5; |
5813 | pub const R_RISCV_TLS_DTPMOD32: u32 = 6; |
5814 | pub const R_RISCV_TLS_DTPMOD64: u32 = 7; |
5815 | pub const R_RISCV_TLS_DTPREL32: u32 = 8; |
5816 | pub const R_RISCV_TLS_DTPREL64: u32 = 9; |
5817 | pub const R_RISCV_TLS_TPREL32: u32 = 10; |
5818 | pub const R_RISCV_TLS_TPREL64: u32 = 11; |
5819 | pub const R_RISCV_BRANCH: u32 = 16; |
5820 | pub const R_RISCV_JAL: u32 = 17; |
5821 | pub const R_RISCV_CALL: u32 = 18; |
5822 | pub const R_RISCV_CALL_PLT: u32 = 19; |
5823 | pub const R_RISCV_GOT_HI20: u32 = 20; |
5824 | pub const R_RISCV_TLS_GOT_HI20: u32 = 21; |
5825 | pub const R_RISCV_TLS_GD_HI20: u32 = 22; |
5826 | pub const R_RISCV_PCREL_HI20: u32 = 23; |
5827 | pub const R_RISCV_PCREL_LO12_I: u32 = 24; |
5828 | pub const R_RISCV_PCREL_LO12_S: u32 = 25; |
5829 | pub const R_RISCV_HI20: u32 = 26; |
5830 | pub const R_RISCV_LO12_I: u32 = 27; |
5831 | pub const R_RISCV_LO12_S: u32 = 28; |
5832 | pub const R_RISCV_TPREL_HI20: u32 = 29; |
5833 | pub const R_RISCV_TPREL_LO12_I: u32 = 30; |
5834 | pub const R_RISCV_TPREL_LO12_S: u32 = 31; |
5835 | pub const R_RISCV_TPREL_ADD: u32 = 32; |
5836 | pub const R_RISCV_ADD8: u32 = 33; |
5837 | pub const R_RISCV_ADD16: u32 = 34; |
5838 | pub const R_RISCV_ADD32: u32 = 35; |
5839 | pub const R_RISCV_ADD64: u32 = 36; |
5840 | pub const R_RISCV_SUB8: u32 = 37; |
5841 | pub const R_RISCV_SUB16: u32 = 38; |
5842 | pub const R_RISCV_SUB32: u32 = 39; |
5843 | pub const R_RISCV_SUB64: u32 = 40; |
5844 | pub const R_RISCV_GNU_VTINHERIT: u32 = 41; |
5845 | pub const R_RISCV_GNU_VTENTRY: u32 = 42; |
5846 | pub const R_RISCV_ALIGN: u32 = 43; |
5847 | pub const R_RISCV_RVC_BRANCH: u32 = 44; |
5848 | pub const R_RISCV_RVC_JUMP: u32 = 45; |
5849 | pub const R_RISCV_RVC_LUI: u32 = 46; |
5850 | pub const R_RISCV_GPREL_I: u32 = 47; |
5851 | pub const R_RISCV_GPREL_S: u32 = 48; |
5852 | pub const R_RISCV_TPREL_I: u32 = 49; |
5853 | pub const R_RISCV_TPREL_S: u32 = 50; |
5854 | pub const R_RISCV_RELAX: u32 = 51; |
5855 | pub const R_RISCV_SUB6: u32 = 52; |
5856 | pub const R_RISCV_SET6: u32 = 53; |
5857 | pub const R_RISCV_SET8: u32 = 54; |
5858 | pub const R_RISCV_SET16: u32 = 55; |
5859 | pub const R_RISCV_SET32: u32 = 56; |
5860 | pub const R_RISCV_32_PCREL: u32 = 57; |
5861 | |
5862 | // BPF values `Rel*::r_type`. |
5863 | /// No reloc |
5864 | pub const R_BPF_NONE: u32 = 0; |
5865 | pub const R_BPF_64_64: u32 = 1; |
5866 | pub const R_BPF_64_32: u32 = 10; |
5867 | |
5868 | // SBF values `Rel*::r_type`. |
5869 | /// No reloc |
5870 | pub const R_SBF_NONE: u32 = 0; |
5871 | pub const R_SBF_64_64: u32 = 1; |
5872 | pub const R_SBF_64_32: u32 = 10; |
5873 | |
5874 | // Imagination Meta values `Rel*::r_type`. |
5875 | |
5876 | pub const R_METAG_HIADDR16: u32 = 0; |
5877 | pub const R_METAG_LOADDR16: u32 = 1; |
5878 | /// 32bit absolute address |
5879 | pub const R_METAG_ADDR32: u32 = 2; |
5880 | /// No reloc |
5881 | pub const R_METAG_NONE: u32 = 3; |
5882 | pub const R_METAG_RELBRANCH: u32 = 4; |
5883 | pub const R_METAG_GETSETOFF: u32 = 5; |
5884 | |
5885 | // Backward compatibility |
5886 | pub const R_METAG_REG32OP1: u32 = 6; |
5887 | pub const R_METAG_REG32OP2: u32 = 7; |
5888 | pub const R_METAG_REG32OP3: u32 = 8; |
5889 | pub const R_METAG_REG16OP1: u32 = 9; |
5890 | pub const R_METAG_REG16OP2: u32 = 10; |
5891 | pub const R_METAG_REG16OP3: u32 = 11; |
5892 | pub const R_METAG_REG32OP4: u32 = 12; |
5893 | |
5894 | pub const R_METAG_HIOG: u32 = 13; |
5895 | pub const R_METAG_LOOG: u32 = 14; |
5896 | |
5897 | pub const R_METAG_REL8: u32 = 15; |
5898 | pub const R_METAG_REL16: u32 = 16; |
5899 | |
5900 | pub const R_METAG_GNU_VTINHERIT: u32 = 30; |
5901 | pub const R_METAG_GNU_VTENTRY: u32 = 31; |
5902 | |
5903 | // PIC relocations |
5904 | pub const R_METAG_HI16_GOTOFF: u32 = 32; |
5905 | pub const R_METAG_LO16_GOTOFF: u32 = 33; |
5906 | pub const R_METAG_GETSET_GOTOFF: u32 = 34; |
5907 | pub const R_METAG_GETSET_GOT: u32 = 35; |
5908 | pub const R_METAG_HI16_GOTPC: u32 = 36; |
5909 | pub const R_METAG_LO16_GOTPC: u32 = 37; |
5910 | pub const R_METAG_HI16_PLT: u32 = 38; |
5911 | pub const R_METAG_LO16_PLT: u32 = 39; |
5912 | pub const R_METAG_RELBRANCH_PLT: u32 = 40; |
5913 | pub const R_METAG_GOTOFF: u32 = 41; |
5914 | pub const R_METAG_PLT: u32 = 42; |
5915 | pub const R_METAG_COPY: u32 = 43; |
5916 | pub const R_METAG_JMP_SLOT: u32 = 44; |
5917 | pub const R_METAG_RELATIVE: u32 = 45; |
5918 | pub const R_METAG_GLOB_DAT: u32 = 46; |
5919 | |
5920 | // TLS relocations |
5921 | pub const R_METAG_TLS_GD: u32 = 47; |
5922 | pub const R_METAG_TLS_LDM: u32 = 48; |
5923 | pub const R_METAG_TLS_LDO_HI16: u32 = 49; |
5924 | pub const R_METAG_TLS_LDO_LO16: u32 = 50; |
5925 | pub const R_METAG_TLS_LDO: u32 = 51; |
5926 | pub const R_METAG_TLS_IE: u32 = 52; |
5927 | pub const R_METAG_TLS_IENONPIC: u32 = 53; |
5928 | pub const R_METAG_TLS_IENONPIC_HI16: u32 = 54; |
5929 | pub const R_METAG_TLS_IENONPIC_LO16: u32 = 55; |
5930 | pub const R_METAG_TLS_TPOFF: u32 = 56; |
5931 | pub const R_METAG_TLS_DTPMOD: u32 = 57; |
5932 | pub const R_METAG_TLS_DTPOFF: u32 = 58; |
5933 | pub const R_METAG_TLS_LE: u32 = 59; |
5934 | pub const R_METAG_TLS_LE_HI16: u32 = 60; |
5935 | pub const R_METAG_TLS_LE_LO16: u32 = 61; |
5936 | |
5937 | // NDS32 values `Rel*::r_type`. |
5938 | pub const R_NDS32_NONE: u32 = 0; |
5939 | pub const R_NDS32_32_RELA: u32 = 20; |
5940 | pub const R_NDS32_COPY: u32 = 39; |
5941 | pub const R_NDS32_GLOB_DAT: u32 = 40; |
5942 | pub const R_NDS32_JMP_SLOT: u32 = 41; |
5943 | pub const R_NDS32_RELATIVE: u32 = 42; |
5944 | pub const R_NDS32_TLS_TPOFF: u32 = 102; |
5945 | pub const R_NDS32_TLS_DESC: u32 = 119; |
5946 | |
5947 | // LoongArch values `FileHeader*::e_flags`. |
5948 | /// Additional properties of the base ABI type, including the FP calling |
5949 | /// convention. |
5950 | pub const EF_LARCH_ABI_MODIFIER_MASK: u32 = 0x7; |
5951 | /// Uses GPRs and the stack for parameter passing |
5952 | pub const EF_LARCH_ABI_SOFT_FLOAT: u32 = 0x1; |
5953 | /// Uses GPRs, 32-bit FPRs and the stack for parameter passing |
5954 | pub const EF_LARCH_ABI_SINGLE_FLOAT: u32 = 0x2; |
5955 | /// Uses GPRs, 64-bit FPRs and the stack for parameter passing |
5956 | pub const EF_LARCH_ABI_DOUBLE_FLOAT: u32 = 0x3; |
5957 | /// Uses relocation types directly writing to immediate slots |
5958 | pub const EF_LARCH_OBJABI_V1: u32 = 0x40; |
5959 | |
5960 | // LoongArch values `Rel*::r_type`. |
5961 | /// No reloc |
5962 | pub const R_LARCH_NONE: u32 = 0; |
5963 | /// Runtime address resolving |
5964 | pub const R_LARCH_32: u32 = 1; |
5965 | /// Runtime address resolving |
5966 | pub const R_LARCH_64: u32 = 2; |
5967 | /// Runtime fixup for load-address |
5968 | pub const R_LARCH_RELATIVE: u32 = 3; |
5969 | /// Runtime memory copy in executable |
5970 | pub const R_LARCH_COPY: u32 = 4; |
5971 | /// Runtime PLT supporting |
5972 | pub const R_LARCH_JUMP_SLOT: u32 = 5; |
5973 | /// Runtime relocation for TLS-GD |
5974 | pub const R_LARCH_TLS_DTPMOD32: u32 = 6; |
5975 | /// Runtime relocation for TLS-GD |
5976 | pub const R_LARCH_TLS_DTPMOD64: u32 = 7; |
5977 | /// Runtime relocation for TLS-GD |
5978 | pub const R_LARCH_TLS_DTPREL32: u32 = 8; |
5979 | /// Runtime relocation for TLS-GD |
5980 | pub const R_LARCH_TLS_DTPREL64: u32 = 9; |
5981 | /// Runtime relocation for TLE-IE |
5982 | pub const R_LARCH_TLS_TPREL32: u32 = 10; |
5983 | /// Runtime relocation for TLE-IE |
5984 | pub const R_LARCH_TLS_TPREL64: u32 = 11; |
5985 | /// Runtime local indirect function resolving |
5986 | pub const R_LARCH_IRELATIVE: u32 = 12; |
5987 | /// Mark la.abs: load absolute address for static link. |
5988 | pub const R_LARCH_MARK_LA: u32 = 20; |
5989 | /// Mark external label branch: access PC relative address for static link. |
5990 | pub const R_LARCH_MARK_PCREL: u32 = 21; |
5991 | /// Push PC-relative offset |
5992 | pub const R_LARCH_SOP_PUSH_PCREL: u32 = 22; |
5993 | /// Push constant or absolute address |
5994 | pub const R_LARCH_SOP_PUSH_ABSOLUTE: u32 = 23; |
5995 | /// Duplicate stack top |
5996 | pub const R_LARCH_SOP_PUSH_DUP: u32 = 24; |
5997 | /// Push for access GOT entry |
5998 | pub const R_LARCH_SOP_PUSH_GPREL: u32 = 25; |
5999 | /// Push for TLS-LE |
6000 | pub const R_LARCH_SOP_PUSH_TLS_TPREL: u32 = 26; |
6001 | /// Push for TLS-IE |
6002 | pub const R_LARCH_SOP_PUSH_TLS_GOT: u32 = 27; |
6003 | /// Push for TLS-GD |
6004 | pub const R_LARCH_SOP_PUSH_TLS_GD: u32 = 28; |
6005 | /// Push for external function calling |
6006 | pub const R_LARCH_SOP_PUSH_PLT_PCREL: u32 = 29; |
6007 | /// Assert stack top |
6008 | pub const R_LARCH_SOP_ASSERT: u32 = 30; |
6009 | /// Stack top logical not (unary) |
6010 | pub const R_LARCH_SOP_NOT: u32 = 31; |
6011 | /// Stack top subtraction (binary) |
6012 | pub const R_LARCH_SOP_SUB: u32 = 32; |
6013 | /// Stack top left shift (binary) |
6014 | pub const R_LARCH_SOP_SL: u32 = 33; |
6015 | /// Stack top right shift (binary) |
6016 | pub const R_LARCH_SOP_SR: u32 = 34; |
6017 | /// Stack top addition (binary) |
6018 | pub const R_LARCH_SOP_ADD: u32 = 35; |
6019 | /// Stack top bitwise and (binary) |
6020 | pub const R_LARCH_SOP_AND: u32 = 36; |
6021 | /// Stack top selection (tertiary) |
6022 | pub const R_LARCH_SOP_IF_ELSE: u32 = 37; |
6023 | /// Pop stack top to fill 5-bit signed immediate operand |
6024 | pub const R_LARCH_SOP_POP_32_S_10_5: u32 = 38; |
6025 | /// Pop stack top to fill 12-bit unsigned immediate operand |
6026 | pub const R_LARCH_SOP_POP_32_U_10_12: u32 = 39; |
6027 | /// Pop stack top to fill 12-bit signed immediate operand |
6028 | pub const R_LARCH_SOP_POP_32_S_10_12: u32 = 40; |
6029 | /// Pop stack top to fill 16-bit signed immediate operand |
6030 | pub const R_LARCH_SOP_POP_32_S_10_16: u32 = 41; |
6031 | /// Pop stack top to fill 18-bit signed immediate operand with two trailing |
6032 | /// zeros implied |
6033 | pub const R_LARCH_SOP_POP_32_S_10_16_S2: u32 = 42; |
6034 | /// Pop stack top to fill 20-bit signed immediate operand |
6035 | pub const R_LARCH_SOP_POP_32_S_5_20: u32 = 43; |
6036 | /// Pop stack top to fill 23-bit signed immediate operand with two trailing |
6037 | /// zeros implied |
6038 | pub const R_LARCH_SOP_POP_32_S_0_5_10_16_S2: u32 = 44; |
6039 | /// Pop stack top to fill 28-bit signed immediate operand with two trailing |
6040 | /// zeros implied |
6041 | pub const R_LARCH_SOP_POP_32_S_0_10_10_16_S2: u32 = 45; |
6042 | /// Pop stack top to fill an instruction |
6043 | pub const R_LARCH_SOP_POP_32_U: u32 = 46; |
6044 | /// 8-bit in-place addition |
6045 | pub const R_LARCH_ADD8: u32 = 47; |
6046 | /// 16-bit in-place addition |
6047 | pub const R_LARCH_ADD16: u32 = 48; |
6048 | /// 24-bit in-place addition |
6049 | pub const R_LARCH_ADD24: u32 = 49; |
6050 | /// 32-bit in-place addition |
6051 | pub const R_LARCH_ADD32: u32 = 50; |
6052 | /// 64-bit in-place addition |
6053 | pub const R_LARCH_ADD64: u32 = 51; |
6054 | /// 8-bit in-place subtraction |
6055 | pub const R_LARCH_SUB8: u32 = 52; |
6056 | /// 16-bit in-place subtraction |
6057 | pub const R_LARCH_SUB16: u32 = 53; |
6058 | /// 24-bit in-place subtraction |
6059 | pub const R_LARCH_SUB24: u32 = 54; |
6060 | /// 32-bit in-place subtraction |
6061 | pub const R_LARCH_SUB32: u32 = 55; |
6062 | /// 64-bit in-place subtraction |
6063 | pub const R_LARCH_SUB64: u32 = 56; |
6064 | /// GNU C++ vtable hierarchy |
6065 | pub const R_LARCH_GNU_VTINHERIT: u32 = 57; |
6066 | /// GNU C++ vtable member usage |
6067 | pub const R_LARCH_GNU_VTENTRY: u32 = 58; |
6068 | /// 18-bit PC-relative jump offset with two trailing zeros |
6069 | pub const R_LARCH_B16: u32 = 64; |
6070 | /// 23-bit PC-relative jump offset with two trailing zeros |
6071 | pub const R_LARCH_B21: u32 = 65; |
6072 | /// 28-bit PC-relative jump offset with two trailing zeros |
6073 | pub const R_LARCH_B26: u32 = 66; |
6074 | /// 12..=31 bits of 32/64-bit absolute address |
6075 | pub const R_LARCH_ABS_HI20: u32 = 67; |
6076 | /// 0..=11 bits of 32/64-bit absolute address |
6077 | pub const R_LARCH_ABS_LO12: u32 = 68; |
6078 | /// 32..=51 bits of 64-bit absolute address |
6079 | pub const R_LARCH_ABS64_LO20: u32 = 69; |
6080 | /// 52..=63 bits of 64-bit absolute address |
6081 | pub const R_LARCH_ABS64_HI12: u32 = 70; |
6082 | /// The signed 32-bit offset `offs` from `PC & 0xfffff000` to |
6083 | /// `(S + A + 0x800) & 0xfffff000`, with 12 trailing zeros removed. |
6084 | /// |
6085 | /// We define the *PC relative anchor* for `S + A` as `PC + offs` (`offs` |
6086 | /// is sign-extended to VA bits). |
6087 | pub const R_LARCH_PCALA_HI20: u32 = 71; |
6088 | /// Same as R_LARCH_ABS_LO12. 0..=11 bits of the 32/64-bit offset from the |
6089 | /// [PC relative anchor][R_LARCH_PCALA_HI20]. |
6090 | pub const R_LARCH_PCALA_LO12: u32 = 72; |
6091 | /// 32..=51 bits of the 64-bit offset from the |
6092 | /// [PC relative anchor][R_LARCH_PCALA_HI20]. |
6093 | pub const R_LARCH_PCALA64_LO20: u32 = 73; |
6094 | /// 52..=63 bits of the 64-bit offset from the |
6095 | /// [PC relative anchor][R_LARCH_PCALA_HI20]. |
6096 | pub const R_LARCH_PCALA64_HI12: u32 = 74; |
6097 | /// The signed 32-bit offset `offs` from `PC & 0xfffff000` to |
6098 | /// `(GP + G + 0x800) & 0xfffff000`, with 12 trailing zeros removed. |
6099 | /// |
6100 | /// We define the *PC relative anchor* for the GOT entry at `GP + G` as |
6101 | /// `PC + offs` (`offs` is sign-extended to VA bits). |
6102 | pub const R_LARCH_GOT_PC_HI20: u32 = 75; |
6103 | /// 0..=11 bits of the 32/64-bit offset from the |
6104 | /// [PC relative anchor][R_LARCH_GOT_PC_HI20] to the GOT entry. |
6105 | pub const R_LARCH_GOT_PC_LO12: u32 = 76; |
6106 | /// 32..=51 bits of the 64-bit offset from the |
6107 | /// [PC relative anchor][R_LARCH_GOT_PC_HI20] to the GOT entry. |
6108 | pub const R_LARCH_GOT64_PC_LO20: u32 = 77; |
6109 | /// 52..=63 bits of the 64-bit offset from the |
6110 | /// [PC relative anchor][R_LARCH_GOT_PC_HI20] to the GOT entry. |
6111 | pub const R_LARCH_GOT64_PC_HI12: u32 = 78; |
6112 | /// 12..=31 bits of 32/64-bit GOT entry absolute address |
6113 | pub const R_LARCH_GOT_HI20: u32 = 79; |
6114 | /// 0..=11 bits of 32/64-bit GOT entry absolute address |
6115 | pub const R_LARCH_GOT_LO12: u32 = 80; |
6116 | /// 32..=51 bits of 64-bit GOT entry absolute address |
6117 | pub const R_LARCH_GOT64_LO20: u32 = 81; |
6118 | /// 52..=63 bits of 64-bit GOT entry absolute address |
6119 | pub const R_LARCH_GOT64_HI12: u32 = 82; |
6120 | /// 12..=31 bits of TLS LE 32/64-bit offset from thread pointer |
6121 | pub const R_LARCH_TLS_LE_HI20: u32 = 83; |
6122 | /// 0..=11 bits of TLS LE 32/64-bit offset from thread pointer |
6123 | pub const R_LARCH_TLS_LE_LO12: u32 = 84; |
6124 | /// 32..=51 bits of TLS LE 64-bit offset from thread pointer |
6125 | pub const R_LARCH_TLS_LE64_LO20: u32 = 85; |
6126 | /// 52..=63 bits of TLS LE 64-bit offset from thread pointer |
6127 | pub const R_LARCH_TLS_LE64_HI12: u32 = 86; |
6128 | /// The signed 32-bit offset `offs` from `PC & 0xfffff000` to |
6129 | /// `(GP + IE + 0x800) & 0xfffff000`, with 12 trailing zeros removed. |
6130 | /// |
6131 | /// We define the *PC relative anchor* for the TLS IE GOT entry at |
6132 | /// `GP + IE` as `PC + offs` (`offs` is sign-extended to VA bits). |
6133 | pub const R_LARCH_TLS_IE_PC_HI20: u32 = 87; |
6134 | /// 0..=12 bits of the 32/64-bit offset from the |
6135 | /// [PC-relative anchor][R_LARCH_TLS_IE_PC_HI20] to the TLS IE GOT entry. |
6136 | pub const R_LARCH_TLS_IE_PC_LO12: u32 = 88; |
6137 | /// 32..=51 bits of the 64-bit offset from the |
6138 | /// [PC-relative anchor][R_LARCH_TLS_IE_PC_HI20] to the TLS IE GOT entry. |
6139 | pub const R_LARCH_TLS_IE64_PC_LO20: u32 = 89; |
6140 | /// 52..=63 bits of the 64-bit offset from the |
6141 | /// [PC-relative anchor][R_LARCH_TLS_IE_PC_HI20] to the TLS IE GOT entry. |
6142 | pub const R_LARCH_TLS_IE64_PC_HI12: u32 = 90; |
6143 | /// 12..=31 bits of TLS IE GOT entry 32/64-bit absolute address |
6144 | pub const R_LARCH_TLS_IE_HI20: u32 = 91; |
6145 | /// 0..=11 bits of TLS IE GOT entry 32/64-bit absolute address |
6146 | pub const R_LARCH_TLS_IE_LO12: u32 = 92; |
6147 | /// 32..=51 bits of TLS IE GOT entry 64-bit absolute address |
6148 | pub const R_LARCH_TLS_IE64_LO20: u32 = 93; |
6149 | /// 51..=63 bits of TLS IE GOT entry 64-bit absolute address |
6150 | pub const R_LARCH_TLS_IE64_HI12: u32 = 94; |
6151 | /// 12..=31 bits of the offset from `PC` to `GP + GD + 0x800`, where |
6152 | /// `GP + GD` is a TLS LD GOT entry |
6153 | pub const R_LARCH_TLS_LD_PC_HI20: u32 = 95; |
6154 | /// 12..=31 bits of TLS LD GOT entry 32/64-bit absolute address |
6155 | pub const R_LARCH_TLS_LD_HI20: u32 = 96; |
6156 | /// 12..=31 bits of the 32/64-bit PC-relative offset to the PC-relative |
6157 | /// anchor for the TLE GD GOT entry. |
6158 | pub const R_LARCH_TLS_GD_PC_HI20: u32 = 97; |
6159 | /// 12..=31 bits of TLS GD GOT entry 32/64-bit absolute address |
6160 | pub const R_LARCH_TLS_GD_HI20: u32 = 98; |
6161 | /// 32-bit PC relative |
6162 | pub const R_LARCH_32_PCREL: u32 = 99; |
6163 | /// Paired with a normal relocation at the same address to indicate the |
6164 | /// instruction can be relaxed |
6165 | pub const R_LARCH_RELAX: u32 = 100; |
6166 | /// Reserved |
6167 | pub const R_LARCH_DELETE: u32 = 101; |
6168 | /// Delete some bytes to ensure the instruction at PC + A aligned to |
6169 | /// `A.next_power_of_two()`-byte boundary |
6170 | pub const R_LARCH_ALIGN: u32 = 102; |
6171 | /// 22-bit PC-relative offset with two trailing zeros |
6172 | pub const R_LARCH_PCREL20_S2: u32 = 103; |
6173 | /// Reserved |
6174 | pub const R_LARCH_CFA: u32 = 104; |
6175 | /// 6-bit in-place addition |
6176 | pub const R_LARCH_ADD6: u32 = 105; |
6177 | /// 6-bit in-place subtraction |
6178 | pub const R_LARCH_SUB6: u32 = 106; |
6179 | /// LEB128 in-place addition |
6180 | pub const R_LARCH_ADD_ULEB128: u32 = 107; |
6181 | /// LEB128 in-place subtraction |
6182 | pub const R_LARCH_SUB_ULEB128: u32 = 108; |
6183 | /// 64-bit PC relative |
6184 | pub const R_LARCH_64_PCREL: u32 = 109; |
6185 | /// 18..=37 bits of `S + A - PC` into the `pcaddu18i` instruction at `PC`, |
6186 | /// and 2..=17 bits of `S + A - PC` into the `jirl` instruction at `PC + 4` |
6187 | pub const R_LARCH_CALL36: u32 = 110; |
6188 | |
6189 | // Xtensa values Rel*::r_type`. |
6190 | pub const R_XTENSA_NONE: u32 = 0; |
6191 | pub const R_XTENSA_32: u32 = 1; |
6192 | pub const R_XTENSA_RTLD: u32 = 2; |
6193 | pub const R_XTENSA_GLOB_DAT: u32 = 3; |
6194 | pub const R_XTENSA_JMP_SLOT: u32 = 4; |
6195 | pub const R_XTENSA_RELATIVE: u32 = 5; |
6196 | pub const R_XTENSA_PLT: u32 = 6; |
6197 | pub const R_XTENSA_OP0: u32 = 8; |
6198 | pub const R_XTENSA_OP1: u32 = 9; |
6199 | pub const R_XTENSA_OP2: u32 = 10; |
6200 | pub const R_XTENSA_ASM_EXPAND: u32 = 11; |
6201 | pub const R_XTENSA_ASM_SIMPLIFY: u32 = 12; |
6202 | pub const R_XTENSA_32_PCREL: u32 = 14; |
6203 | pub const R_XTENSA_GNU_VTINHERIT: u32 = 15; |
6204 | pub const R_XTENSA_GNU_VTENTRY: u32 = 16; |
6205 | pub const R_XTENSA_DIFF8: u32 = 17; |
6206 | pub const R_XTENSA_DIFF16: u32 = 18; |
6207 | pub const R_XTENSA_DIFF32: u32 = 19; |
6208 | pub const R_XTENSA_SLOT0_OP: u32 = 20; |
6209 | pub const R_XTENSA_SLOT1_OP: u32 = 21; |
6210 | pub const R_XTENSA_SLOT2_OP: u32 = 22; |
6211 | pub const R_XTENSA_SLOT3_OP: u32 = 23; |
6212 | pub const R_XTENSA_SLOT4_OP: u32 = 24; |
6213 | pub const R_XTENSA_SLOT5_OP: u32 = 25; |
6214 | pub const R_XTENSA_SLOT6_OP: u32 = 26; |
6215 | pub const R_XTENSA_SLOT7_OP: u32 = 27; |
6216 | pub const R_XTENSA_SLOT8_OP: u32 = 28; |
6217 | pub const R_XTENSA_SLOT9_OP: u32 = 29; |
6218 | pub const R_XTENSA_SLOT10_OP: u32 = 30; |
6219 | pub const R_XTENSA_SLOT11_OP: u32 = 31; |
6220 | pub const R_XTENSA_SLOT12_OP: u32 = 32; |
6221 | pub const R_XTENSA_SLOT13_OP: u32 = 33; |
6222 | pub const R_XTENSA_SLOT14_OP: u32 = 34; |
6223 | pub const R_XTENSA_SLOT0_ALT: u32 = 35; |
6224 | pub const R_XTENSA_SLOT1_ALT: u32 = 36; |
6225 | pub const R_XTENSA_SLOT2_ALT: u32 = 37; |
6226 | pub const R_XTENSA_SLOT3_ALT: u32 = 38; |
6227 | pub const R_XTENSA_SLOT4_ALT: u32 = 39; |
6228 | pub const R_XTENSA_SLOT5_ALT: u32 = 40; |
6229 | pub const R_XTENSA_SLOT6_ALT: u32 = 41; |
6230 | pub const R_XTENSA_SLOT7_ALT: u32 = 42; |
6231 | pub const R_XTENSA_SLOT8_ALT: u32 = 43; |
6232 | pub const R_XTENSA_SLOT9_ALT: u32 = 44; |
6233 | pub const R_XTENSA_SLOT10_ALT: u32 = 45; |
6234 | pub const R_XTENSA_SLOT11_ALT: u32 = 46; |
6235 | pub const R_XTENSA_SLOT12_ALT: u32 = 47; |
6236 | pub const R_XTENSA_SLOT13_ALT: u32 = 48; |
6237 | pub const R_XTENSA_SLOT14_ALT: u32 = 49; |
6238 | pub const R_XTENSA_TLSDESC_FN: u32 = 50; |
6239 | pub const R_XTENSA_TLSDESC_ARG: u32 = 51; |
6240 | pub const R_XTENSA_TLS_DTPOFF: u32 = 52; |
6241 | pub const R_XTENSA_TLS_TPOFF: u32 = 53; |
6242 | pub const R_XTENSA_TLS_FUNC: u32 = 54; |
6243 | pub const R_XTENSA_TLS_ARG: u32 = 55; |
6244 | pub const R_XTENSA_TLS_CALL: u32 = 56; |
6245 | pub const R_XTENSA_PDIFF8: u32 = 57; |
6246 | pub const R_XTENSA_PDIFF16: u32 = 58; |
6247 | pub const R_XTENSA_PDIFF32: u32 = 59; |
6248 | pub const R_XTENSA_NDIFF8: u32 = 60; |
6249 | pub const R_XTENSA_NDIFF16: u32 = 61; |
6250 | pub const R_XTENSA_NDIFF32: u32 = 62; |
6251 | |
6252 | #[allow (non_upper_case_globals)] |
6253 | pub const Tag_File: u8 = 1; |
6254 | #[allow (non_upper_case_globals)] |
6255 | pub const Tag_Section: u8 = 2; |
6256 | #[allow (non_upper_case_globals)] |
6257 | pub const Tag_Symbol: u8 = 3; |
6258 | |
6259 | unsafe_impl_endian_pod!( |
6260 | FileHeader32, |
6261 | FileHeader64, |
6262 | SectionHeader32, |
6263 | SectionHeader64, |
6264 | CompressionHeader32, |
6265 | CompressionHeader64, |
6266 | Sym32, |
6267 | Sym64, |
6268 | Syminfo32, |
6269 | Syminfo64, |
6270 | Rel32, |
6271 | Rel64, |
6272 | Rela32, |
6273 | Rela64, |
6274 | ProgramHeader32, |
6275 | ProgramHeader64, |
6276 | Dyn32, |
6277 | Dyn64, |
6278 | Versym, |
6279 | Verdef, |
6280 | Verdaux, |
6281 | Verneed, |
6282 | Vernaux, |
6283 | NoteHeader32, |
6284 | NoteHeader64, |
6285 | HashHeader, |
6286 | GnuHashHeader, |
6287 | ); |
6288 | |