target: linux: patches: Drop initramfs startup hack
[openadk.git] / target / linux / patches / 3.16.85 / relocs.patch
blob69a7c88a99bb097d2ed32aa175e540956293faf8
1 diff -Nur linux-3.13.6.orig/arch/x86/tools/relocs.c linux-3.13.6/arch/x86/tools/relocs.c
2 --- linux-3.13.6.orig/arch/x86/tools/relocs.c 2014-03-07 07:07:02.000000000 +0100
3 +++ linux-3.13.6/arch/x86/tools/relocs.c 2014-03-15 19:39:45.000000000 +0100
4 @@ -126,6 +126,7 @@
6 if (err) {
7 regerror(err, &sym_regex_c[i], errbuf, sizeof errbuf);
8 + printf("foo: %s\n", sym_regex[i]);
9 die("%s", errbuf);
12 diff -Nur linux-3.13.6.orig/arch/x86/tools/relocs.h linux-3.13.6/arch/x86/tools/relocs.h
13 --- linux-3.13.6.orig/arch/x86/tools/relocs.h 2014-03-07 07:07:02.000000000 +0100
14 +++ linux-3.13.6/arch/x86/tools/relocs.h 2014-03-15 18:48:40.000000000 +0100
15 @@ -9,11 +9,19 @@
16 #include <string.h>
17 #include <errno.h>
18 #include <unistd.h>
19 +#ifdef __linux__
20 #include <elf.h>
21 #include <byteswap.h>
22 #define USE_BSD
23 #include <endian.h>
24 +#else
25 +#include "elf.h"
26 +#endif
27 +#ifdef __APPLE__
28 +#include <pcreposix.h>
29 +#else
30 #include <regex.h>
31 +#endif
32 #include <tools/le_byteshift.h>
34 void die(char *fmt, ...);
35 diff -Nur linux-3.13.6.orig/tools/include/elf.h linux-3.13.6/tools/include/elf.h
36 --- linux-3.13.6.orig/tools/include/elf.h 1970-01-01 01:00:00.000000000 +0100
37 +++ linux-3.13.6/tools/include/elf.h 2014-03-15 18:47:36.000000000 +0100
38 @@ -0,0 +1,2671 @@
39 +#ifndef _ELF_H
40 +#define _ELF_H
42 +#ifdef __cplusplus
43 +extern "C" {
44 +#endif
46 +#include <stdint.h>
48 +typedef uint16_t Elf32_Half;
49 +typedef uint16_t Elf64_Half;
51 +typedef uint32_t Elf32_Word;
52 +typedef int32_t Elf32_Sword;
53 +typedef uint32_t Elf64_Word;
54 +typedef int32_t Elf64_Sword;
56 +typedef uint64_t Elf32_Xword;
57 +typedef int64_t Elf32_Sxword;
58 +typedef uint64_t Elf64_Xword;
59 +typedef int64_t Elf64_Sxword;
61 +typedef uint32_t Elf32_Addr;
62 +typedef uint64_t Elf64_Addr;
64 +typedef uint32_t Elf32_Off;
65 +typedef uint64_t Elf64_Off;
67 +typedef uint16_t Elf32_Section;
68 +typedef uint16_t Elf64_Section;
70 +typedef Elf32_Half Elf32_Versym;
71 +typedef Elf64_Half Elf64_Versym;
73 +#define EI_NIDENT (16)
75 +typedef struct {
76 + unsigned char e_ident[EI_NIDENT];
77 + Elf32_Half e_type;
78 + Elf32_Half e_machine;
79 + Elf32_Word e_version;
80 + Elf32_Addr e_entry;
81 + Elf32_Off e_phoff;
82 + Elf32_Off e_shoff;
83 + Elf32_Word e_flags;
84 + Elf32_Half e_ehsize;
85 + Elf32_Half e_phentsize;
86 + Elf32_Half e_phnum;
87 + Elf32_Half e_shentsize;
88 + Elf32_Half e_shnum;
89 + Elf32_Half e_shstrndx;
90 +} Elf32_Ehdr;
92 +typedef struct {
93 + unsigned char e_ident[EI_NIDENT];
94 + Elf64_Half e_type;
95 + Elf64_Half e_machine;
96 + Elf64_Word e_version;
97 + Elf64_Addr e_entry;
98 + Elf64_Off e_phoff;
99 + Elf64_Off e_shoff;
100 + Elf64_Word e_flags;
101 + Elf64_Half e_ehsize;
102 + Elf64_Half e_phentsize;
103 + Elf64_Half e_phnum;
104 + Elf64_Half e_shentsize;
105 + Elf64_Half e_shnum;
106 + Elf64_Half e_shstrndx;
107 +} Elf64_Ehdr;
109 +#define EI_MAG0 0
110 +#define ELFMAG0 0x7f
112 +#define EI_MAG1 1
113 +#define ELFMAG1 'E'
115 +#define EI_MAG2 2
116 +#define ELFMAG2 'L'
118 +#define EI_MAG3 3
119 +#define ELFMAG3 'F'
122 +#define ELFMAG "\177ELF"
123 +#define SELFMAG 4
125 +#define EI_CLASS 4
126 +#define ELFCLASSNONE 0
127 +#define ELFCLASS32 1
128 +#define ELFCLASS64 2
129 +#define ELFCLASSNUM 3
131 +#define EI_DATA 5
132 +#define ELFDATANONE 0
133 +#define ELFDATA2LSB 1
134 +#define ELFDATA2MSB 2
135 +#define ELFDATANUM 3
137 +#define EI_VERSION 6
140 +#define EI_OSABI 7
141 +#define ELFOSABI_NONE 0
142 +#define ELFOSABI_SYSV 0
143 +#define ELFOSABI_HPUX 1
144 +#define ELFOSABI_NETBSD 2
145 +#define ELFOSABI_LINUX 3
146 +#define ELFOSABI_GNU 3
147 +#define ELFOSABI_SOLARIS 6
148 +#define ELFOSABI_AIX 7
149 +#define ELFOSABI_IRIX 8
150 +#define ELFOSABI_FREEBSD 9
151 +#define ELFOSABI_TRU64 10
152 +#define ELFOSABI_MODESTO 11
153 +#define ELFOSABI_OPENBSD 12
154 +#define ELFOSABI_ARM 97
155 +#define ELFOSABI_STANDALONE 255
157 +#define EI_ABIVERSION 8
159 +#define EI_PAD 9
163 +#define ET_NONE 0
164 +#define ET_REL 1
165 +#define ET_EXEC 2
166 +#define ET_DYN 3
167 +#define ET_CORE 4
168 +#define ET_NUM 5
169 +#define ET_LOOS 0xfe00
170 +#define ET_HIOS 0xfeff
171 +#define ET_LOPROC 0xff00
172 +#define ET_HIPROC 0xffff
176 +#define EM_NONE 0
177 +#define EM_M32 1
178 +#define EM_SPARC 2
179 +#define EM_386 3
180 +#define EM_68K 4
181 +#define EM_88K 5
182 +#define EM_860 7
183 +#define EM_MIPS 8
184 +#define EM_S370 9
185 +#define EM_MIPS_RS3_LE 10
187 +#define EM_PARISC 15
188 +#define EM_VPP500 17
189 +#define EM_SPARC32PLUS 18
190 +#define EM_960 19
191 +#define EM_PPC 20
192 +#define EM_PPC64 21
193 +#define EM_S390 22
195 +#define EM_V800 36
196 +#define EM_FR20 37
197 +#define EM_RH32 38
198 +#define EM_RCE 39
199 +#define EM_ARM 40
200 +#define EM_FAKE_ALPHA 41
201 +#define EM_SH 42
202 +#define EM_SPARCV9 43
203 +#define EM_TRICORE 44
204 +#define EM_ARC 45
205 +#define EM_H8_300 46
206 +#define EM_H8_300H 47
207 +#define EM_H8S 48
208 +#define EM_H8_500 49
209 +#define EM_IA_64 50
210 +#define EM_MIPS_X 51
211 +#define EM_COLDFIRE 52
212 +#define EM_68HC12 53
213 +#define EM_MMA 54
214 +#define EM_PCP 55
215 +#define EM_NCPU 56
216 +#define EM_NDR1 57
217 +#define EM_STARCORE 58
218 +#define EM_ME16 59
219 +#define EM_ST100 60
220 +#define EM_TINYJ 61
221 +#define EM_X86_64 62
222 +#define EM_PDSP 63
224 +#define EM_FX66 66
225 +#define EM_ST9PLUS 67
226 +#define EM_ST7 68
227 +#define EM_68HC16 69
228 +#define EM_68HC11 70
229 +#define EM_68HC08 71
230 +#define EM_68HC05 72
231 +#define EM_SVX 73
232 +#define EM_ST19 74
233 +#define EM_VAX 75
234 +#define EM_CRIS 76
235 +#define EM_JAVELIN 77
236 +#define EM_FIREPATH 78
237 +#define EM_ZSP 79
238 +#define EM_MMIX 80
239 +#define EM_HUANY 81
240 +#define EM_PRISM 82
241 +#define EM_AVR 83
242 +#define EM_FR30 84
243 +#define EM_D10V 85
244 +#define EM_D30V 86
245 +#define EM_V850 87
246 +#define EM_M32R 88
247 +#define EM_MN10300 89
248 +#define EM_MN10200 90
249 +#define EM_PJ 91
250 +#define EM_OPENRISC 92
251 +#define EM_ARC_A5 93
252 +#define EM_XTENSA 94
253 +#define EM_AARCH64 183
254 +#define EM_TILEPRO 188
255 +#define EM_MICROBLAZE 189
256 +#define EM_TILEGX 191
257 +#define EM_NUM 192
258 +#define EM_ALPHA 0x9026
260 +#define EV_NONE 0
261 +#define EV_CURRENT 1
262 +#define EV_NUM 2
264 +typedef struct {
265 + Elf32_Word sh_name;
266 + Elf32_Word sh_type;
267 + Elf32_Word sh_flags;
268 + Elf32_Addr sh_addr;
269 + Elf32_Off sh_offset;
270 + Elf32_Word sh_size;
271 + Elf32_Word sh_link;
272 + Elf32_Word sh_info;
273 + Elf32_Word sh_addralign;
274 + Elf32_Word sh_entsize;
275 +} Elf32_Shdr;
277 +typedef struct {
278 + Elf64_Word sh_name;
279 + Elf64_Word sh_type;
280 + Elf64_Xword sh_flags;
281 + Elf64_Addr sh_addr;
282 + Elf64_Off sh_offset;
283 + Elf64_Xword sh_size;
284 + Elf64_Word sh_link;
285 + Elf64_Word sh_info;
286 + Elf64_Xword sh_addralign;
287 + Elf64_Xword sh_entsize;
288 +} Elf64_Shdr;
292 +#define SHN_UNDEF 0
293 +#define SHN_LORESERVE 0xff00
294 +#define SHN_LOPROC 0xff00
295 +#define SHN_BEFORE 0xff00
297 +#define SHN_AFTER 0xff01
299 +#define SHN_HIPROC 0xff1f
300 +#define SHN_LOOS 0xff20
301 +#define SHN_HIOS 0xff3f
302 +#define SHN_ABS 0xfff1
303 +#define SHN_COMMON 0xfff2
304 +#define SHN_XINDEX 0xffff
305 +#define SHN_HIRESERVE 0xffff
309 +#define SHT_NULL 0
310 +#define SHT_PROGBITS 1
311 +#define SHT_SYMTAB 2
312 +#define SHT_STRTAB 3
313 +#define SHT_RELA 4
314 +#define SHT_HASH 5
315 +#define SHT_DYNAMIC 6
316 +#define SHT_NOTE 7
317 +#define SHT_NOBITS 8
318 +#define SHT_REL 9
319 +#define SHT_SHLIB 10
320 +#define SHT_DYNSYM 11
321 +#define SHT_INIT_ARRAY 14
322 +#define SHT_FINI_ARRAY 15
323 +#define SHT_PREINIT_ARRAY 16
324 +#define SHT_GROUP 17
325 +#define SHT_SYMTAB_SHNDX 18
326 +#define SHT_NUM 19
327 +#define SHT_LOOS 0x60000000
328 +#define SHT_GNU_ATTRIBUTES 0x6ffffff5
329 +#define SHT_GNU_HASH 0x6ffffff6
330 +#define SHT_GNU_LIBLIST 0x6ffffff7
331 +#define SHT_CHECKSUM 0x6ffffff8
332 +#define SHT_LOSUNW 0x6ffffffa
333 +#define SHT_SUNW_move 0x6ffffffa
334 +#define SHT_SUNW_COMDAT 0x6ffffffb
335 +#define SHT_SUNW_syminfo 0x6ffffffc
336 +#define SHT_GNU_verdef 0x6ffffffd
337 +#define SHT_GNU_verneed 0x6ffffffe
338 +#define SHT_GNU_versym 0x6fffffff
339 +#define SHT_HISUNW 0x6fffffff
340 +#define SHT_HIOS 0x6fffffff
341 +#define SHT_LOPROC 0x70000000
342 +#define SHT_HIPROC 0x7fffffff
343 +#define SHT_LOUSER 0x80000000
344 +#define SHT_HIUSER 0x8fffffff
346 +#define SHF_WRITE (1 << 0)
347 +#define SHF_ALLOC (1 << 1)
348 +#define SHF_EXECINSTR (1 << 2)
349 +#define SHF_MERGE (1 << 4)
350 +#define SHF_STRINGS (1 << 5)
351 +#define SHF_INFO_LINK (1 << 6)
352 +#define SHF_LINK_ORDER (1 << 7)
353 +#define SHF_OS_NONCONFORMING (1 << 8)
355 +#define SHF_GROUP (1 << 9)
356 +#define SHF_TLS (1 << 10)
357 +#define SHF_MASKOS 0x0ff00000
358 +#define SHF_MASKPROC 0xf0000000
359 +#define SHF_ORDERED (1 << 30)
360 +#define SHF_EXCLUDE (1 << 31)
362 +#define GRP_COMDAT 0x1
364 +typedef struct {
365 + Elf32_Word st_name;
366 + Elf32_Addr st_value;
367 + Elf32_Word st_size;
368 + unsigned char st_info;
369 + unsigned char st_other;
370 + Elf32_Section st_shndx;
371 +} Elf32_Sym;
373 +typedef struct {
374 + Elf64_Word st_name;
375 + unsigned char st_info;
376 + unsigned char st_other;
377 + Elf64_Section st_shndx;
378 + Elf64_Addr st_value;
379 + Elf64_Xword st_size;
380 +} Elf64_Sym;
382 +typedef struct {
383 + Elf32_Half si_boundto;
384 + Elf32_Half si_flags;
385 +} Elf32_Syminfo;
387 +typedef struct {
388 + Elf64_Half si_boundto;
389 + Elf64_Half si_flags;
390 +} Elf64_Syminfo;
392 +#define SYMINFO_BT_SELF 0xffff
393 +#define SYMINFO_BT_PARENT 0xfffe
394 +#define SYMINFO_BT_LOWRESERVE 0xff00
396 +#define SYMINFO_FLG_DIRECT 0x0001
397 +#define SYMINFO_FLG_PASSTHRU 0x0002
398 +#define SYMINFO_FLG_COPY 0x0004
399 +#define SYMINFO_FLG_LAZYLOAD 0x0008
401 +#define SYMINFO_NONE 0
402 +#define SYMINFO_CURRENT 1
403 +#define SYMINFO_NUM 2
405 +#define ELF32_ST_BIND(val) (((unsigned char) (val)) >> 4)
406 +#define ELF32_ST_TYPE(val) ((val) & 0xf)
407 +#define ELF32_ST_INFO(bind, type) (((bind) << 4) + ((type) & 0xf))
409 +#define ELF64_ST_BIND(val) ELF32_ST_BIND (val)
410 +#define ELF64_ST_TYPE(val) ELF32_ST_TYPE (val)
411 +#define ELF64_ST_INFO(bind, type) ELF32_ST_INFO ((bind), (type))
413 +#define STB_LOCAL 0
414 +#define STB_GLOBAL 1
415 +#define STB_WEAK 2
416 +#define STB_NUM 3
417 +#define STB_LOOS 10
418 +#define STB_GNU_UNIQUE 10
419 +#define STB_HIOS 12
420 +#define STB_LOPROC 13
421 +#define STB_HIPROC 15
423 +#define STT_NOTYPE 0
424 +#define STT_OBJECT 1
425 +#define STT_FUNC 2
426 +#define STT_SECTION 3
427 +#define STT_FILE 4
428 +#define STT_COMMON 5
429 +#define STT_TLS 6
430 +#define STT_NUM 7
431 +#define STT_LOOS 10
432 +#define STT_GNU_IFUNC 10
433 +#define STT_HIOS 12
434 +#define STT_LOPROC 13
435 +#define STT_HIPROC 15
437 +#define STN_UNDEF 0
439 +#define ELF32_ST_VISIBILITY(o) ((o) & 0x03)
440 +#define ELF64_ST_VISIBILITY(o) ELF32_ST_VISIBILITY (o)
442 +#define STV_DEFAULT 0
443 +#define STV_INTERNAL 1
444 +#define STV_HIDDEN 2
445 +#define STV_PROTECTED 3
450 +typedef struct
452 + Elf32_Addr r_offset;
453 + Elf32_Word r_info;
454 +} Elf32_Rel;
456 +typedef struct {
457 + Elf64_Addr r_offset;
458 + Elf64_Xword r_info;
459 +} Elf64_Rel;
463 +typedef struct {
464 + Elf32_Addr r_offset;
465 + Elf32_Word r_info;
466 + Elf32_Sword r_addend;
467 +} Elf32_Rela;
469 +typedef struct {
470 + Elf64_Addr r_offset;
471 + Elf64_Xword r_info;
472 + Elf64_Sxword r_addend;
473 +} Elf64_Rela;
477 +#define ELF32_R_SYM(val) ((val) >> 8)
478 +#define ELF32_R_TYPE(val) ((val) & 0xff)
479 +#define ELF32_R_INFO(sym, type) (((sym) << 8) + ((type) & 0xff))
481 +#define ELF64_R_SYM(i) ((i) >> 32)
482 +#define ELF64_R_TYPE(i) ((i) & 0xffffffff)
483 +#define ELF64_R_INFO(sym,type) ((((Elf64_Xword) (sym)) << 32) + (type))
487 +typedef struct {
488 + Elf32_Word p_type;
489 + Elf32_Off p_offset;
490 + Elf32_Addr p_vaddr;
491 + Elf32_Addr p_paddr;
492 + Elf32_Word p_filesz;
493 + Elf32_Word p_memsz;
494 + Elf32_Word p_flags;
495 + Elf32_Word p_align;
496 +} Elf32_Phdr;
498 +typedef struct {
499 + Elf64_Word p_type;
500 + Elf64_Word p_flags;
501 + Elf64_Off p_offset;
502 + Elf64_Addr p_vaddr;
503 + Elf64_Addr p_paddr;
504 + Elf64_Xword p_filesz;
505 + Elf64_Xword p_memsz;
506 + Elf64_Xword p_align;
507 +} Elf64_Phdr;
511 +#define PT_NULL 0
512 +#define PT_LOAD 1
513 +#define PT_DYNAMIC 2
514 +#define PT_INTERP 3
515 +#define PT_NOTE 4
516 +#define PT_SHLIB 5
517 +#define PT_PHDR 6
518 +#define PT_TLS 7
519 +#define PT_NUM 8
520 +#define PT_LOOS 0x60000000
521 +#define PT_GNU_EH_FRAME 0x6474e550
522 +#define PT_GNU_STACK 0x6474e551
523 +#define PT_GNU_RELRO 0x6474e552
524 +#define PT_LOSUNW 0x6ffffffa
525 +#define PT_SUNWBSS 0x6ffffffa
526 +#define PT_SUNWSTACK 0x6ffffffb
527 +#define PT_HISUNW 0x6fffffff
528 +#define PT_HIOS 0x6fffffff
529 +#define PT_LOPROC 0x70000000
530 +#define PT_HIPROC 0x7fffffff
533 +#define PN_XNUM 0xffff
536 +#define PF_X (1 << 0)
537 +#define PF_W (1 << 1)
538 +#define PF_R (1 << 2)
539 +#define PF_MASKOS 0x0ff00000
540 +#define PF_MASKPROC 0xf0000000
544 +#define NT_PRSTATUS 1
545 +#define NT_FPREGSET 2
546 +#define NT_PRPSINFO 3
547 +#define NT_PRXREG 4
548 +#define NT_TASKSTRUCT 4
549 +#define NT_PLATFORM 5
550 +#define NT_AUXV 6
551 +#define NT_GWINDOWS 7
552 +#define NT_ASRS 8
553 +#define NT_PSTATUS 10
554 +#define NT_PSINFO 13
555 +#define NT_PRCRED 14
556 +#define NT_UTSNAME 15
557 +#define NT_LWPSTATUS 16
558 +#define NT_LWPSINFO 17
559 +#define NT_PRFPXREG 20
560 +#define NT_SIGINFO 0x53494749
561 +#define NT_FILE 0x46494c45
562 +#define NT_PRXFPREG 0x46e62b7f
563 +#define NT_PPC_VMX 0x100
564 +#define NT_PPC_SPE 0x101
565 +#define NT_PPC_VSX 0x102
566 +#define NT_386_TLS 0x200
567 +#define NT_386_IOPERM 0x201
568 +#define NT_X86_XSTATE 0x202
569 +#define NT_S390_HIGH_GPRS 0x300
570 +#define NT_S390_TIMER 0x301
571 +#define NT_S390_TODCMP 0x302
572 +#define NT_S390_TODPREG 0x303
573 +#define NT_S390_CTRS 0x304
574 +#define NT_S390_PREFIX 0x305
575 +#define NT_S390_LAST_BREAK 0x306
576 +#define NT_S390_SYSTEM_CALL 0x307
577 +#define NT_S390_TDB 0x308
578 +#define NT_ARM_VFP 0x400
579 +#define NT_ARM_TLS 0x401
580 +#define NT_ARM_HW_BREAK 0x402
581 +#define NT_ARM_HW_WATCH 0x403
582 +#define NT_METAG_CBUF 0x500
583 +#define NT_METAG_RPIPE 0x501
584 +#define NT_METAG_TLS 0x502
585 +#define NT_VERSION 1
590 +typedef struct {
591 + Elf32_Sword d_tag;
592 + union {
593 + Elf32_Word d_val;
594 + Elf32_Addr d_ptr;
595 + } d_un;
596 +} Elf32_Dyn;
598 +typedef struct {
599 + Elf64_Sxword d_tag;
600 + union {
601 + Elf64_Xword d_val;
602 + Elf64_Addr d_ptr;
603 + } d_un;
604 +} Elf64_Dyn;
608 +#define DT_NULL 0
609 +#define DT_NEEDED 1
610 +#define DT_PLTRELSZ 2
611 +#define DT_PLTGOT 3
612 +#define DT_HASH 4
613 +#define DT_STRTAB 5
614 +#define DT_SYMTAB 6
615 +#define DT_RELA 7
616 +#define DT_RELASZ 8
617 +#define DT_RELAENT 9
618 +#define DT_STRSZ 10
619 +#define DT_SYMENT 11
620 +#define DT_INIT 12
621 +#define DT_FINI 13
622 +#define DT_SONAME 14
623 +#define DT_RPATH 15
624 +#define DT_SYMBOLIC 16
625 +#define DT_REL 17
626 +#define DT_RELSZ 18
627 +#define DT_RELENT 19
628 +#define DT_PLTREL 20
629 +#define DT_DEBUG 21
630 +#define DT_TEXTREL 22
631 +#define DT_JMPREL 23
632 +#define DT_BIND_NOW 24
633 +#define DT_INIT_ARRAY 25
634 +#define DT_FINI_ARRAY 26
635 +#define DT_INIT_ARRAYSZ 27
636 +#define DT_FINI_ARRAYSZ 28
637 +#define DT_RUNPATH 29
638 +#define DT_FLAGS 30
639 +#define DT_ENCODING 32
640 +#define DT_PREINIT_ARRAY 32
641 +#define DT_PREINIT_ARRAYSZ 33
642 +#define DT_NUM 34
643 +#define DT_LOOS 0x6000000d
644 +#define DT_HIOS 0x6ffff000
645 +#define DT_LOPROC 0x70000000
646 +#define DT_HIPROC 0x7fffffff
647 +#define DT_PROCNUM DT_MIPS_NUM
649 +#define DT_VALRNGLO 0x6ffffd00
650 +#define DT_GNU_PRELINKED 0x6ffffdf5
651 +#define DT_GNU_CONFLICTSZ 0x6ffffdf6
652 +#define DT_GNU_LIBLISTSZ 0x6ffffdf7
653 +#define DT_CHECKSUM 0x6ffffdf8
654 +#define DT_PLTPADSZ 0x6ffffdf9
655 +#define DT_MOVEENT 0x6ffffdfa
656 +#define DT_MOVESZ 0x6ffffdfb
657 +#define DT_FEATURE_1 0x6ffffdfc
658 +#define DT_POSFLAG_1 0x6ffffdfd
660 +#define DT_SYMINSZ 0x6ffffdfe
661 +#define DT_SYMINENT 0x6ffffdff
662 +#define DT_VALRNGHI 0x6ffffdff
663 +#define DT_VALTAGIDX(tag) (DT_VALRNGHI - (tag))
664 +#define DT_VALNUM 12
666 +#define DT_ADDRRNGLO 0x6ffffe00
667 +#define DT_GNU_HASH 0x6ffffef5
668 +#define DT_TLSDESC_PLT 0x6ffffef6
669 +#define DT_TLSDESC_GOT 0x6ffffef7
670 +#define DT_GNU_CONFLICT 0x6ffffef8
671 +#define DT_GNU_LIBLIST 0x6ffffef9
672 +#define DT_CONFIG 0x6ffffefa
673 +#define DT_DEPAUDIT 0x6ffffefb
674 +#define DT_AUDIT 0x6ffffefc
675 +#define DT_PLTPAD 0x6ffffefd
676 +#define DT_MOVETAB 0x6ffffefe
677 +#define DT_SYMINFO 0x6ffffeff
678 +#define DT_ADDRRNGHI 0x6ffffeff
679 +#define DT_ADDRTAGIDX(tag) (DT_ADDRRNGHI - (tag))
680 +#define DT_ADDRNUM 11
684 +#define DT_VERSYM 0x6ffffff0
686 +#define DT_RELACOUNT 0x6ffffff9
687 +#define DT_RELCOUNT 0x6ffffffa
690 +#define DT_FLAGS_1 0x6ffffffb
691 +#define DT_VERDEF 0x6ffffffc
693 +#define DT_VERDEFNUM 0x6ffffffd
694 +#define DT_VERNEED 0x6ffffffe
696 +#define DT_VERNEEDNUM 0x6fffffff
697 +#define DT_VERSIONTAGIDX(tag) (DT_VERNEEDNUM - (tag))
698 +#define DT_VERSIONTAGNUM 16
702 +#define DT_AUXILIARY 0x7ffffffd
703 +#define DT_FILTER 0x7fffffff
704 +#define DT_EXTRATAGIDX(tag) ((Elf32_Word)-((Elf32_Sword) (tag) <<1>>1)-1)
705 +#define DT_EXTRANUM 3
708 +#define DF_ORIGIN 0x00000001
709 +#define DF_SYMBOLIC 0x00000002
710 +#define DF_TEXTREL 0x00000004
711 +#define DF_BIND_NOW 0x00000008
712 +#define DF_STATIC_TLS 0x00000010
716 +#define DF_1_NOW 0x00000001
717 +#define DF_1_GLOBAL 0x00000002
718 +#define DF_1_GROUP 0x00000004
719 +#define DF_1_NODELETE 0x00000008
720 +#define DF_1_LOADFLTR 0x00000010
721 +#define DF_1_INITFIRST 0x00000020
722 +#define DF_1_NOOPEN 0x00000040
723 +#define DF_1_ORIGIN 0x00000080
724 +#define DF_1_DIRECT 0x00000100
725 +#define DF_1_TRANS 0x00000200
726 +#define DF_1_INTERPOSE 0x00000400
727 +#define DF_1_NODEFLIB 0x00000800
728 +#define DF_1_NODUMP 0x00001000
729 +#define DF_1_CONFALT 0x00002000
730 +#define DF_1_ENDFILTEE 0x00004000
731 +#define DF_1_DISPRELDNE 0x00008000
732 +#define DF_1_DISPRELPND 0x00010000
733 +#define DF_1_NODIRECT 0x00020000
734 +#define DF_1_IGNMULDEF 0x00040000
735 +#define DF_1_NOKSYMS 0x00080000
736 +#define DF_1_NOHDR 0x00100000
737 +#define DF_1_EDITED 0x00200000
738 +#define DF_1_NORELOC 0x00400000
739 +#define DF_1_SYMINTPOSE 0x00800000
740 +#define DF_1_GLOBAUDIT 0x01000000
741 +#define DF_1_SINGLETON 0x02000000
743 +#define DTF_1_PARINIT 0x00000001
744 +#define DTF_1_CONFEXP 0x00000002
747 +#define DF_P1_LAZYLOAD 0x00000001
748 +#define DF_P1_GROUPPERM 0x00000002
753 +typedef struct {
754 + Elf32_Half vd_version;
755 + Elf32_Half vd_flags;
756 + Elf32_Half vd_ndx;
757 + Elf32_Half vd_cnt;
758 + Elf32_Word vd_hash;
759 + Elf32_Word vd_aux;
760 + Elf32_Word vd_next;
761 +} Elf32_Verdef;
763 +typedef struct {
764 + Elf64_Half vd_version;
765 + Elf64_Half vd_flags;
766 + Elf64_Half vd_ndx;
767 + Elf64_Half vd_cnt;
768 + Elf64_Word vd_hash;
769 + Elf64_Word vd_aux;
770 + Elf64_Word vd_next;
771 +} Elf64_Verdef;
775 +#define VER_DEF_NONE 0
776 +#define VER_DEF_CURRENT 1
777 +#define VER_DEF_NUM 2
780 +#define VER_FLG_BASE 0x1
781 +#define VER_FLG_WEAK 0x2
784 +#define VER_NDX_LOCAL 0
785 +#define VER_NDX_GLOBAL 1
786 +#define VER_NDX_LORESERVE 0xff00
787 +#define VER_NDX_ELIMINATE 0xff01
791 +typedef struct {
792 + Elf32_Word vda_name;
793 + Elf32_Word vda_next;
794 +} Elf32_Verdaux;
796 +typedef struct {
797 + Elf64_Word vda_name;
798 + Elf64_Word vda_next;
799 +} Elf64_Verdaux;
804 +typedef struct {
805 + Elf32_Half vn_version;
806 + Elf32_Half vn_cnt;
807 + Elf32_Word vn_file;
808 + Elf32_Word vn_aux;
809 + Elf32_Word vn_next;
810 +} Elf32_Verneed;
812 +typedef struct {
813 + Elf64_Half vn_version;
814 + Elf64_Half vn_cnt;
815 + Elf64_Word vn_file;
816 + Elf64_Word vn_aux;
817 + Elf64_Word vn_next;
818 +} Elf64_Verneed;
822 +#define VER_NEED_NONE 0
823 +#define VER_NEED_CURRENT 1
824 +#define VER_NEED_NUM 2
828 +typedef struct {
829 + Elf32_Word vna_hash;
830 + Elf32_Half vna_flags;
831 + Elf32_Half vna_other;
832 + Elf32_Word vna_name;
833 + Elf32_Word vna_next;
834 +} Elf32_Vernaux;
836 +typedef struct {
837 + Elf64_Word vna_hash;
838 + Elf64_Half vna_flags;
839 + Elf64_Half vna_other;
840 + Elf64_Word vna_name;
841 + Elf64_Word vna_next;
842 +} Elf64_Vernaux;
846 +#define VER_FLG_WEAK 0x2
850 +typedef struct {
851 + uint32_t a_type;
852 + union {
853 + uint32_t a_val;
854 + } a_un;
855 +} Elf32_auxv_t;
857 +typedef struct {
858 + uint64_t a_type;
859 + union {
860 + uint64_t a_val;
861 + } a_un;
862 +} Elf64_auxv_t;
866 +#define AT_NULL 0
867 +#define AT_IGNORE 1
868 +#define AT_EXECFD 2
869 +#define AT_PHDR 3
870 +#define AT_PHENT 4
871 +#define AT_PHNUM 5
872 +#define AT_PAGESZ 6
873 +#define AT_BASE 7
874 +#define AT_FLAGS 8
875 +#define AT_ENTRY 9
876 +#define AT_NOTELF 10
877 +#define AT_UID 11
878 +#define AT_EUID 12
879 +#define AT_GID 13
880 +#define AT_EGID 14
881 +#define AT_CLKTCK 17
884 +#define AT_PLATFORM 15
885 +#define AT_HWCAP 16
890 +#define AT_FPUCW 18
893 +#define AT_DCACHEBSIZE 19
894 +#define AT_ICACHEBSIZE 20
895 +#define AT_UCACHEBSIZE 21
899 +#define AT_IGNOREPPC 22
901 +#define AT_SECURE 23
903 +#define AT_BASE_PLATFORM 24
905 +#define AT_RANDOM 25
907 +#define AT_HWCAP2 26
909 +#define AT_EXECFN 31
913 +#define AT_SYSINFO 32
914 +#define AT_SYSINFO_EHDR 33
918 +#define AT_L1I_CACHESHAPE 34
919 +#define AT_L1D_CACHESHAPE 35
920 +#define AT_L2_CACHESHAPE 36
921 +#define AT_L3_CACHESHAPE 37
926 +typedef struct {
927 + Elf32_Word n_namesz;
928 + Elf32_Word n_descsz;
929 + Elf32_Word n_type;
930 +} Elf32_Nhdr;
932 +typedef struct {
933 + Elf64_Word n_namesz;
934 + Elf64_Word n_descsz;
935 + Elf64_Word n_type;
936 +} Elf64_Nhdr;
941 +#define ELF_NOTE_SOLARIS "SUNW Solaris"
944 +#define ELF_NOTE_GNU "GNU"
950 +#define ELF_NOTE_PAGESIZE_HINT 1
953 +#define NT_GNU_ABI_TAG 1
954 +#define ELF_NOTE_ABI NT_GNU_ABI_TAG
958 +#define ELF_NOTE_OS_LINUX 0
959 +#define ELF_NOTE_OS_GNU 1
960 +#define ELF_NOTE_OS_SOLARIS2 2
961 +#define ELF_NOTE_OS_FREEBSD 3
963 +#define NT_GNU_BUILD_ID 3
964 +#define NT_GNU_GOLD_VERSION 4
968 +typedef struct {
969 + Elf32_Xword m_value;
970 + Elf32_Word m_info;
971 + Elf32_Word m_poffset;
972 + Elf32_Half m_repeat;
973 + Elf32_Half m_stride;
974 +} Elf32_Move;
976 +typedef struct {
977 + Elf64_Xword m_value;
978 + Elf64_Xword m_info;
979 + Elf64_Xword m_poffset;
980 + Elf64_Half m_repeat;
981 + Elf64_Half m_stride;
982 +} Elf64_Move;
985 +#define ELF32_M_SYM(info) ((info) >> 8)
986 +#define ELF32_M_SIZE(info) ((unsigned char) (info))
987 +#define ELF32_M_INFO(sym, size) (((sym) << 8) + (unsigned char) (size))
989 +#define ELF64_M_SYM(info) ELF32_M_SYM (info)
990 +#define ELF64_M_SIZE(info) ELF32_M_SIZE (info)
991 +#define ELF64_M_INFO(sym, size) ELF32_M_INFO (sym, size)
993 +#define EF_CPU32 0x00810000
995 +#define R_68K_NONE 0
996 +#define R_68K_32 1
997 +#define R_68K_16 2
998 +#define R_68K_8 3
999 +#define R_68K_PC32 4
1000 +#define R_68K_PC16 5
1001 +#define R_68K_PC8 6
1002 +#define R_68K_GOT32 7
1003 +#define R_68K_GOT16 8
1004 +#define R_68K_GOT8 9
1005 +#define R_68K_GOT32O 10
1006 +#define R_68K_GOT16O 11
1007 +#define R_68K_GOT8O 12
1008 +#define R_68K_PLT32 13
1009 +#define R_68K_PLT16 14
1010 +#define R_68K_PLT8 15
1011 +#define R_68K_PLT32O 16
1012 +#define R_68K_PLT16O 17
1013 +#define R_68K_PLT8O 18
1014 +#define R_68K_COPY 19
1015 +#define R_68K_GLOB_DAT 20
1016 +#define R_68K_JMP_SLOT 21
1017 +#define R_68K_RELATIVE 22
1018 +#define R_68K_NUM 23
1020 +#define R_386_NONE 0
1021 +#define R_386_32 1
1022 +#define R_386_PC32 2
1023 +#define R_386_GOT32 3
1024 +#define R_386_PLT32 4
1025 +#define R_386_COPY 5
1026 +#define R_386_GLOB_DAT 6
1027 +#define R_386_JMP_SLOT 7
1028 +#define R_386_RELATIVE 8
1029 +#define R_386_GOTOFF 9
1030 +#define R_386_GOTPC 10
1031 +#define R_386_32PLT 11
1032 +#define R_386_TLS_TPOFF 14
1033 +#define R_386_TLS_IE 15
1034 +#define R_386_TLS_GOTIE 16
1035 +#define R_386_TLS_LE 17
1036 +#define R_386_TLS_GD 18
1037 +#define R_386_TLS_LDM 19
1038 +#define R_386_16 20
1039 +#define R_386_PC16 21
1040 +#define R_386_8 22
1041 +#define R_386_PC8 23
1042 +#define R_386_TLS_GD_32 24
1043 +#define R_386_TLS_GD_PUSH 25
1044 +#define R_386_TLS_GD_CALL 26
1045 +#define R_386_TLS_GD_POP 27
1046 +#define R_386_TLS_LDM_32 28
1047 +#define R_386_TLS_LDM_PUSH 29
1048 +#define R_386_TLS_LDM_CALL 30
1049 +#define R_386_TLS_LDM_POP 31
1050 +#define R_386_TLS_LDO_32 32
1051 +#define R_386_TLS_IE_32 33
1052 +#define R_386_TLS_LE_32 34
1053 +#define R_386_TLS_DTPMOD32 35
1054 +#define R_386_TLS_DTPOFF32 36
1055 +#define R_386_TLS_TPOFF32 37
1056 +#define R_386_SIZE32 38
1057 +#define R_386_TLS_GOTDESC 39
1058 +#define R_386_TLS_DESC_CALL 40
1059 +#define R_386_TLS_DESC 41
1060 +#define R_386_IRELATIVE 42
1061 +#define R_386_NUM 43
1067 +#define STT_SPARC_REGISTER 13
1071 +#define EF_SPARCV9_MM 3
1072 +#define EF_SPARCV9_TSO 0
1073 +#define EF_SPARCV9_PSO 1
1074 +#define EF_SPARCV9_RMO 2
1075 +#define EF_SPARC_LEDATA 0x800000
1076 +#define EF_SPARC_EXT_MASK 0xFFFF00
1077 +#define EF_SPARC_32PLUS 0x000100
1078 +#define EF_SPARC_SUN_US1 0x000200
1079 +#define EF_SPARC_HAL_R1 0x000400
1080 +#define EF_SPARC_SUN_US3 0x000800
1084 +#define R_SPARC_NONE 0
1085 +#define R_SPARC_8 1
1086 +#define R_SPARC_16 2
1087 +#define R_SPARC_32 3
1088 +#define R_SPARC_DISP8 4
1089 +#define R_SPARC_DISP16 5
1090 +#define R_SPARC_DISP32 6
1091 +#define R_SPARC_WDISP30 7
1092 +#define R_SPARC_WDISP22 8
1093 +#define R_SPARC_HI22 9
1094 +#define R_SPARC_22 10
1095 +#define R_SPARC_13 11
1096 +#define R_SPARC_LO10 12
1097 +#define R_SPARC_GOT10 13
1098 +#define R_SPARC_GOT13 14
1099 +#define R_SPARC_GOT22 15
1100 +#define R_SPARC_PC10 16
1101 +#define R_SPARC_PC22 17
1102 +#define R_SPARC_WPLT30 18
1103 +#define R_SPARC_COPY 19
1104 +#define R_SPARC_GLOB_DAT 20
1105 +#define R_SPARC_JMP_SLOT 21
1106 +#define R_SPARC_RELATIVE 22
1107 +#define R_SPARC_UA32 23
1111 +#define R_SPARC_PLT32 24
1112 +#define R_SPARC_HIPLT22 25
1113 +#define R_SPARC_LOPLT10 26
1114 +#define R_SPARC_PCPLT32 27
1115 +#define R_SPARC_PCPLT22 28
1116 +#define R_SPARC_PCPLT10 29
1117 +#define R_SPARC_10 30
1118 +#define R_SPARC_11 31
1119 +#define R_SPARC_64 32
1120 +#define R_SPARC_OLO10 33
1121 +#define R_SPARC_HH22 34
1122 +#define R_SPARC_HM10 35
1123 +#define R_SPARC_LM22 36
1124 +#define R_SPARC_PC_HH22 37
1125 +#define R_SPARC_PC_HM10 38
1126 +#define R_SPARC_PC_LM22 39
1127 +#define R_SPARC_WDISP16 40
1128 +#define R_SPARC_WDISP19 41
1129 +#define R_SPARC_GLOB_JMP 42
1130 +#define R_SPARC_7 43
1131 +#define R_SPARC_5 44
1132 +#define R_SPARC_6 45
1133 +#define R_SPARC_DISP64 46
1134 +#define R_SPARC_PLT64 47
1135 +#define R_SPARC_HIX22 48
1136 +#define R_SPARC_LOX10 49
1137 +#define R_SPARC_H44 50
1138 +#define R_SPARC_M44 51
1139 +#define R_SPARC_L44 52
1140 +#define R_SPARC_REGISTER 53
1141 +#define R_SPARC_UA64 54
1142 +#define R_SPARC_UA16 55
1143 +#define R_SPARC_TLS_GD_HI22 56
1144 +#define R_SPARC_TLS_GD_LO10 57
1145 +#define R_SPARC_TLS_GD_ADD 58
1146 +#define R_SPARC_TLS_GD_CALL 59
1147 +#define R_SPARC_TLS_LDM_HI22 60
1148 +#define R_SPARC_TLS_LDM_LO10 61
1149 +#define R_SPARC_TLS_LDM_ADD 62
1150 +#define R_SPARC_TLS_LDM_CALL 63
1151 +#define R_SPARC_TLS_LDO_HIX22 64
1152 +#define R_SPARC_TLS_LDO_LOX10 65
1153 +#define R_SPARC_TLS_LDO_ADD 66
1154 +#define R_SPARC_TLS_IE_HI22 67
1155 +#define R_SPARC_TLS_IE_LO10 68
1156 +#define R_SPARC_TLS_IE_LD 69
1157 +#define R_SPARC_TLS_IE_LDX 70
1158 +#define R_SPARC_TLS_IE_ADD 71
1159 +#define R_SPARC_TLS_LE_HIX22 72
1160 +#define R_SPARC_TLS_LE_LOX10 73
1161 +#define R_SPARC_TLS_DTPMOD32 74
1162 +#define R_SPARC_TLS_DTPMOD64 75
1163 +#define R_SPARC_TLS_DTPOFF32 76
1164 +#define R_SPARC_TLS_DTPOFF64 77
1165 +#define R_SPARC_TLS_TPOFF32 78
1166 +#define R_SPARC_TLS_TPOFF64 79
1167 +#define R_SPARC_GOTDATA_HIX22 80
1168 +#define R_SPARC_GOTDATA_LOX10 81
1169 +#define R_SPARC_GOTDATA_OP_HIX22 82
1170 +#define R_SPARC_GOTDATA_OP_LOX10 83
1171 +#define R_SPARC_GOTDATA_OP 84
1172 +#define R_SPARC_H34 85
1173 +#define R_SPARC_SIZE32 86
1174 +#define R_SPARC_SIZE64 87
1175 +#define R_SPARC_GNU_VTINHERIT 250
1176 +#define R_SPARC_GNU_VTENTRY 251
1177 +#define R_SPARC_REV32 252
1179 +#define R_SPARC_NUM 253
1183 +#define DT_SPARC_REGISTER 0x70000001
1184 +#define DT_SPARC_NUM 2
1187 +#define EF_MIPS_NOREORDER 1
1188 +#define EF_MIPS_PIC 2
1189 +#define EF_MIPS_CPIC 4
1190 +#define EF_MIPS_XGOT 8
1191 +#define EF_MIPS_64BIT_WHIRL 16
1192 +#define EF_MIPS_ABI2 32
1193 +#define EF_MIPS_ABI_ON32 64
1194 +#define EF_MIPS_ARCH 0xf0000000
1198 +#define EF_MIPS_ARCH_1 0x00000000
1199 +#define EF_MIPS_ARCH_2 0x10000000
1200 +#define EF_MIPS_ARCH_3 0x20000000
1201 +#define EF_MIPS_ARCH_4 0x30000000
1202 +#define EF_MIPS_ARCH_5 0x40000000
1203 +#define EF_MIPS_ARCH_32 0x50000000
1204 +#define EF_MIPS_ARCH_64 0x60000000
1205 +#define EF_MIPS_ARCH_32R2 0x70000000
1206 +#define EF_MIPS_ARCH_64R2 0x80000000
1209 +#define E_MIPS_ARCH_1 0x00000000
1210 +#define E_MIPS_ARCH_2 0x10000000
1211 +#define E_MIPS_ARCH_3 0x20000000
1212 +#define E_MIPS_ARCH_4 0x30000000
1213 +#define E_MIPS_ARCH_5 0x40000000
1214 +#define E_MIPS_ARCH_32 0x50000000
1215 +#define E_MIPS_ARCH_64 0x60000000
1219 +#define SHN_MIPS_ACOMMON 0xff00
1220 +#define SHN_MIPS_TEXT 0xff01
1221 +#define SHN_MIPS_DATA 0xff02
1222 +#define SHN_MIPS_SCOMMON 0xff03
1223 +#define SHN_MIPS_SUNDEFINED 0xff04
1227 +#define SHT_MIPS_LIBLIST 0x70000000
1228 +#define SHT_MIPS_MSYM 0x70000001
1229 +#define SHT_MIPS_CONFLICT 0x70000002
1230 +#define SHT_MIPS_GPTAB 0x70000003
1231 +#define SHT_MIPS_UCODE 0x70000004
1232 +#define SHT_MIPS_DEBUG 0x70000005
1233 +#define SHT_MIPS_REGINFO 0x70000006
1234 +#define SHT_MIPS_PACKAGE 0x70000007
1235 +#define SHT_MIPS_PACKSYM 0x70000008
1236 +#define SHT_MIPS_RELD 0x70000009
1237 +#define SHT_MIPS_IFACE 0x7000000b
1238 +#define SHT_MIPS_CONTENT 0x7000000c
1239 +#define SHT_MIPS_OPTIONS 0x7000000d
1240 +#define SHT_MIPS_SHDR 0x70000010
1241 +#define SHT_MIPS_FDESC 0x70000011
1242 +#define SHT_MIPS_EXTSYM 0x70000012
1243 +#define SHT_MIPS_DENSE 0x70000013
1244 +#define SHT_MIPS_PDESC 0x70000014
1245 +#define SHT_MIPS_LOCSYM 0x70000015
1246 +#define SHT_MIPS_AUXSYM 0x70000016
1247 +#define SHT_MIPS_OPTSYM 0x70000017
1248 +#define SHT_MIPS_LOCSTR 0x70000018
1249 +#define SHT_MIPS_LINE 0x70000019
1250 +#define SHT_MIPS_RFDESC 0x7000001a
1251 +#define SHT_MIPS_DELTASYM 0x7000001b
1252 +#define SHT_MIPS_DELTAINST 0x7000001c
1253 +#define SHT_MIPS_DELTACLASS 0x7000001d
1254 +#define SHT_MIPS_DWARF 0x7000001e
1255 +#define SHT_MIPS_DELTADECL 0x7000001f
1256 +#define SHT_MIPS_SYMBOL_LIB 0x70000020
1257 +#define SHT_MIPS_EVENTS 0x70000021
1258 +#define SHT_MIPS_TRANSLATE 0x70000022
1259 +#define SHT_MIPS_PIXIE 0x70000023
1260 +#define SHT_MIPS_XLATE 0x70000024
1261 +#define SHT_MIPS_XLATE_DEBUG 0x70000025
1262 +#define SHT_MIPS_WHIRL 0x70000026
1263 +#define SHT_MIPS_EH_REGION 0x70000027
1264 +#define SHT_MIPS_XLATE_OLD 0x70000028
1265 +#define SHT_MIPS_PDR_EXCEPTION 0x70000029
1269 +#define SHF_MIPS_GPREL 0x10000000
1270 +#define SHF_MIPS_MERGE 0x20000000
1271 +#define SHF_MIPS_ADDR 0x40000000
1272 +#define SHF_MIPS_STRINGS 0x80000000
1273 +#define SHF_MIPS_NOSTRIP 0x08000000
1274 +#define SHF_MIPS_LOCAL 0x04000000
1275 +#define SHF_MIPS_NAMES 0x02000000
1276 +#define SHF_MIPS_NODUPE 0x01000000
1282 +#define STO_MIPS_DEFAULT 0x0
1283 +#define STO_MIPS_INTERNAL 0x1
1284 +#define STO_MIPS_HIDDEN 0x2
1285 +#define STO_MIPS_PROTECTED 0x3
1286 +#define STO_MIPS_PLT 0x8
1287 +#define STO_MIPS_SC_ALIGN_UNUSED 0xff
1290 +#define STB_MIPS_SPLIT_COMMON 13
1294 +typedef union {
1295 + struct {
1296 + Elf32_Word gt_current_g_value;
1297 + Elf32_Word gt_unused;
1298 + } gt_header;
1299 + struct {
1300 + Elf32_Word gt_g_value;
1301 + Elf32_Word gt_bytes;
1302 + } gt_entry;
1303 +} Elf32_gptab;
1307 +typedef struct {
1308 + Elf32_Word ri_gprmask;
1309 + Elf32_Word ri_cprmask[4];
1310 + Elf32_Sword ri_gp_value;
1311 +} Elf32_RegInfo;
1315 +typedef struct {
1316 + unsigned char kind;
1318 + unsigned char size;
1319 + Elf32_Section section;
1321 + Elf32_Word info;
1322 +} Elf_Options;
1326 +#define ODK_NULL 0
1327 +#define ODK_REGINFO 1
1328 +#define ODK_EXCEPTIONS 2
1329 +#define ODK_PAD 3
1330 +#define ODK_HWPATCH 4
1331 +#define ODK_FILL 5
1332 +#define ODK_TAGS 6
1333 +#define ODK_HWAND 7
1334 +#define ODK_HWOR 8
1338 +#define OEX_FPU_MIN 0x1f
1339 +#define OEX_FPU_MAX 0x1f00
1340 +#define OEX_PAGE0 0x10000
1341 +#define OEX_SMM 0x20000
1342 +#define OEX_FPDBUG 0x40000
1343 +#define OEX_PRECISEFP OEX_FPDBUG
1344 +#define OEX_DISMISS 0x80000
1346 +#define OEX_FPU_INVAL 0x10
1347 +#define OEX_FPU_DIV0 0x08
1348 +#define OEX_FPU_OFLO 0x04
1349 +#define OEX_FPU_UFLO 0x02
1350 +#define OEX_FPU_INEX 0x01
1354 +#define OHW_R4KEOP 0x1
1355 +#define OHW_R8KPFETCH 0x2
1356 +#define OHW_R5KEOP 0x4
1357 +#define OHW_R5KCVTL 0x8
1359 +#define OPAD_PREFIX 0x1
1360 +#define OPAD_POSTFIX 0x2
1361 +#define OPAD_SYMBOL 0x4
1365 +typedef struct {
1366 + Elf32_Word hwp_flags1;
1367 + Elf32_Word hwp_flags2;
1368 +} Elf_Options_Hw;
1372 +#define OHWA0_R4KEOP_CHECKED 0x00000001
1373 +#define OHWA1_R4KEOP_CLEAN 0x00000002
1377 +#define R_MIPS_NONE 0
1378 +#define R_MIPS_16 1
1379 +#define R_MIPS_32 2
1380 +#define R_MIPS_REL32 3
1381 +#define R_MIPS_26 4
1382 +#define R_MIPS_HI16 5
1383 +#define R_MIPS_LO16 6
1384 +#define R_MIPS_GPREL16 7
1385 +#define R_MIPS_LITERAL 8
1386 +#define R_MIPS_GOT16 9
1387 +#define R_MIPS_PC16 10
1388 +#define R_MIPS_CALL16 11
1389 +#define R_MIPS_GPREL32 12
1391 +#define R_MIPS_SHIFT5 16
1392 +#define R_MIPS_SHIFT6 17
1393 +#define R_MIPS_64 18
1394 +#define R_MIPS_GOT_DISP 19
1395 +#define R_MIPS_GOT_PAGE 20
1396 +#define R_MIPS_GOT_OFST 21
1397 +#define R_MIPS_GOT_HI16 22
1398 +#define R_MIPS_GOT_LO16 23
1399 +#define R_MIPS_SUB 24
1400 +#define R_MIPS_INSERT_A 25
1401 +#define R_MIPS_INSERT_B 26
1402 +#define R_MIPS_DELETE 27
1403 +#define R_MIPS_HIGHER 28
1404 +#define R_MIPS_HIGHEST 29
1405 +#define R_MIPS_CALL_HI16 30
1406 +#define R_MIPS_CALL_LO16 31
1407 +#define R_MIPS_SCN_DISP 32
1408 +#define R_MIPS_REL16 33
1409 +#define R_MIPS_ADD_IMMEDIATE 34
1410 +#define R_MIPS_PJUMP 35
1411 +#define R_MIPS_RELGOT 36
1412 +#define R_MIPS_JALR 37
1413 +#define R_MIPS_TLS_DTPMOD32 38
1414 +#define R_MIPS_TLS_DTPREL32 39
1415 +#define R_MIPS_TLS_DTPMOD64 40
1416 +#define R_MIPS_TLS_DTPREL64 41
1417 +#define R_MIPS_TLS_GD 42
1418 +#define R_MIPS_TLS_LDM 43
1419 +#define R_MIPS_TLS_DTPREL_HI16 44
1420 +#define R_MIPS_TLS_DTPREL_LO16 45
1421 +#define R_MIPS_TLS_GOTTPREL 46
1422 +#define R_MIPS_TLS_TPREL32 47
1423 +#define R_MIPS_TLS_TPREL64 48
1424 +#define R_MIPS_TLS_TPREL_HI16 49
1425 +#define R_MIPS_TLS_TPREL_LO16 50
1426 +#define R_MIPS_GLOB_DAT 51
1427 +#define R_MIPS_COPY 126
1428 +#define R_MIPS_JUMP_SLOT 127
1430 +#define R_MIPS_NUM 128
1434 +#define PT_MIPS_REGINFO 0x70000000
1435 +#define PT_MIPS_RTPROC 0x70000001
1436 +#define PT_MIPS_OPTIONS 0x70000002
1440 +#define PF_MIPS_LOCAL 0x10000000
1444 +#define DT_MIPS_RLD_VERSION 0x70000001
1445 +#define DT_MIPS_TIME_STAMP 0x70000002
1446 +#define DT_MIPS_ICHECKSUM 0x70000003
1447 +#define DT_MIPS_IVERSION 0x70000004
1448 +#define DT_MIPS_FLAGS 0x70000005
1449 +#define DT_MIPS_BASE_ADDRESS 0x70000006
1450 +#define DT_MIPS_MSYM 0x70000007
1451 +#define DT_MIPS_CONFLICT 0x70000008
1452 +#define DT_MIPS_LIBLIST 0x70000009
1453 +#define DT_MIPS_LOCAL_GOTNO 0x7000000a
1454 +#define DT_MIPS_CONFLICTNO 0x7000000b
1455 +#define DT_MIPS_LIBLISTNO 0x70000010
1456 +#define DT_MIPS_SYMTABNO 0x70000011
1457 +#define DT_MIPS_UNREFEXTNO 0x70000012
1458 +#define DT_MIPS_GOTSYM 0x70000013
1459 +#define DT_MIPS_HIPAGENO 0x70000014
1460 +#define DT_MIPS_RLD_MAP 0x70000016
1461 +#define DT_MIPS_DELTA_CLASS 0x70000017
1462 +#define DT_MIPS_DELTA_CLASS_NO 0x70000018
1464 +#define DT_MIPS_DELTA_INSTANCE 0x70000019
1465 +#define DT_MIPS_DELTA_INSTANCE_NO 0x7000001a
1467 +#define DT_MIPS_DELTA_RELOC 0x7000001b
1468 +#define DT_MIPS_DELTA_RELOC_NO 0x7000001c
1470 +#define DT_MIPS_DELTA_SYM 0x7000001d
1472 +#define DT_MIPS_DELTA_SYM_NO 0x7000001e
1474 +#define DT_MIPS_DELTA_CLASSSYM 0x70000020
1476 +#define DT_MIPS_DELTA_CLASSSYM_NO 0x70000021
1478 +#define DT_MIPS_CXX_FLAGS 0x70000022
1479 +#define DT_MIPS_PIXIE_INIT 0x70000023
1480 +#define DT_MIPS_SYMBOL_LIB 0x70000024
1481 +#define DT_MIPS_LOCALPAGE_GOTIDX 0x70000025
1482 +#define DT_MIPS_LOCAL_GOTIDX 0x70000026
1483 +#define DT_MIPS_HIDDEN_GOTIDX 0x70000027
1484 +#define DT_MIPS_PROTECTED_GOTIDX 0x70000028
1485 +#define DT_MIPS_OPTIONS 0x70000029
1486 +#define DT_MIPS_INTERFACE 0x7000002a
1487 +#define DT_MIPS_DYNSTR_ALIGN 0x7000002b
1488 +#define DT_MIPS_INTERFACE_SIZE 0x7000002c
1489 +#define DT_MIPS_RLD_TEXT_RESOLVE_ADDR 0x7000002d
1491 +#define DT_MIPS_PERF_SUFFIX 0x7000002e
1493 +#define DT_MIPS_COMPACT_SIZE 0x7000002f
1494 +#define DT_MIPS_GP_VALUE 0x70000030
1495 +#define DT_MIPS_AUX_DYNAMIC 0x70000031
1497 +#define DT_MIPS_PLTGOT 0x70000032
1499 +#define DT_MIPS_RWPLT 0x70000034
1500 +#define DT_MIPS_NUM 0x35
1504 +#define RHF_NONE 0
1505 +#define RHF_QUICKSTART (1 << 0)
1506 +#define RHF_NOTPOT (1 << 1)
1507 +#define RHF_NO_LIBRARY_REPLACEMENT (1 << 2)
1508 +#define RHF_NO_MOVE (1 << 3)
1509 +#define RHF_SGI_ONLY (1 << 4)
1510 +#define RHF_GUARANTEE_INIT (1 << 5)
1511 +#define RHF_DELTA_C_PLUS_PLUS (1 << 6)
1512 +#define RHF_GUARANTEE_START_INIT (1 << 7)
1513 +#define RHF_PIXIE (1 << 8)
1514 +#define RHF_DEFAULT_DELAY_LOAD (1 << 9)
1515 +#define RHF_REQUICKSTART (1 << 10)
1516 +#define RHF_REQUICKSTARTED (1 << 11)
1517 +#define RHF_CORD (1 << 12)
1518 +#define RHF_NO_UNRES_UNDEF (1 << 13)
1519 +#define RHF_RLD_ORDER_SAFE (1 << 14)
1523 +typedef struct
1525 + Elf32_Word l_name;
1526 + Elf32_Word l_time_stamp;
1527 + Elf32_Word l_checksum;
1528 + Elf32_Word l_version;
1529 + Elf32_Word l_flags;
1530 +} Elf32_Lib;
1532 +typedef struct
1534 + Elf64_Word l_name;
1535 + Elf64_Word l_time_stamp;
1536 + Elf64_Word l_checksum;
1537 + Elf64_Word l_version;
1538 + Elf64_Word l_flags;
1539 +} Elf64_Lib;
1544 +#define LL_NONE 0
1545 +#define LL_EXACT_MATCH (1 << 0)
1546 +#define LL_IGNORE_INT_VER (1 << 1)
1547 +#define LL_REQUIRE_MINOR (1 << 2)
1548 +#define LL_EXPORTS (1 << 3)
1549 +#define LL_DELAY_LOAD (1 << 4)
1550 +#define LL_DELTA (1 << 5)
1554 +typedef Elf32_Addr Elf32_Conflict;
1561 +#define EF_PARISC_TRAPNIL 0x00010000
1562 +#define EF_PARISC_EXT 0x00020000
1563 +#define EF_PARISC_LSB 0x00040000
1564 +#define EF_PARISC_WIDE 0x00080000
1565 +#define EF_PARISC_NO_KABP 0x00100000
1567 +#define EF_PARISC_LAZYSWAP 0x00400000
1568 +#define EF_PARISC_ARCH 0x0000ffff
1572 +#define EFA_PARISC_1_0 0x020b
1573 +#define EFA_PARISC_1_1 0x0210
1574 +#define EFA_PARISC_2_0 0x0214
1578 +#define SHN_PARISC_ANSI_COMMON 0xff00
1580 +#define SHN_PARISC_HUGE_COMMON 0xff01
1584 +#define SHT_PARISC_EXT 0x70000000
1585 +#define SHT_PARISC_UNWIND 0x70000001
1586 +#define SHT_PARISC_DOC 0x70000002
1590 +#define SHF_PARISC_SHORT 0x20000000
1591 +#define SHF_PARISC_HUGE 0x40000000
1592 +#define SHF_PARISC_SBP 0x80000000
1596 +#define STT_PARISC_MILLICODE 13
1598 +#define STT_HP_OPAQUE (STT_LOOS + 0x1)
1599 +#define STT_HP_STUB (STT_LOOS + 0x2)
1603 +#define R_PARISC_NONE 0
1604 +#define R_PARISC_DIR32 1
1605 +#define R_PARISC_DIR21L 2
1606 +#define R_PARISC_DIR17R 3
1607 +#define R_PARISC_DIR17F 4
1608 +#define R_PARISC_DIR14R 6
1609 +#define R_PARISC_PCREL32 9
1610 +#define R_PARISC_PCREL21L 10
1611 +#define R_PARISC_PCREL17R 11
1612 +#define R_PARISC_PCREL17F 12
1613 +#define R_PARISC_PCREL14R 14
1614 +#define R_PARISC_DPREL21L 18
1615 +#define R_PARISC_DPREL14R 22
1616 +#define R_PARISC_GPREL21L 26
1617 +#define R_PARISC_GPREL14R 30
1618 +#define R_PARISC_LTOFF21L 34
1619 +#define R_PARISC_LTOFF14R 38
1620 +#define R_PARISC_SECREL32 41
1621 +#define R_PARISC_SEGBASE 48
1622 +#define R_PARISC_SEGREL32 49
1623 +#define R_PARISC_PLTOFF21L 50
1624 +#define R_PARISC_PLTOFF14R 54
1625 +#define R_PARISC_LTOFF_FPTR32 57
1626 +#define R_PARISC_LTOFF_FPTR21L 58
1627 +#define R_PARISC_LTOFF_FPTR14R 62
1628 +#define R_PARISC_FPTR64 64
1629 +#define R_PARISC_PLABEL32 65
1630 +#define R_PARISC_PLABEL21L 66
1631 +#define R_PARISC_PLABEL14R 70
1632 +#define R_PARISC_PCREL64 72
1633 +#define R_PARISC_PCREL22F 74
1634 +#define R_PARISC_PCREL14WR 75
1635 +#define R_PARISC_PCREL14DR 76
1636 +#define R_PARISC_PCREL16F 77
1637 +#define R_PARISC_PCREL16WF 78
1638 +#define R_PARISC_PCREL16DF 79
1639 +#define R_PARISC_DIR64 80
1640 +#define R_PARISC_DIR14WR 83
1641 +#define R_PARISC_DIR14DR 84
1642 +#define R_PARISC_DIR16F 85
1643 +#define R_PARISC_DIR16WF 86
1644 +#define R_PARISC_DIR16DF 87
1645 +#define R_PARISC_GPREL64 88
1646 +#define R_PARISC_GPREL14WR 91
1647 +#define R_PARISC_GPREL14DR 92
1648 +#define R_PARISC_GPREL16F 93
1649 +#define R_PARISC_GPREL16WF 94
1650 +#define R_PARISC_GPREL16DF 95
1651 +#define R_PARISC_LTOFF64 96
1652 +#define R_PARISC_LTOFF14WR 99
1653 +#define R_PARISC_LTOFF14DR 100
1654 +#define R_PARISC_LTOFF16F 101
1655 +#define R_PARISC_LTOFF16WF 102
1656 +#define R_PARISC_LTOFF16DF 103
1657 +#define R_PARISC_SECREL64 104
1658 +#define R_PARISC_SEGREL64 112
1659 +#define R_PARISC_PLTOFF14WR 115
1660 +#define R_PARISC_PLTOFF14DR 116
1661 +#define R_PARISC_PLTOFF16F 117
1662 +#define R_PARISC_PLTOFF16WF 118
1663 +#define R_PARISC_PLTOFF16DF 119
1664 +#define R_PARISC_LTOFF_FPTR64 120
1665 +#define R_PARISC_LTOFF_FPTR14WR 123
1666 +#define R_PARISC_LTOFF_FPTR14DR 124
1667 +#define R_PARISC_LTOFF_FPTR16F 125
1668 +#define R_PARISC_LTOFF_FPTR16WF 126
1669 +#define R_PARISC_LTOFF_FPTR16DF 127
1670 +#define R_PARISC_LORESERVE 128
1671 +#define R_PARISC_COPY 128
1672 +#define R_PARISC_IPLT 129
1673 +#define R_PARISC_EPLT 130
1674 +#define R_PARISC_TPREL32 153
1675 +#define R_PARISC_TPREL21L 154
1676 +#define R_PARISC_TPREL14R 158
1677 +#define R_PARISC_LTOFF_TP21L 162
1678 +#define R_PARISC_LTOFF_TP14R 166
1679 +#define R_PARISC_LTOFF_TP14F 167
1680 +#define R_PARISC_TPREL64 216
1681 +#define R_PARISC_TPREL14WR 219
1682 +#define R_PARISC_TPREL14DR 220
1683 +#define R_PARISC_TPREL16F 221
1684 +#define R_PARISC_TPREL16WF 222
1685 +#define R_PARISC_TPREL16DF 223
1686 +#define R_PARISC_LTOFF_TP64 224
1687 +#define R_PARISC_LTOFF_TP14WR 227
1688 +#define R_PARISC_LTOFF_TP14DR 228
1689 +#define R_PARISC_LTOFF_TP16F 229
1690 +#define R_PARISC_LTOFF_TP16WF 230
1691 +#define R_PARISC_LTOFF_TP16DF 231
1692 +#define R_PARISC_GNU_VTENTRY 232
1693 +#define R_PARISC_GNU_VTINHERIT 233
1694 +#define R_PARISC_TLS_GD21L 234
1695 +#define R_PARISC_TLS_GD14R 235
1696 +#define R_PARISC_TLS_GDCALL 236
1697 +#define R_PARISC_TLS_LDM21L 237
1698 +#define R_PARISC_TLS_LDM14R 238
1699 +#define R_PARISC_TLS_LDMCALL 239
1700 +#define R_PARISC_TLS_LDO21L 240
1701 +#define R_PARISC_TLS_LDO14R 241
1702 +#define R_PARISC_TLS_DTPMOD32 242
1703 +#define R_PARISC_TLS_DTPMOD64 243
1704 +#define R_PARISC_TLS_DTPOFF32 244
1705 +#define R_PARISC_TLS_DTPOFF64 245
1706 +#define R_PARISC_TLS_LE21L R_PARISC_TPREL21L
1707 +#define R_PARISC_TLS_LE14R R_PARISC_TPREL14R
1708 +#define R_PARISC_TLS_IE21L R_PARISC_LTOFF_TP21L
1709 +#define R_PARISC_TLS_IE14R R_PARISC_LTOFF_TP14R
1710 +#define R_PARISC_TLS_TPREL32 R_PARISC_TPREL32
1711 +#define R_PARISC_TLS_TPREL64 R_PARISC_TPREL64
1712 +#define R_PARISC_HIRESERVE 255
1716 +#define PT_HP_TLS (PT_LOOS + 0x0)
1717 +#define PT_HP_CORE_NONE (PT_LOOS + 0x1)
1718 +#define PT_HP_CORE_VERSION (PT_LOOS + 0x2)
1719 +#define PT_HP_CORE_KERNEL (PT_LOOS + 0x3)
1720 +#define PT_HP_CORE_COMM (PT_LOOS + 0x4)
1721 +#define PT_HP_CORE_PROC (PT_LOOS + 0x5)
1722 +#define PT_HP_CORE_LOADABLE (PT_LOOS + 0x6)
1723 +#define PT_HP_CORE_STACK (PT_LOOS + 0x7)
1724 +#define PT_HP_CORE_SHM (PT_LOOS + 0x8)
1725 +#define PT_HP_CORE_MMF (PT_LOOS + 0x9)
1726 +#define PT_HP_PARALLEL (PT_LOOS + 0x10)
1727 +#define PT_HP_FASTBIND (PT_LOOS + 0x11)
1728 +#define PT_HP_OPT_ANNOT (PT_LOOS + 0x12)
1729 +#define PT_HP_HSL_ANNOT (PT_LOOS + 0x13)
1730 +#define PT_HP_STACK (PT_LOOS + 0x14)
1732 +#define PT_PARISC_ARCHEXT 0x70000000
1733 +#define PT_PARISC_UNWIND 0x70000001
1737 +#define PF_PARISC_SBP 0x08000000
1739 +#define PF_HP_PAGE_SIZE 0x00100000
1740 +#define PF_HP_FAR_SHARED 0x00200000
1741 +#define PF_HP_NEAR_SHARED 0x00400000
1742 +#define PF_HP_CODE 0x01000000
1743 +#define PF_HP_MODIFY 0x02000000
1744 +#define PF_HP_LAZYSWAP 0x04000000
1745 +#define PF_HP_SBP 0x08000000
1752 +#define EF_ALPHA_32BIT 1
1753 +#define EF_ALPHA_CANRELAX 2
1758 +#define SHT_ALPHA_DEBUG 0x70000001
1759 +#define SHT_ALPHA_REGINFO 0x70000002
1763 +#define SHF_ALPHA_GPREL 0x10000000
1766 +#define STO_ALPHA_NOPV 0x80
1767 +#define STO_ALPHA_STD_GPLOAD 0x88
1771 +#define R_ALPHA_NONE 0
1772 +#define R_ALPHA_REFLONG 1
1773 +#define R_ALPHA_REFQUAD 2
1774 +#define R_ALPHA_GPREL32 3
1775 +#define R_ALPHA_LITERAL 4
1776 +#define R_ALPHA_LITUSE 5
1777 +#define R_ALPHA_GPDISP 6
1778 +#define R_ALPHA_BRADDR 7
1779 +#define R_ALPHA_HINT 8
1780 +#define R_ALPHA_SREL16 9
1781 +#define R_ALPHA_SREL32 10
1782 +#define R_ALPHA_SREL64 11
1783 +#define R_ALPHA_GPRELHIGH 17
1784 +#define R_ALPHA_GPRELLOW 18
1785 +#define R_ALPHA_GPREL16 19
1786 +#define R_ALPHA_COPY 24
1787 +#define R_ALPHA_GLOB_DAT 25
1788 +#define R_ALPHA_JMP_SLOT 26
1789 +#define R_ALPHA_RELATIVE 27
1790 +#define R_ALPHA_TLS_GD_HI 28
1791 +#define R_ALPHA_TLSGD 29
1792 +#define R_ALPHA_TLS_LDM 30
1793 +#define R_ALPHA_DTPMOD64 31
1794 +#define R_ALPHA_GOTDTPREL 32
1795 +#define R_ALPHA_DTPREL64 33
1796 +#define R_ALPHA_DTPRELHI 34
1797 +#define R_ALPHA_DTPRELLO 35
1798 +#define R_ALPHA_DTPREL16 36
1799 +#define R_ALPHA_GOTTPREL 37
1800 +#define R_ALPHA_TPREL64 38
1801 +#define R_ALPHA_TPRELHI 39
1802 +#define R_ALPHA_TPRELLO 40
1803 +#define R_ALPHA_TPREL16 41
1805 +#define R_ALPHA_NUM 46
1808 +#define LITUSE_ALPHA_ADDR 0
1809 +#define LITUSE_ALPHA_BASE 1
1810 +#define LITUSE_ALPHA_BYTOFF 2
1811 +#define LITUSE_ALPHA_JSR 3
1812 +#define LITUSE_ALPHA_TLS_GD 4
1813 +#define LITUSE_ALPHA_TLS_LDM 5
1816 +#define DT_ALPHA_PLTRO (DT_LOPROC + 0)
1817 +#define DT_ALPHA_NUM 1
1822 +#define EF_PPC_EMB 0x80000000
1825 +#define EF_PPC_RELOCATABLE 0x00010000
1826 +#define EF_PPC_RELOCATABLE_LIB 0x00008000
1830 +#define R_PPC_NONE 0
1831 +#define R_PPC_ADDR32 1
1832 +#define R_PPC_ADDR24 2
1833 +#define R_PPC_ADDR16 3
1834 +#define R_PPC_ADDR16_LO 4
1835 +#define R_PPC_ADDR16_HI 5
1836 +#define R_PPC_ADDR16_HA 6
1837 +#define R_PPC_ADDR14 7
1838 +#define R_PPC_ADDR14_BRTAKEN 8
1839 +#define R_PPC_ADDR14_BRNTAKEN 9
1840 +#define R_PPC_REL24 10
1841 +#define R_PPC_REL14 11
1842 +#define R_PPC_REL14_BRTAKEN 12
1843 +#define R_PPC_REL14_BRNTAKEN 13
1844 +#define R_PPC_GOT16 14
1845 +#define R_PPC_GOT16_LO 15
1846 +#define R_PPC_GOT16_HI 16
1847 +#define R_PPC_GOT16_HA 17
1848 +#define R_PPC_PLTREL24 18
1849 +#define R_PPC_COPY 19
1850 +#define R_PPC_GLOB_DAT 20
1851 +#define R_PPC_JMP_SLOT 21
1852 +#define R_PPC_RELATIVE 22
1853 +#define R_PPC_LOCAL24PC 23
1854 +#define R_PPC_UADDR32 24
1855 +#define R_PPC_UADDR16 25
1856 +#define R_PPC_REL32 26
1857 +#define R_PPC_PLT32 27
1858 +#define R_PPC_PLTREL32 28
1859 +#define R_PPC_PLT16_LO 29
1860 +#define R_PPC_PLT16_HI 30
1861 +#define R_PPC_PLT16_HA 31
1862 +#define R_PPC_SDAREL16 32
1863 +#define R_PPC_SECTOFF 33
1864 +#define R_PPC_SECTOFF_LO 34
1865 +#define R_PPC_SECTOFF_HI 35
1866 +#define R_PPC_SECTOFF_HA 36
1869 +#define R_PPC_TLS 67
1870 +#define R_PPC_DTPMOD32 68
1871 +#define R_PPC_TPREL16 69
1872 +#define R_PPC_TPREL16_LO 70
1873 +#define R_PPC_TPREL16_HI 71
1874 +#define R_PPC_TPREL16_HA 72
1875 +#define R_PPC_TPREL32 73
1876 +#define R_PPC_DTPREL16 74
1877 +#define R_PPC_DTPREL16_LO 75
1878 +#define R_PPC_DTPREL16_HI 76
1879 +#define R_PPC_DTPREL16_HA 77
1880 +#define R_PPC_DTPREL32 78
1881 +#define R_PPC_GOT_TLSGD16 79
1882 +#define R_PPC_GOT_TLSGD16_LO 80
1883 +#define R_PPC_GOT_TLSGD16_HI 81
1884 +#define R_PPC_GOT_TLSGD16_HA 82
1885 +#define R_PPC_GOT_TLSLD16 83
1886 +#define R_PPC_GOT_TLSLD16_LO 84
1887 +#define R_PPC_GOT_TLSLD16_HI 85
1888 +#define R_PPC_GOT_TLSLD16_HA 86
1889 +#define R_PPC_GOT_TPREL16 87
1890 +#define R_PPC_GOT_TPREL16_LO 88
1891 +#define R_PPC_GOT_TPREL16_HI 89
1892 +#define R_PPC_GOT_TPREL16_HA 90
1893 +#define R_PPC_GOT_DTPREL16 91
1894 +#define R_PPC_GOT_DTPREL16_LO 92
1895 +#define R_PPC_GOT_DTPREL16_HI 93
1896 +#define R_PPC_GOT_DTPREL16_HA 94
1900 +#define R_PPC_EMB_NADDR32 101
1901 +#define R_PPC_EMB_NADDR16 102
1902 +#define R_PPC_EMB_NADDR16_LO 103
1903 +#define R_PPC_EMB_NADDR16_HI 104
1904 +#define R_PPC_EMB_NADDR16_HA 105
1905 +#define R_PPC_EMB_SDAI16 106
1906 +#define R_PPC_EMB_SDA2I16 107
1907 +#define R_PPC_EMB_SDA2REL 108
1908 +#define R_PPC_EMB_SDA21 109
1909 +#define R_PPC_EMB_MRKREF 110
1910 +#define R_PPC_EMB_RELSEC16 111
1911 +#define R_PPC_EMB_RELST_LO 112
1912 +#define R_PPC_EMB_RELST_HI 113
1913 +#define R_PPC_EMB_RELST_HA 114
1914 +#define R_PPC_EMB_BIT_FLD 115
1915 +#define R_PPC_EMB_RELSDA 116
1918 +#define R_PPC_DIAB_SDA21_LO 180
1919 +#define R_PPC_DIAB_SDA21_HI 181
1920 +#define R_PPC_DIAB_SDA21_HA 182
1921 +#define R_PPC_DIAB_RELSDA_LO 183
1922 +#define R_PPC_DIAB_RELSDA_HI 184
1923 +#define R_PPC_DIAB_RELSDA_HA 185
1926 +#define R_PPC_IRELATIVE 248
1929 +#define R_PPC_REL16 249
1930 +#define R_PPC_REL16_LO 250
1931 +#define R_PPC_REL16_HI 251
1932 +#define R_PPC_REL16_HA 252
1936 +#define R_PPC_TOC16 255
1939 +#define DT_PPC_GOT (DT_LOPROC + 0)
1940 +#define DT_PPC_NUM 1
1943 +#define R_PPC64_NONE R_PPC_NONE
1944 +#define R_PPC64_ADDR32 R_PPC_ADDR32
1945 +#define R_PPC64_ADDR24 R_PPC_ADDR24
1946 +#define R_PPC64_ADDR16 R_PPC_ADDR16
1947 +#define R_PPC64_ADDR16_LO R_PPC_ADDR16_LO
1948 +#define R_PPC64_ADDR16_HI R_PPC_ADDR16_HI
1949 +#define R_PPC64_ADDR16_HA R_PPC_ADDR16_HA
1950 +#define R_PPC64_ADDR14 R_PPC_ADDR14
1951 +#define R_PPC64_ADDR14_BRTAKEN R_PPC_ADDR14_BRTAKEN
1952 +#define R_PPC64_ADDR14_BRNTAKEN R_PPC_ADDR14_BRNTAKEN
1953 +#define R_PPC64_REL24 R_PPC_REL24
1954 +#define R_PPC64_REL14 R_PPC_REL14
1955 +#define R_PPC64_REL14_BRTAKEN R_PPC_REL14_BRTAKEN
1956 +#define R_PPC64_REL14_BRNTAKEN R_PPC_REL14_BRNTAKEN
1957 +#define R_PPC64_GOT16 R_PPC_GOT16
1958 +#define R_PPC64_GOT16_LO R_PPC_GOT16_LO
1959 +#define R_PPC64_GOT16_HI R_PPC_GOT16_HI
1960 +#define R_PPC64_GOT16_HA R_PPC_GOT16_HA
1962 +#define R_PPC64_COPY R_PPC_COPY
1963 +#define R_PPC64_GLOB_DAT R_PPC_GLOB_DAT
1964 +#define R_PPC64_JMP_SLOT R_PPC_JMP_SLOT
1965 +#define R_PPC64_RELATIVE R_PPC_RELATIVE
1967 +#define R_PPC64_UADDR32 R_PPC_UADDR32
1968 +#define R_PPC64_UADDR16 R_PPC_UADDR16
1969 +#define R_PPC64_REL32 R_PPC_REL32
1970 +#define R_PPC64_PLT32 R_PPC_PLT32
1971 +#define R_PPC64_PLTREL32 R_PPC_PLTREL32
1972 +#define R_PPC64_PLT16_LO R_PPC_PLT16_LO
1973 +#define R_PPC64_PLT16_HI R_PPC_PLT16_HI
1974 +#define R_PPC64_PLT16_HA R_PPC_PLT16_HA
1976 +#define R_PPC64_SECTOFF R_PPC_SECTOFF
1977 +#define R_PPC64_SECTOFF_LO R_PPC_SECTOFF_LO
1978 +#define R_PPC64_SECTOFF_HI R_PPC_SECTOFF_HI
1979 +#define R_PPC64_SECTOFF_HA R_PPC_SECTOFF_HA
1980 +#define R_PPC64_ADDR30 37
1981 +#define R_PPC64_ADDR64 38
1982 +#define R_PPC64_ADDR16_HIGHER 39
1983 +#define R_PPC64_ADDR16_HIGHERA 40
1984 +#define R_PPC64_ADDR16_HIGHEST 41
1985 +#define R_PPC64_ADDR16_HIGHESTA 42
1986 +#define R_PPC64_UADDR64 43
1987 +#define R_PPC64_REL64 44
1988 +#define R_PPC64_PLT64 45
1989 +#define R_PPC64_PLTREL64 46
1990 +#define R_PPC64_TOC16 47
1991 +#define R_PPC64_TOC16_LO 48
1992 +#define R_PPC64_TOC16_HI 49
1993 +#define R_PPC64_TOC16_HA 50
1994 +#define R_PPC64_TOC 51
1995 +#define R_PPC64_PLTGOT16 52
1996 +#define R_PPC64_PLTGOT16_LO 53
1997 +#define R_PPC64_PLTGOT16_HI 54
1998 +#define R_PPC64_PLTGOT16_HA 55
2000 +#define R_PPC64_ADDR16_DS 56
2001 +#define R_PPC64_ADDR16_LO_DS 57
2002 +#define R_PPC64_GOT16_DS 58
2003 +#define R_PPC64_GOT16_LO_DS 59
2004 +#define R_PPC64_PLT16_LO_DS 60
2005 +#define R_PPC64_SECTOFF_DS 61
2006 +#define R_PPC64_SECTOFF_LO_DS 62
2007 +#define R_PPC64_TOC16_DS 63
2008 +#define R_PPC64_TOC16_LO_DS 64
2009 +#define R_PPC64_PLTGOT16_DS 65
2010 +#define R_PPC64_PLTGOT16_LO_DS 66
2013 +#define R_PPC64_TLS 67
2014 +#define R_PPC64_DTPMOD64 68
2015 +#define R_PPC64_TPREL16 69
2016 +#define R_PPC64_TPREL16_LO 70
2017 +#define R_PPC64_TPREL16_HI 71
2018 +#define R_PPC64_TPREL16_HA 72
2019 +#define R_PPC64_TPREL64 73
2020 +#define R_PPC64_DTPREL16 74
2021 +#define R_PPC64_DTPREL16_LO 75
2022 +#define R_PPC64_DTPREL16_HI 76
2023 +#define R_PPC64_DTPREL16_HA 77
2024 +#define R_PPC64_DTPREL64 78
2025 +#define R_PPC64_GOT_TLSGD16 79
2026 +#define R_PPC64_GOT_TLSGD16_LO 80
2027 +#define R_PPC64_GOT_TLSGD16_HI 81
2028 +#define R_PPC64_GOT_TLSGD16_HA 82
2029 +#define R_PPC64_GOT_TLSLD16 83
2030 +#define R_PPC64_GOT_TLSLD16_LO 84
2031 +#define R_PPC64_GOT_TLSLD16_HI 85
2032 +#define R_PPC64_GOT_TLSLD16_HA 86
2033 +#define R_PPC64_GOT_TPREL16_DS 87
2034 +#define R_PPC64_GOT_TPREL16_LO_DS 88
2035 +#define R_PPC64_GOT_TPREL16_HI 89
2036 +#define R_PPC64_GOT_TPREL16_HA 90
2037 +#define R_PPC64_GOT_DTPREL16_DS 91
2038 +#define R_PPC64_GOT_DTPREL16_LO_DS 92
2039 +#define R_PPC64_GOT_DTPREL16_HI 93
2040 +#define R_PPC64_GOT_DTPREL16_HA 94
2041 +#define R_PPC64_TPREL16_DS 95
2042 +#define R_PPC64_TPREL16_LO_DS 96
2043 +#define R_PPC64_TPREL16_HIGHER 97
2044 +#define R_PPC64_TPREL16_HIGHERA 98
2045 +#define R_PPC64_TPREL16_HIGHEST 99
2046 +#define R_PPC64_TPREL16_HIGHESTA 100
2047 +#define R_PPC64_DTPREL16_DS 101
2048 +#define R_PPC64_DTPREL16_LO_DS 102
2049 +#define R_PPC64_DTPREL16_HIGHER 103
2050 +#define R_PPC64_DTPREL16_HIGHERA 104
2051 +#define R_PPC64_DTPREL16_HIGHEST 105
2052 +#define R_PPC64_DTPREL16_HIGHESTA 106
2055 +#define R_PPC64_JMP_IREL 247
2056 +#define R_PPC64_IRELATIVE 248
2057 +#define R_PPC64_REL16 249
2058 +#define R_PPC64_REL16_LO 250
2059 +#define R_PPC64_REL16_HI 251
2060 +#define R_PPC64_REL16_HA 252
2063 +#define DT_PPC64_GLINK (DT_LOPROC + 0)
2064 +#define DT_PPC64_OPD (DT_LOPROC + 1)
2065 +#define DT_PPC64_OPDSZ (DT_LOPROC + 2)
2066 +#define DT_PPC64_NUM 3
2072 +#define EF_ARM_RELEXEC 0x01
2073 +#define EF_ARM_HASENTRY 0x02
2074 +#define EF_ARM_INTERWORK 0x04
2075 +#define EF_ARM_APCS_26 0x08
2076 +#define EF_ARM_APCS_FLOAT 0x10
2077 +#define EF_ARM_PIC 0x20
2078 +#define EF_ARM_ALIGN8 0x40
2079 +#define EF_ARM_NEW_ABI 0x80
2080 +#define EF_ARM_OLD_ABI 0x100
2081 +#define EF_ARM_SOFT_FLOAT 0x200
2082 +#define EF_ARM_VFP_FLOAT 0x400
2083 +#define EF_ARM_MAVERICK_FLOAT 0x800
2085 +#define EF_ARM_ABI_FLOAT_SOFT 0x200
2086 +#define EF_ARM_ABI_FLOAT_HARD 0x400
2089 +#define EF_ARM_SYMSARESORTED 0x04
2090 +#define EF_ARM_DYNSYMSUSESEGIDX 0x08
2091 +#define EF_ARM_MAPSYMSFIRST 0x10
2092 +#define EF_ARM_EABIMASK 0XFF000000
2095 +#define EF_ARM_BE8 0x00800000
2096 +#define EF_ARM_LE8 0x00400000
2098 +#define EF_ARM_EABI_VERSION(flags) ((flags) & EF_ARM_EABIMASK)
2099 +#define EF_ARM_EABI_UNKNOWN 0x00000000
2100 +#define EF_ARM_EABI_VER1 0x01000000
2101 +#define EF_ARM_EABI_VER2 0x02000000
2102 +#define EF_ARM_EABI_VER3 0x03000000
2103 +#define EF_ARM_EABI_VER4 0x04000000
2104 +#define EF_ARM_EABI_VER5 0x05000000
2107 +#define STT_ARM_TFUNC STT_LOPROC
2108 +#define STT_ARM_16BIT STT_HIPROC
2111 +#define SHF_ARM_ENTRYSECT 0x10000000
2112 +#define SHF_ARM_COMDEF 0x80000000
2116 +#define PF_ARM_SB 0x10000000
2118 +#define PF_ARM_PI 0x20000000
2119 +#define PF_ARM_ABS 0x40000000
2122 +#define PT_ARM_EXIDX (PT_LOPROC + 1)
2125 +#define SHT_ARM_EXIDX (SHT_LOPROC + 1)
2126 +#define SHT_ARM_PREEMPTMAP (SHT_LOPROC + 2)
2127 +#define SHT_ARM_ATTRIBUTES (SHT_LOPROC + 3)
2130 +#define R_AARCH64_NONE 0
2131 +#define R_AARCH64_ABS64 257
2132 +#define R_AARCH64_ABS32 258
2133 +#define R_AARCH64_COPY 1024
2134 +#define R_AARCH64_GLOB_DAT 1025
2135 +#define R_AARCH64_JUMP_SLOT 1026
2136 +#define R_AARCH64_RELATIVE 1027
2137 +#define R_AARCH64_TLS_DTPMOD64 1028
2138 +#define R_AARCH64_TLS_DTPREL64 1029
2139 +#define R_AARCH64_TLS_TPREL64 1030
2140 +#define R_AARCH64_TLSDESC 1031
2143 +#define R_ARM_NONE 0
2144 +#define R_ARM_PC24 1
2145 +#define R_ARM_ABS32 2
2146 +#define R_ARM_REL32 3
2147 +#define R_ARM_PC13 4
2148 +#define R_ARM_ABS16 5
2149 +#define R_ARM_ABS12 6
2150 +#define R_ARM_THM_ABS5 7
2151 +#define R_ARM_ABS8 8
2152 +#define R_ARM_SBREL32 9
2153 +#define R_ARM_THM_PC22 10
2154 +#define R_ARM_THM_PC8 11
2155 +#define R_ARM_AMP_VCALL9 12
2156 +#define R_ARM_TLS_DESC 13
2157 +#define R_ARM_THM_SWI8 14
2158 +#define R_ARM_XPC25 15
2159 +#define R_ARM_THM_XPC22 16
2160 +#define R_ARM_TLS_DTPMOD32 17
2161 +#define R_ARM_TLS_DTPOFF32 18
2162 +#define R_ARM_TLS_TPOFF32 19
2163 +#define R_ARM_COPY 20
2164 +#define R_ARM_GLOB_DAT 21
2165 +#define R_ARM_JUMP_SLOT 22
2166 +#define R_ARM_RELATIVE 23
2167 +#define R_ARM_GOTOFF 24
2168 +#define R_ARM_GOTPC 25
2169 +#define R_ARM_GOT32 26
2170 +#define R_ARM_PLT32 27
2171 +#define R_ARM_CALL 28
2172 +#define R_ARM_JUMP24 29
2173 +#define R_ARM_THM_JUMP24 30
2174 +#define R_ARM_BASE_ABS 31
2175 +#define R_ARM_ALU_PCREL_7_0 32
2176 +#define R_ARM_ALU_PCREL_15_8 33
2177 +#define R_ARM_ALU_PCREL_23_15 34
2178 +#define R_ARM_LDR_SBREL_11_0 35
2179 +#define R_ARM_ALU_SBREL_19_12 36
2180 +#define R_ARM_ALU_SBREL_27_20 37
2181 +#define R_ARM_TARGET1 38
2182 +#define R_ARM_SBREL31 39
2183 +#define R_ARM_V4BX 40
2184 +#define R_ARM_TARGET2 41
2185 +#define R_ARM_PREL31 42
2186 +#define R_ARM_MOVW_ABS_NC 43
2187 +#define R_ARM_MOVT_ABS 44
2188 +#define R_ARM_MOVW_PREL_NC 45
2189 +#define R_ARM_MOVT_PREL 46
2190 +#define R_ARM_THM_MOVW_ABS_NC 47
2191 +#define R_ARM_THM_MOVT_ABS 48
2192 +#define R_ARM_THM_MOVW_PREL_NC 49
2193 +#define R_ARM_THM_MOVT_PREL 50
2194 +#define R_ARM_THM_JUMP19 51
2195 +#define R_ARM_THM_JUMP6 52
2196 +#define R_ARM_THM_ALU_PREL_11_0 53
2197 +#define R_ARM_THM_PC12 54
2198 +#define R_ARM_ABS32_NOI 55
2199 +#define R_ARM_REL32_NOI 56
2200 +#define R_ARM_ALU_PC_G0_NC 57
2201 +#define R_ARM_ALU_PC_G0 58
2202 +#define R_ARM_ALU_PC_G1_NC 59
2203 +#define R_ARM_ALU_PC_G1 60
2204 +#define R_ARM_ALU_PC_G2 61
2205 +#define R_ARM_LDR_PC_G1 62
2206 +#define R_ARM_LDR_PC_G2 63
2207 +#define R_ARM_LDRS_PC_G0 64
2208 +#define R_ARM_LDRS_PC_G1 65
2209 +#define R_ARM_LDRS_PC_G2 66
2210 +#define R_ARM_LDC_PC_G0 67
2211 +#define R_ARM_LDC_PC_G1 68
2212 +#define R_ARM_LDC_PC_G2 69
2213 +#define R_ARM_ALU_SB_G0_NC 70
2214 +#define R_ARM_ALU_SB_G0 71
2215 +#define R_ARM_ALU_SB_G1_NC 72
2216 +#define R_ARM_ALU_SB_G1 73
2217 +#define R_ARM_ALU_SB_G2 74
2218 +#define R_ARM_LDR_SB_G0 75
2219 +#define R_ARM_LDR_SB_G1 76
2220 +#define R_ARM_LDR_SB_G2 77
2221 +#define R_ARM_LDRS_SB_G0 78
2222 +#define R_ARM_LDRS_SB_G1 79
2223 +#define R_ARM_LDRS_SB_G2 80
2224 +#define R_ARM_LDC_SB_G0 81
2225 +#define R_ARM_LDC_SB_G1 82
2226 +#define R_ARM_LDC_SB_G2 83
2227 +#define R_ARM_MOVW_BREL_NC 84
2228 +#define R_ARM_MOVT_BREL 85
2229 +#define R_ARM_MOVW_BREL 86
2230 +#define R_ARM_THM_MOVW_BREL_NC 87
2231 +#define R_ARM_THM_MOVT_BREL 88
2232 +#define R_ARM_THM_MOVW_BREL 89
2233 +#define R_ARM_TLS_GOTDESC 90
2234 +#define R_ARM_TLS_CALL 91
2235 +#define R_ARM_TLS_DESCSEQ 92
2236 +#define R_ARM_THM_TLS_CALL 93
2237 +#define R_ARM_PLT32_ABS 94
2238 +#define R_ARM_GOT_ABS 95
2239 +#define R_ARM_GOT_PREL 96
2240 +#define R_ARM_GOT_BREL12 97
2241 +#define R_ARM_GOTOFF12 98
2242 +#define R_ARM_GOTRELAX 99
2243 +#define R_ARM_GNU_VTENTRY 100
2244 +#define R_ARM_GNU_VTINHERIT 101
2245 +#define R_ARM_THM_PC11 102
2246 +#define R_ARM_THM_PC9 103
2247 +#define R_ARM_TLS_GD32 104
2249 +#define R_ARM_TLS_LDM32 105
2251 +#define R_ARM_TLS_LDO32 106
2253 +#define R_ARM_TLS_IE32 107
2255 +#define R_ARM_TLS_LE32 108
2256 +#define R_ARM_TLS_LDO12 109
2257 +#define R_ARM_TLS_LE12 110
2258 +#define R_ARM_TLS_IE12GP 111
2259 +#define R_ARM_ME_TOO 128
2260 +#define R_ARM_THM_TLS_DESCSEQ 129
2261 +#define R_ARM_THM_TLS_DESCSEQ16 129
2262 +#define R_ARM_THM_TLS_DESCSEQ32 130
2263 +#define R_ARM_THM_GOT_BREL12 131
2264 +#define R_ARM_IRELATIVE 160
2265 +#define R_ARM_RXPC25 249
2266 +#define R_ARM_RSBREL32 250
2267 +#define R_ARM_THM_RPC22 251
2268 +#define R_ARM_RREL32 252
2269 +#define R_ARM_RABS22 253
2270 +#define R_ARM_RPC24 254
2271 +#define R_ARM_RBASE 255
2273 +#define R_ARM_NUM 256
2278 +#define EF_IA_64_MASKOS 0x0000000f
2279 +#define EF_IA_64_ABI64 0x00000010
2280 +#define EF_IA_64_ARCH 0xff000000
2283 +#define PT_IA_64_ARCHEXT (PT_LOPROC + 0)
2284 +#define PT_IA_64_UNWIND (PT_LOPROC + 1)
2285 +#define PT_IA_64_HP_OPT_ANOT (PT_LOOS + 0x12)
2286 +#define PT_IA_64_HP_HSL_ANOT (PT_LOOS + 0x13)
2287 +#define PT_IA_64_HP_STACK (PT_LOOS + 0x14)
2290 +#define PF_IA_64_NORECOV 0x80000000
2293 +#define SHT_IA_64_EXT (SHT_LOPROC + 0)
2294 +#define SHT_IA_64_UNWIND (SHT_LOPROC + 1)
2297 +#define SHF_IA_64_SHORT 0x10000000
2298 +#define SHF_IA_64_NORECOV 0x20000000
2301 +#define DT_IA_64_PLT_RESERVE (DT_LOPROC + 0)
2302 +#define DT_IA_64_NUM 1
2305 +#define R_IA64_NONE 0x00
2306 +#define R_IA64_IMM14 0x21
2307 +#define R_IA64_IMM22 0x22
2308 +#define R_IA64_IMM64 0x23
2309 +#define R_IA64_DIR32MSB 0x24
2310 +#define R_IA64_DIR32LSB 0x25
2311 +#define R_IA64_DIR64MSB 0x26
2312 +#define R_IA64_DIR64LSB 0x27
2313 +#define R_IA64_GPREL22 0x2a
2314 +#define R_IA64_GPREL64I 0x2b
2315 +#define R_IA64_GPREL32MSB 0x2c
2316 +#define R_IA64_GPREL32LSB 0x2d
2317 +#define R_IA64_GPREL64MSB 0x2e
2318 +#define R_IA64_GPREL64LSB 0x2f
2319 +#define R_IA64_LTOFF22 0x32
2320 +#define R_IA64_LTOFF64I 0x33
2321 +#define R_IA64_PLTOFF22 0x3a
2322 +#define R_IA64_PLTOFF64I 0x3b
2323 +#define R_IA64_PLTOFF64MSB 0x3e
2324 +#define R_IA64_PLTOFF64LSB 0x3f
2325 +#define R_IA64_FPTR64I 0x43
2326 +#define R_IA64_FPTR32MSB 0x44
2327 +#define R_IA64_FPTR32LSB 0x45
2328 +#define R_IA64_FPTR64MSB 0x46
2329 +#define R_IA64_FPTR64LSB 0x47
2330 +#define R_IA64_PCREL60B 0x48
2331 +#define R_IA64_PCREL21B 0x49
2332 +#define R_IA64_PCREL21M 0x4a
2333 +#define R_IA64_PCREL21F 0x4b
2334 +#define R_IA64_PCREL32MSB 0x4c
2335 +#define R_IA64_PCREL32LSB 0x4d
2336 +#define R_IA64_PCREL64MSB 0x4e
2337 +#define R_IA64_PCREL64LSB 0x4f
2338 +#define R_IA64_LTOFF_FPTR22 0x52
2339 +#define R_IA64_LTOFF_FPTR64I 0x53
2340 +#define R_IA64_LTOFF_FPTR32MSB 0x54
2341 +#define R_IA64_LTOFF_FPTR32LSB 0x55
2342 +#define R_IA64_LTOFF_FPTR64MSB 0x56
2343 +#define R_IA64_LTOFF_FPTR64LSB 0x57
2344 +#define R_IA64_SEGREL32MSB 0x5c
2345 +#define R_IA64_SEGREL32LSB 0x5d
2346 +#define R_IA64_SEGREL64MSB 0x5e
2347 +#define R_IA64_SEGREL64LSB 0x5f
2348 +#define R_IA64_SECREL32MSB 0x64
2349 +#define R_IA64_SECREL32LSB 0x65
2350 +#define R_IA64_SECREL64MSB 0x66
2351 +#define R_IA64_SECREL64LSB 0x67
2352 +#define R_IA64_REL32MSB 0x6c
2353 +#define R_IA64_REL32LSB 0x6d
2354 +#define R_IA64_REL64MSB 0x6e
2355 +#define R_IA64_REL64LSB 0x6f
2356 +#define R_IA64_LTV32MSB 0x74
2357 +#define R_IA64_LTV32LSB 0x75
2358 +#define R_IA64_LTV64MSB 0x76
2359 +#define R_IA64_LTV64LSB 0x77
2360 +#define R_IA64_PCREL21BI 0x79
2361 +#define R_IA64_PCREL22 0x7a
2362 +#define R_IA64_PCREL64I 0x7b
2363 +#define R_IA64_IPLTMSB 0x80
2364 +#define R_IA64_IPLTLSB 0x81
2365 +#define R_IA64_COPY 0x84
2366 +#define R_IA64_SUB 0x85
2367 +#define R_IA64_LTOFF22X 0x86
2368 +#define R_IA64_LDXMOV 0x87
2369 +#define R_IA64_TPREL14 0x91
2370 +#define R_IA64_TPREL22 0x92
2371 +#define R_IA64_TPREL64I 0x93
2372 +#define R_IA64_TPREL64MSB 0x96
2373 +#define R_IA64_TPREL64LSB 0x97
2374 +#define R_IA64_LTOFF_TPREL22 0x9a
2375 +#define R_IA64_DTPMOD64MSB 0xa6
2376 +#define R_IA64_DTPMOD64LSB 0xa7
2377 +#define R_IA64_LTOFF_DTPMOD22 0xaa
2378 +#define R_IA64_DTPREL14 0xb1
2379 +#define R_IA64_DTPREL22 0xb2
2380 +#define R_IA64_DTPREL64I 0xb3
2381 +#define R_IA64_DTPREL32MSB 0xb4
2382 +#define R_IA64_DTPREL32LSB 0xb5
2383 +#define R_IA64_DTPREL64MSB 0xb6
2384 +#define R_IA64_DTPREL64LSB 0xb7
2385 +#define R_IA64_LTOFF_DTPREL22 0xba
2390 +#define R_SH_NONE 0
2391 +#define R_SH_DIR32 1
2392 +#define R_SH_REL32 2
2393 +#define R_SH_DIR8WPN 3
2394 +#define R_SH_IND12W 4
2395 +#define R_SH_DIR8WPL 5
2396 +#define R_SH_DIR8WPZ 6
2397 +#define R_SH_DIR8BP 7
2398 +#define R_SH_DIR8W 8
2399 +#define R_SH_DIR8L 9
2400 +#define R_SH_SWITCH16 25
2401 +#define R_SH_SWITCH32 26
2402 +#define R_SH_USES 27
2403 +#define R_SH_COUNT 28
2404 +#define R_SH_ALIGN 29
2405 +#define R_SH_CODE 30
2406 +#define R_SH_DATA 31
2407 +#define R_SH_LABEL 32
2408 +#define R_SH_SWITCH8 33
2409 +#define R_SH_GNU_VTINHERIT 34
2410 +#define R_SH_GNU_VTENTRY 35
2411 +#define R_SH_TLS_GD_32 144
2412 +#define R_SH_TLS_LD_32 145
2413 +#define R_SH_TLS_LDO_32 146
2414 +#define R_SH_TLS_IE_32 147
2415 +#define R_SH_TLS_LE_32 148
2416 +#define R_SH_TLS_DTPMOD32 149
2417 +#define R_SH_TLS_DTPOFF32 150
2418 +#define R_SH_TLS_TPOFF32 151
2419 +#define R_SH_GOT32 160
2420 +#define R_SH_PLT32 161
2421 +#define R_SH_COPY 162
2422 +#define R_SH_GLOB_DAT 163
2423 +#define R_SH_JMP_SLOT 164
2424 +#define R_SH_RELATIVE 165
2425 +#define R_SH_GOTOFF 166
2426 +#define R_SH_GOTPC 167
2428 +#define R_SH_NUM 256
2432 +#define R_390_NONE 0
2433 +#define R_390_8 1
2434 +#define R_390_12 2
2435 +#define R_390_16 3
2436 +#define R_390_32 4
2437 +#define R_390_PC32 5
2438 +#define R_390_GOT12 6
2439 +#define R_390_GOT32 7
2440 +#define R_390_PLT32 8
2441 +#define R_390_COPY 9
2442 +#define R_390_GLOB_DAT 10
2443 +#define R_390_JMP_SLOT 11
2444 +#define R_390_RELATIVE 12
2445 +#define R_390_GOTOFF32 13
2446 +#define R_390_GOTPC 14
2447 +#define R_390_GOT16 15
2448 +#define R_390_PC16 16
2449 +#define R_390_PC16DBL 17
2450 +#define R_390_PLT16DBL 18
2451 +#define R_390_PC32DBL 19
2452 +#define R_390_PLT32DBL 20
2453 +#define R_390_GOTPCDBL 21
2454 +#define R_390_64 22
2455 +#define R_390_PC64 23
2456 +#define R_390_GOT64 24
2457 +#define R_390_PLT64 25
2458 +#define R_390_GOTENT 26
2459 +#define R_390_GOTOFF16 27
2460 +#define R_390_GOTOFF64 28
2461 +#define R_390_GOTPLT12 29
2462 +#define R_390_GOTPLT16 30
2463 +#define R_390_GOTPLT32 31
2464 +#define R_390_GOTPLT64 32
2465 +#define R_390_GOTPLTENT 33
2466 +#define R_390_PLTOFF16 34
2467 +#define R_390_PLTOFF32 35
2468 +#define R_390_PLTOFF64 36
2469 +#define R_390_TLS_LOAD 37
2470 +#define R_390_TLS_GDCALL 38
2472 +#define R_390_TLS_LDCALL 39
2474 +#define R_390_TLS_GD32 40
2476 +#define R_390_TLS_GD64 41
2478 +#define R_390_TLS_GOTIE12 42
2480 +#define R_390_TLS_GOTIE32 43
2482 +#define R_390_TLS_GOTIE64 44
2484 +#define R_390_TLS_LDM32 45
2486 +#define R_390_TLS_LDM64 46
2488 +#define R_390_TLS_IE32 47
2490 +#define R_390_TLS_IE64 48
2492 +#define R_390_TLS_IEENT 49
2494 +#define R_390_TLS_LE32 50
2496 +#define R_390_TLS_LE64 51
2498 +#define R_390_TLS_LDO32 52
2500 +#define R_390_TLS_LDO64 53
2502 +#define R_390_TLS_DTPMOD 54
2503 +#define R_390_TLS_DTPOFF 55
2504 +#define R_390_TLS_TPOFF 56
2506 +#define R_390_20 57
2507 +#define R_390_GOT20 58
2508 +#define R_390_GOTPLT20 59
2509 +#define R_390_TLS_GOTIE20 60
2512 +#define R_390_NUM 61
2516 +#define R_CRIS_NONE 0
2517 +#define R_CRIS_8 1
2518 +#define R_CRIS_16 2
2519 +#define R_CRIS_32 3
2520 +#define R_CRIS_8_PCREL 4
2521 +#define R_CRIS_16_PCREL 5
2522 +#define R_CRIS_32_PCREL 6
2523 +#define R_CRIS_GNU_VTINHERIT 7
2524 +#define R_CRIS_GNU_VTENTRY 8
2525 +#define R_CRIS_COPY 9
2526 +#define R_CRIS_GLOB_DAT 10
2527 +#define R_CRIS_JUMP_SLOT 11
2528 +#define R_CRIS_RELATIVE 12
2529 +#define R_CRIS_16_GOT 13
2530 +#define R_CRIS_32_GOT 14
2531 +#define R_CRIS_16_GOTPLT 15
2532 +#define R_CRIS_32_GOTPLT 16
2533 +#define R_CRIS_32_GOTREL 17
2534 +#define R_CRIS_32_PLT_GOTREL 18
2535 +#define R_CRIS_32_PLT_PCREL 19
2537 +#define R_CRIS_NUM 20
2541 +#define R_X86_64_NONE 0
2542 +#define R_X86_64_64 1
2543 +#define R_X86_64_PC32 2
2544 +#define R_X86_64_GOT32 3
2545 +#define R_X86_64_PLT32 4
2546 +#define R_X86_64_COPY 5
2547 +#define R_X86_64_GLOB_DAT 6
2548 +#define R_X86_64_JUMP_SLOT 7
2549 +#define R_X86_64_RELATIVE 8
2550 +#define R_X86_64_GOTPCREL 9
2552 +#define R_X86_64_32 10
2553 +#define R_X86_64_32S 11
2554 +#define R_X86_64_16 12
2555 +#define R_X86_64_PC16 13
2556 +#define R_X86_64_8 14
2557 +#define R_X86_64_PC8 15
2558 +#define R_X86_64_DTPMOD64 16
2559 +#define R_X86_64_DTPOFF64 17
2560 +#define R_X86_64_TPOFF64 18
2561 +#define R_X86_64_TLSGD 19
2563 +#define R_X86_64_TLSLD 20
2565 +#define R_X86_64_DTPOFF32 21
2566 +#define R_X86_64_GOTTPOFF 22
2568 +#define R_X86_64_TPOFF32 23
2569 +#define R_X86_64_PC64 24
2570 +#define R_X86_64_GOTOFF64 25
2571 +#define R_X86_64_GOTPC32 26
2572 +#define R_X86_64_GOT64 27
2573 +#define R_X86_64_GOTPCREL64 28
2574 +#define R_X86_64_GOTPC64 29
2575 +#define R_X86_64_GOTPLT64 30
2576 +#define R_X86_64_PLTOFF64 31
2577 +#define R_X86_64_SIZE32 32
2578 +#define R_X86_64_SIZE64 33
2580 +#define R_X86_64_GOTPC32_TLSDESC 34
2581 +#define R_X86_64_TLSDESC_CALL 35
2583 +#define R_X86_64_TLSDESC 36
2584 +#define R_X86_64_IRELATIVE 37
2585 +#define R_X86_64_RELATIVE64 38
2586 +#define R_X86_64_NUM 39
2590 +#define R_MN10300_NONE 0
2591 +#define R_MN10300_32 1
2592 +#define R_MN10300_16 2
2593 +#define R_MN10300_8 3
2594 +#define R_MN10300_PCREL32 4
2595 +#define R_MN10300_PCREL16 5
2596 +#define R_MN10300_PCREL8 6
2597 +#define R_MN10300_GNU_VTINHERIT 7
2598 +#define R_MN10300_GNU_VTENTRY 8
2599 +#define R_MN10300_24 9
2600 +#define R_MN10300_GOTPC32 10
2601 +#define R_MN10300_GOTPC16 11
2602 +#define R_MN10300_GOTOFF32 12
2603 +#define R_MN10300_GOTOFF24 13
2604 +#define R_MN10300_GOTOFF16 14
2605 +#define R_MN10300_PLT32 15
2606 +#define R_MN10300_PLT16 16
2607 +#define R_MN10300_GOT32 17
2608 +#define R_MN10300_GOT24 18
2609 +#define R_MN10300_GOT16 19
2610 +#define R_MN10300_COPY 20
2611 +#define R_MN10300_GLOB_DAT 21
2612 +#define R_MN10300_JMP_SLOT 22
2613 +#define R_MN10300_RELATIVE 23
2615 +#define R_MN10300_NUM 24
2619 +#define R_M32R_NONE 0
2620 +#define R_M32R_16 1
2621 +#define R_M32R_32 2
2622 +#define R_M32R_24 3
2623 +#define R_M32R_10_PCREL 4
2624 +#define R_M32R_18_PCREL 5
2625 +#define R_M32R_26_PCREL 6
2626 +#define R_M32R_HI16_ULO 7
2627 +#define R_M32R_HI16_SLO 8
2628 +#define R_M32R_LO16 9
2629 +#define R_M32R_SDA16 10
2630 +#define R_M32R_GNU_VTINHERIT 11
2631 +#define R_M32R_GNU_VTENTRY 12
2633 +#define R_M32R_16_RELA 33
2634 +#define R_M32R_32_RELA 34
2635 +#define R_M32R_24_RELA 35
2636 +#define R_M32R_10_PCREL_RELA 36
2637 +#define R_M32R_18_PCREL_RELA 37
2638 +#define R_M32R_26_PCREL_RELA 38
2639 +#define R_M32R_HI16_ULO_RELA 39
2640 +#define R_M32R_HI16_SLO_RELA 40
2641 +#define R_M32R_LO16_RELA 41
2642 +#define R_M32R_SDA16_RELA 42
2643 +#define R_M32R_RELA_GNU_VTINHERIT 43
2644 +#define R_M32R_RELA_GNU_VTENTRY 44
2645 +#define R_M32R_REL32 45
2647 +#define R_M32R_GOT24 48
2648 +#define R_M32R_26_PLTREL 49
2649 +#define R_M32R_COPY 50
2650 +#define R_M32R_GLOB_DAT 51
2651 +#define R_M32R_JMP_SLOT 52
2652 +#define R_M32R_RELATIVE 53
2653 +#define R_M32R_GOTOFF 54
2654 +#define R_M32R_GOTPC24 55
2655 +#define R_M32R_GOT16_HI_ULO 56
2657 +#define R_M32R_GOT16_HI_SLO 57
2659 +#define R_M32R_GOT16_LO 58
2660 +#define R_M32R_GOTPC_HI_ULO 59
2662 +#define R_M32R_GOTPC_HI_SLO 60
2664 +#define R_M32R_GOTPC_LO 61
2666 +#define R_M32R_GOTOFF_HI_ULO 62
2668 +#define R_M32R_GOTOFF_HI_SLO 63
2670 +#define R_M32R_GOTOFF_LO 64
2671 +#define R_M32R_NUM 256
2673 +#define R_MICROBLAZE_NONE 0
2674 +#define R_MICROBLAZE_32 1
2675 +#define R_MICROBLAZE_32_PCREL 2
2676 +#define R_MICROBLAZE_64_PCREL 3
2677 +#define R_MICROBLAZE_32_PCREL_LO 4
2678 +#define R_MICROBLAZE_64 5
2679 +#define R_MICROBLAZE_32_LO 6
2680 +#define R_MICROBLAZE_SRO32 7
2681 +#define R_MICROBLAZE_SRW32 8
2682 +#define R_MICROBLAZE_64_NONE 9
2683 +#define R_MICROBLAZE_32_SYM_OP_SYM 10
2684 +#define R_MICROBLAZE_GNU_VTINHERIT 11
2685 +#define R_MICROBLAZE_GNU_VTENTRY 12
2686 +#define R_MICROBLAZE_GOTPC_64 13
2687 +#define R_MICROBLAZE_GOT_64 14
2688 +#define R_MICROBLAZE_PLT_64 15
2689 +#define R_MICROBLAZE_REL 16
2690 +#define R_MICROBLAZE_JUMP_SLOT 17
2691 +#define R_MICROBLAZE_GLOB_DAT 18
2692 +#define R_MICROBLAZE_GOTOFF_64 19
2693 +#define R_MICROBLAZE_GOTOFF_32 20
2694 +#define R_MICROBLAZE_COPY 21
2695 +#define R_MICROBLAZE_TLS 22
2696 +#define R_MICROBLAZE_TLSGD 23
2697 +#define R_MICROBLAZE_TLSLD 24
2698 +#define R_MICROBLAZE_TLSDTPMOD32 25
2699 +#define R_MICROBLAZE_TLSDTPREL32 26
2700 +#define R_MICROBLAZE_TLSDTPREL64 27
2701 +#define R_MICROBLAZE_TLSGOTTPREL32 28
2702 +#define R_MICROBLAZE_TLSTPREL32 29
2704 +#ifdef __cplusplus
2706 +#endif
2709 +#endif