66 #define EI_NIDENT (16)
121 #define ELFMAG "\177ELF"
125 #define ELFCLASSNONE 0
128 #define ELFCLASSNUM 3
131 #define ELFDATANONE 0
132 #define ELFDATA2LSB 1
133 #define ELFDATA2MSB 2
140 #define ELFOSABI_NONE 0
141 #define ELFOSABI_SYSV 0
142 #define ELFOSABI_HPUX 1
143 #define ELFOSABI_NETBSD 2
144 #define ELFOSABI_GNU 3
145 #define ELFOSABI_LINUX ELFOSABI_GNU
146 #define ELFOSABI_SOLARIS 6
147 #define ELFOSABI_AIX 7
148 #define ELFOSABI_IRIX 8
149 #define ELFOSABI_FREEBSD 9
150 #define ELFOSABI_TRU64 10
151 #define ELFOSABI_MODESTO 11
152 #define ELFOSABI_OPENBSD 12
153 #define ELFOSABI_ARM_AEABI 64
154 #define ELFOSABI_ARM 97
155 #define ELFOSABI_STANDALONE 255
157 #define EI_ABIVERSION 8
169 #define ET_LOOS 0xfe00
170 #define ET_HIOS 0xfeff
171 #define ET_LOPROC 0xff00
172 #define ET_HIPROC 0xffff
186 #define EM_MIPS_RS3_LE 10
191 #define EM_SPARC32PLUS 18
203 #define EM_FAKE_ALPHA 41
205 #define EM_SPARCV9 43
206 #define EM_TRICORE 44
209 #define EM_H8_300H 47
214 #define EM_COLDFIRE 52
220 #define EM_STARCORE 58
229 #define EM_ST9PLUS 67
239 #define EM_JAVELIN 77
240 #define EM_FIREPATH 78
251 #define EM_MN10300 89
252 #define EM_MN10200 90
254 #define EM_OPENRISC 92
255 #define EM_ARC_COMPACT 93
257 #define EM_VIDEOCORE 95
258 #define EM_TMM_GPP 96
266 #define EM_F2MC16 104
267 #define EM_MSP430 105
268 #define EM_BLACKFIN 106
269 #define EM_SE_C33 107
272 #define EM_UNICORE 110
273 #define EM_EXCESS 111
275 #define EM_ALTERA_NIOS2 113
280 #define EM_DSPIC30F 118
284 #define EM_TSK3000 131
288 #define EM_SCORE7 135
290 #define EM_VIDEOCORE3 137
291 #define EM_LATTICEMICO32 138
292 #define EM_SE_C17 139
293 #define EM_TI_C6000 140
294 #define EM_TI_C2000 141
295 #define EM_TI_C5500 142
296 #define EM_TI_ARP32 143
297 #define EM_TI_PRU 144
299 #define EM_MMDSP_PLUS 160
300 #define EM_CYPRESS_M8C 161
302 #define EM_TRIMEDIA 163
305 #define EM_STXP7X 166
307 #define EM_ECOG1X 168
308 #define EM_MAXQ30 169
309 #define EM_XIMO16 170
311 #define EM_CRAYNV2 172
314 #define EM_MCST_ELBRUS 175
315 #define EM_ECOG16 176
322 #define EM_AARCH64 183
326 #define EM_TILE64 187
327 #define EM_TILEPRO 188
328 #define EM_MICROBLAZE 189
330 #define EM_TILEGX 191
331 #define EM_CLOUDSHIELD 192
332 #define EM_COREA_1ST 193
333 #define EM_COREA_2ND 194
337 #define EM_VIDEOCORE5 198
339 #define EM_56800EX 200
343 #define EM_MCHP_PIC 204
354 #define EM_CSR_KALIMBA 219
356 #define EM_VISIUM 221
359 #define EM_AMDGPU 224
370 #define EM_ARC_A5 EM_ARC_COMPACT
376 #define EM_ALPHA 0x9026
417 #define SHN_LORESERVE 0xff00
418 #define SHN_LOPROC 0xff00
419 #define SHN_BEFORE 0xff00
421 #define SHN_AFTER 0xff01
423 #define SHN_HIPROC 0xff1f
424 #define SHN_LOOS 0xff20
425 #define SHN_HIOS 0xff3f
426 #define SHN_ABS 0xfff1
427 #define SHN_COMMON 0xfff2
428 #define SHN_XINDEX 0xffff
429 #define SHN_HIRESERVE 0xffff
434 #define SHT_PROGBITS 1
439 #define SHT_DYNAMIC 6
444 #define SHT_DYNSYM 11
445 #define SHT_INIT_ARRAY 14
446 #define SHT_FINI_ARRAY 15
447 #define SHT_PREINIT_ARRAY 16
449 #define SHT_SYMTAB_SHNDX 18
451 #define SHT_LOOS 0x60000000
452 #define SHT_GNU_ATTRIBUTES 0x6ffffff5
453 #define SHT_GNU_HASH 0x6ffffff6
454 #define SHT_GNU_LIBLIST 0x6ffffff7
455 #define SHT_CHECKSUM 0x6ffffff8
456 #define SHT_LOSUNW 0x6ffffffa
457 #define SHT_SUNW_move 0x6ffffffa
458 #define SHT_SUNW_COMDAT 0x6ffffffb
459 #define SHT_SUNW_syminfo 0x6ffffffc
460 #define SHT_GNU_verdef 0x6ffffffd
461 #define SHT_GNU_verneed 0x6ffffffe
462 #define SHT_GNU_versym 0x6fffffff
463 #define SHT_HISUNW 0x6fffffff
464 #define SHT_HIOS 0x6fffffff
465 #define SHT_LOPROC 0x70000000
466 #define SHT_HIPROC 0x7fffffff
467 #define SHT_LOUSER 0x80000000
468 #define SHT_HIUSER 0x8fffffff
472 #define SHF_WRITE (1 << 0)
473 #define SHF_ALLOC (1 << 1)
474 #define SHF_EXECINSTR (1 << 2)
475 #define SHF_MERGE (1 << 4)
476 #define SHF_STRINGS (1 << 5)
477 #define SHF_INFO_LINK (1 << 6)
478 #define SHF_LINK_ORDER (1 << 7)
479 #define SHF_OS_NONCONFORMING (1 << 8)
481 #define SHF_GROUP (1 << 9)
482 #define SHF_TLS (1 << 10)
483 #define SHF_COMPRESSED (1 << 11)
484 #define SHF_MASKOS 0x0ff00000
485 #define SHF_MASKPROC 0xf0000000
486 #define SHF_ORDERED (1 << 30)
488 #define SHF_EXCLUDE (1U << 31)
509 #define ELFCOMPRESS_ZLIB 1
510 #define ELFCOMPRESS_LOOS 0x60000000
511 #define ELFCOMPRESS_HIOS 0x6fffffff
512 #define ELFCOMPRESS_LOPROC 0x70000000
513 #define ELFCOMPRESS_HIPROC 0x7fffffff
516 #define GRP_COMDAT 0x1
525 unsigned char st_info;
526 unsigned char st_other;
533 unsigned char st_info;
534 unsigned char st_other;
556 #define SYMINFO_BT_SELF 0xffff
557 #define SYMINFO_BT_PARENT 0xfffe
558 #define SYMINFO_BT_LOWRESERVE 0xff00
561 #define SYMINFO_FLG_DIRECT 0x0001
562 #define SYMINFO_FLG_PASSTHRU 0x0002
563 #define SYMINFO_FLG_COPY 0x0004
564 #define SYMINFO_FLG_LAZYLOAD 0x0008
567 #define SYMINFO_NONE 0
568 #define SYMINFO_CURRENT 1
569 #define SYMINFO_NUM 2
573 #define ELF32_ST_BIND(val) (((unsigned char)(val)) >> 4)
574 #define ELF32_ST_TYPE(val) ((val)&0xf)
575 #define ELF32_ST_INFO(bind, type) (((bind) << 4) + ((type)&0xf))
578 #define ELF64_ST_BIND(val) ELF32_ST_BIND(val)
579 #define ELF64_ST_TYPE(val) ELF32_ST_TYPE(val)
580 #define ELF64_ST_INFO(bind, type) ELF32_ST_INFO((bind), (type))
589 #define STB_GNU_UNIQUE 10
591 #define STB_LOPROC 13
592 #define STB_HIPROC 15
599 #define STT_SECTION 3
605 #define STT_GNU_IFUNC 10
607 #define STT_LOPROC 13
608 #define STT_HIPROC 15
618 #define ELF32_ST_VISIBILITY(o) ((o)&0x03)
621 #define ELF64_ST_VISIBILITY(o) ELF32_ST_VISIBILITY(o)
624 #define STV_DEFAULT 0
625 #define STV_INTERNAL 1
627 #define STV_PROTECTED 3
666 #define ELF32_R_SYM(val) ((val) >> 8)
667 #define ELF32_R_TYPE(val) ((val)&0xff)
668 #define ELF32_R_INFO(sym, type) (((sym) << 8) + ((type)&0xff))
670 #define ELF64_R_SYM(i) ((i) >> 32)
671 #define ELF64_R_TYPE(i) ((i)&0xffffffff)
672 #define ELF64_R_INFO(sym, type) ((((Elf64_Xword)(sym)) << 32) + (type))
704 #define PN_XNUM 0xffff
717 #define PT_LOOS 0x60000000
718 #define PT_GNU_EH_FRAME 0x6474e550
719 #define PT_GNU_STACK 0x6474e551
720 #define PT_GNU_RELRO 0x6474e552
721 #define PT_GNU_PROPERTY 0x6474e553
722 #define PT_LOSUNW 0x6ffffffa
723 #define PT_SUNWBSS 0x6ffffffa
724 #define PT_SUNWSTACK 0x6ffffffb
725 #define PT_HISUNW 0x6fffffff
726 #define PT_HIOS 0x6fffffff
727 #define PT_LOPROC 0x70000000
728 #define PT_HIPROC 0x7fffffff
732 #define PF_X (1 << 0)
733 #define PF_W (1 << 1)
734 #define PF_R (1 << 2)
735 #define PF_MASKOS 0x0ff00000
736 #define PF_MASKPROC 0xf0000000
740 #define NT_PRSTATUS 1
743 #define NT_FPREGSET 2
744 #define NT_PRPSINFO 3
746 #define NT_TASKSTRUCT 4
747 #define NT_PLATFORM 5
749 #define NT_GWINDOWS 7
751 #define NT_PSTATUS 10
754 #define NT_UTSNAME 15
755 #define NT_LWPSTATUS 16
756 #define NT_LWPSINFO 17
757 #define NT_PRFPXREG 20
758 #define NT_SIGINFO 0x53494749
760 #define NT_FILE 0x46494c45
762 #define NT_PRXFPREG 0x46e62b7f
763 #define NT_PPC_VMX 0x100
764 #define NT_PPC_SPE 0x101
765 #define NT_PPC_VSX 0x102
766 #define NT_PPC_TAR 0x103
767 #define NT_PPC_PPR 0x104
768 #define NT_PPC_DSCR 0x105
769 #define NT_PPC_EBB 0x106
770 #define NT_PPC_PMU 0x107
771 #define NT_PPC_TM_CGPR 0x108
772 #define NT_PPC_TM_CFPR 0x109
773 #define NT_PPC_TM_CVMX 0x10a
774 #define NT_PPC_TM_CVSX 0x10b
775 #define NT_PPC_TM_SPR 0x10c
776 #define NT_PPC_TM_CTAR 0x10d
778 #define NT_PPC_TM_CPPR 0x10e
780 #define NT_PPC_TM_CDSCR 0x10f
782 #define NT_PPC_PKEY 0x110
784 #define NT_386_TLS 0x200
785 #define NT_386_IOPERM 0x201
786 #define NT_X86_XSTATE 0x202
787 #define NT_S390_HIGH_GPRS 0x300
788 #define NT_S390_TIMER 0x301
789 #define NT_S390_TODCMP 0x302
790 #define NT_S390_TODPREG 0x303
791 #define NT_S390_CTRS 0x304
792 #define NT_S390_PREFIX 0x305
793 #define NT_S390_LAST_BREAK 0x306
794 #define NT_S390_SYSTEM_CALL 0x307
795 #define NT_S390_TDB 0x308
796 #define NT_S390_VXRS_LOW 0x309
798 #define NT_S390_VXRS_HIGH 0x30a
799 #define NT_S390_GS_CB 0x30b
800 #define NT_S390_GS_BC 0x30c
802 #define NT_S390_RI_CB 0x30d
803 #define NT_ARM_VFP 0x400
804 #define NT_ARM_TLS 0x401
805 #define NT_ARM_HW_BREAK 0x402
806 #define NT_ARM_HW_WATCH 0x403
807 #define NT_ARM_SYSTEM_CALL 0x404
808 #define NT_ARM_SVE 0x405
810 #define NT_ARM_PAC_MASK 0x406
812 #define NT_ARM_PACA_KEYS 0x407
814 #define NT_ARM_PACG_KEYS 0x408
816 #define NT_VMCOREDD 0x700
817 #define NT_MIPS_DSP 0x800
818 #define NT_MIPS_FP_MODE 0x801
819 #define NT_MIPS_MSA 0x802
849 #define DT_PLTRELSZ 2
863 #define DT_SYMBOLIC 16
869 #define DT_TEXTREL 22
871 #define DT_BIND_NOW 24
872 #define DT_INIT_ARRAY 25
873 #define DT_FINI_ARRAY 26
874 #define DT_INIT_ARRAYSZ 27
875 #define DT_FINI_ARRAYSZ 28
876 #define DT_RUNPATH 29
878 #define DT_ENCODING 32
879 #define DT_PREINIT_ARRAY 32
880 #define DT_PREINIT_ARRAYSZ 33
881 #define DT_SYMTAB_SHNDX 34
883 #define DT_LOOS 0x6000000d
884 #define DT_HIOS 0x6ffff000
885 #define DT_LOPROC 0x70000000
886 #define DT_HIPROC 0x7fffffff
887 #define DT_PROCNUM DT_MIPS_NUM
892 #define DT_VALRNGLO 0x6ffffd00
893 #define DT_GNU_PRELINKED 0x6ffffdf5
894 #define DT_GNU_CONFLICTSZ 0x6ffffdf6
895 #define DT_GNU_LIBLISTSZ 0x6ffffdf7
896 #define DT_CHECKSUM 0x6ffffdf8
897 #define DT_PLTPADSZ 0x6ffffdf9
898 #define DT_MOVEENT 0x6ffffdfa
899 #define DT_MOVESZ 0x6ffffdfb
900 #define DT_FEATURE_1 0x6ffffdfc
901 #define DT_POSFLAG_1 0x6ffffdfd
903 #define DT_SYMINSZ 0x6ffffdfe
904 #define DT_SYMINENT 0x6ffffdff
905 #define DT_VALRNGHI 0x6ffffdff
906 #define DT_VALTAGIDX(tag) (DT_VALRNGHI - (tag))
914 #define DT_ADDRRNGLO 0x6ffffe00
915 #define DT_GNU_HASH 0x6ffffef5
916 #define DT_TLSDESC_PLT 0x6ffffef6
917 #define DT_TLSDESC_GOT 0x6ffffef7
918 #define DT_GNU_CONFLICT 0x6ffffef8
919 #define DT_GNU_LIBLIST 0x6ffffef9
920 #define DT_CONFIG 0x6ffffefa
921 #define DT_DEPAUDIT 0x6ffffefb
922 #define DT_AUDIT 0x6ffffefc
923 #define DT_PLTPAD 0x6ffffefd
924 #define DT_MOVETAB 0x6ffffefe
925 #define DT_SYMINFO 0x6ffffeff
926 #define DT_ADDRRNGHI 0x6ffffeff
927 #define DT_ADDRTAGIDX(tag) (DT_ADDRRNGHI - (tag))
928 #define DT_ADDRNUM 11
932 #define DT_VERSYM 0x6ffffff0
934 #define DT_RELACOUNT 0x6ffffff9
935 #define DT_RELCOUNT 0x6ffffffa
938 #define DT_FLAGS_1 0x6ffffffb
939 #define DT_VERDEF 0x6ffffffc
941 #define DT_VERDEFNUM 0x6ffffffd
942 #define DT_VERNEED 0x6ffffffe
944 #define DT_VERNEEDNUM 0x6fffffff
945 #define DT_VERSIONTAGIDX(tag) (DT_VERNEEDNUM - (tag))
946 #define DT_VERSIONTAGNUM 16
950 #define DT_AUXILIARY 0x7ffffffd
951 #define DT_FILTER 0x7fffffff
952 #define DT_EXTRATAGIDX(tag) ((Elf32_Word) - ((Elf32_Sword)(tag) << 1 >> 1) - 1)
953 #define DT_EXTRANUM 3
956 #define DF_ORIGIN 0x00000001
957 #define DF_SYMBOLIC 0x00000002
958 #define DF_TEXTREL 0x00000004
959 #define DF_BIND_NOW 0x00000008
960 #define DF_STATIC_TLS 0x00000010
964 #define DF_1_NOW 0x00000001
965 #define DF_1_GLOBAL 0x00000002
966 #define DF_1_GROUP 0x00000004
967 #define DF_1_NODELETE 0x00000008
968 #define DF_1_LOADFLTR 0x00000010
969 #define DF_1_INITFIRST 0x00000020
970 #define DF_1_NOOPEN 0x00000040
971 #define DF_1_ORIGIN 0x00000080
972 #define DF_1_DIRECT 0x00000100
973 #define DF_1_TRANS 0x00000200
974 #define DF_1_INTERPOSE 0x00000400
975 #define DF_1_NODEFLIB 0x00000800
976 #define DF_1_NODUMP 0x00001000
977 #define DF_1_CONFALT 0x00002000
978 #define DF_1_ENDFILTEE 0x00004000
979 #define DF_1_DISPRELDNE 0x00008000
980 #define DF_1_DISPRELPND 0x00010000
981 #define DF_1_NODIRECT 0x00020000
982 #define DF_1_IGNMULDEF 0x00040000
983 #define DF_1_NOKSYMS 0x00080000
984 #define DF_1_NOHDR 0x00100000
985 #define DF_1_EDITED 0x00200000
986 #define DF_1_NORELOC 0x00400000
987 #define DF_1_SYMINTPOSE 0x00800000
988 #define DF_1_GLOBAUDIT 0x01000000
989 #define DF_1_SINGLETON 0x02000000
990 #define DF_1_STUB 0x04000000
991 #define DF_1_PIE 0x08000000
992 #define DF_1_KMOD 0x10000000
993 #define DF_1_WEAKFILTER 0x20000000
994 #define DF_1_NOCOMMON 0x40000000
997 #define DTF_1_PARINIT 0x00000001
998 #define DTF_1_CONFEXP 0x00000002
1001 #define DF_P1_LAZYLOAD 0x00000001
1002 #define DF_P1_GROUPPERM 0x00000002
1032 #define VER_DEF_NONE 0
1033 #define VER_DEF_CURRENT 1
1034 #define VER_DEF_NUM 2
1037 #define VER_FLG_BASE 0x1
1038 #define VER_FLG_WEAK 0x2
1041 #define VER_NDX_LOCAL 0
1042 #define VER_NDX_GLOBAL 1
1043 #define VER_NDX_LORESERVE 0xff00
1044 #define VER_NDX_ELIMINATE 0xff01
1087 #define VER_NEED_NONE 0
1088 #define VER_NEED_CURRENT 1
1089 #define VER_NEED_NUM 2
1114 #define VER_FLG_WEAK 0x2
1159 #define AT_NOTELF 10
1164 #define AT_CLKTCK 17
1167 #define AT_PLATFORM 15
1176 #define AT_DCACHEBSIZE 19
1177 #define AT_ICACHEBSIZE 20
1178 #define AT_UCACHEBSIZE 21
1182 #define AT_IGNOREPPC 22
1184 #define AT_SECURE 23
1186 #define AT_BASE_PLATFORM 24
1188 #define AT_RANDOM 25
1190 #define AT_HWCAP2 26
1193 #define AT_EXECFN 31
1197 #define AT_SYSINFO 32
1198 #define AT_SYSINFO_EHDR 33
1202 #define AT_L1I_CACHESHAPE 34
1203 #define AT_L1D_CACHESHAPE 35
1204 #define AT_L2_CACHESHAPE 36
1205 #define AT_L3_CACHESHAPE 37
1210 #define AT_L1I_CACHESIZE 40
1211 #define AT_L1I_CACHEGEOMETRY 41
1212 #define AT_L1D_CACHESIZE 42
1213 #define AT_L1D_CACHEGEOMETRY 43
1214 #define AT_L2_CACHESIZE 44
1215 #define AT_L2_CACHEGEOMETRY 45
1216 #define AT_L3_CACHESIZE 46
1217 #define AT_L3_CACHEGEOMETRY 47
1219 #define AT_MINSIGSTKSZ 51
1242 #define ELF_NOTE_SOLARIS "SUNW Solaris"
1245 #define ELF_NOTE_GNU "GNU"
1250 #define ELF_NOTE_PAGESIZE_HINT 1
1260 #define NT_GNU_ABI_TAG 1
1261 #define ELF_NOTE_ABI NT_GNU_ABI_TAG
1265 #define ELF_NOTE_OS_LINUX 0
1266 #define ELF_NOTE_OS_GNU 1
1267 #define ELF_NOTE_OS_SOLARIS2 2
1268 #define ELF_NOTE_OS_FREEBSD 3
1276 #define NT_GNU_HWCAP 2
1280 #define NT_GNU_BUILD_ID 3
1283 #define NT_GNU_GOLD_VERSION 4
1286 #define NT_GNU_PROPERTY_TYPE_0 5
1289 #define NOTE_GNU_PROPERTY_SECTION_NAME ".note.gnu.property"
1294 #define GNU_PROPERTY_STACK_SIZE 1
1296 #define GNU_PROPERTY_NO_COPY_ON_PROTECTED 2
1299 #define GNU_PROPERTY_LOPROC 0xc0000000
1301 #define GNU_PROPERTY_HIPROC 0xdfffffff
1303 #define GNU_PROPERTY_LOUSER 0xe0000000
1305 #define GNU_PROPERTY_HIUSER 0xffffffff
1308 #define GNU_PROPERTY_AARCH64_FEATURE_1_AND 0xc0000000
1310 #define GNU_PROPERTY_AARCH64_FEATURE_1_BTI (1U << 0)
1311 #define GNU_PROPERTY_AARCH64_FEATURE_1_PAC (1U << 1)
1315 #define GNU_PROPERTY_X86_ISA_1_USED 0xc0000000
1318 #define GNU_PROPERTY_X86_ISA_1_NEEDED 0xc0000001
1320 #define GNU_PROPERTY_X86_FEATURE_1_AND 0xc0000002
1322 #define GNU_PROPERTY_X86_ISA_1_486 (1U << 0)
1323 #define GNU_PROPERTY_X86_ISA_1_586 (1U << 1)
1324 #define GNU_PROPERTY_X86_ISA_1_686 (1U << 2)
1325 #define GNU_PROPERTY_X86_ISA_1_SSE (1U << 3)
1326 #define GNU_PROPERTY_X86_ISA_1_SSE2 (1U << 4)
1327 #define GNU_PROPERTY_X86_ISA_1_SSE3 (1U << 5)
1328 #define GNU_PROPERTY_X86_ISA_1_SSSE3 (1U << 6)
1329 #define GNU_PROPERTY_X86_ISA_1_SSE4_1 (1U << 7)
1330 #define GNU_PROPERTY_X86_ISA_1_SSE4_2 (1U << 8)
1331 #define GNU_PROPERTY_X86_ISA_1_AVX (1U << 9)
1332 #define GNU_PROPERTY_X86_ISA_1_AVX2 (1U << 10)
1333 #define GNU_PROPERTY_X86_ISA_1_AVX512F (1U << 11)
1334 #define GNU_PROPERTY_X86_ISA_1_AVX512CD (1U << 12)
1335 #define GNU_PROPERTY_X86_ISA_1_AVX512ER (1U << 13)
1336 #define GNU_PROPERTY_X86_ISA_1_AVX512PF (1U << 14)
1337 #define GNU_PROPERTY_X86_ISA_1_AVX512VL (1U << 15)
1338 #define GNU_PROPERTY_X86_ISA_1_AVX512DQ (1U << 16)
1339 #define GNU_PROPERTY_X86_ISA_1_AVX512BW (1U << 17)
1343 #define GNU_PROPERTY_X86_FEATURE_1_IBT (1U << 0)
1346 #define GNU_PROPERTY_X86_FEATURE_1_SHSTK (1U << 1)
1368 #define ELF32_M_SYM(info) ((info) >> 8)
1369 #define ELF32_M_SIZE(info) ((unsigned char)(info))
1370 #define ELF32_M_INFO(sym, size) (((sym) << 8) + (unsigned char)(size))
1372 #define ELF64_M_SYM(info) ELF32_M_SYM(info)
1373 #define ELF64_M_SIZE(info) ELF32_M_SIZE(info)
1374 #define ELF64_M_INFO(sym, size) ELF32_M_INFO(sym, size)
1379 #define EF_CPU32 0x00810000
1383 #define RZ_68K_NONE 0
1387 #define RZ_68K_PC32 4
1388 #define RZ_68K_PC16 5
1389 #define RZ_68K_PC8 6
1390 #define RZ_68K_GOT32 7
1391 #define RZ_68K_GOT16 8
1392 #define RZ_68K_GOT8 9
1393 #define RZ_68K_GOT32O 10
1394 #define RZ_68K_GOT16O 11
1395 #define RZ_68K_GOT8O 12
1396 #define RZ_68K_PLT32 13
1397 #define RZ_68K_PLT16 14
1398 #define RZ_68K_PLT8 15
1399 #define RZ_68K_PLT32O 16
1400 #define RZ_68K_PLT16O 17
1401 #define RZ_68K_PLT8O 18
1402 #define RZ_68K_COPY 19
1403 #define RZ_68K_GLOB_DAT 20
1404 #define RZ_68K_JMP_SLOT 21
1405 #define RZ_68K_RELATIVE 22
1406 #define RZ_68K_TLS_GD32 25
1407 #define RZ_68K_TLS_GD16 26
1408 #define RZ_68K_TLS_GD8 27
1409 #define RZ_68K_TLS_LDM32 28
1410 #define RZ_68K_TLS_LDM16 29
1411 #define RZ_68K_TLS_LDM8 30
1412 #define RZ_68K_TLS_LDO32 31
1413 #define RZ_68K_TLS_LDO16 32
1414 #define RZ_68K_TLS_LDO8 33
1415 #define RZ_68K_TLS_IE32 34
1416 #define RZ_68K_TLS_IE16 35
1417 #define RZ_68K_TLS_IE8 36
1418 #define RZ_68K_TLS_LE32 37
1420 #define RZ_68K_TLS_LE16 38
1422 #define RZ_68K_TLS_LE8 39
1424 #define RZ_68K_TLS_DTPMOD32 40
1425 #define RZ_68K_TLS_DTPREL32 41
1426 #define RZ_68K_TLS_TPREL32 42
1428 #define RZ_68K_NUM 43
1434 #define RZ_386_NONE 0
1436 #define RZ_386_PC32 2
1437 #define RZ_386_GOT32 3
1438 #define RZ_386_PLT32 4
1439 #define RZ_386_COPY 5
1440 #define RZ_386_GLOB_DAT 6
1441 #define RZ_386_JMP_SLOT 7
1442 #define RZ_386_RELATIVE 8
1443 #define RZ_386_GOTOFF 9
1444 #define RZ_386_GOTPC 10
1445 #define RZ_386_32PLT 11
1446 #define RZ_386_TLS_TPOFF 14
1447 #define RZ_386_TLS_IE 15
1449 #define RZ_386_TLS_GOTIE 16
1451 #define RZ_386_TLS_LE 17
1453 #define RZ_386_TLS_GD 18
1455 #define RZ_386_TLS_LDM 19
1458 #define RZ_386_16 20
1459 #define RZ_386_PC16 21
1461 #define RZ_386_PC8 23
1462 #define RZ_386_TLS_GD_32 24
1464 #define RZ_386_TLS_GD_PUSH 25
1465 #define RZ_386_TLS_GD_CALL 26
1467 #define RZ_386_TLS_GD_POP 27
1468 #define RZ_386_TLS_LDM_32 28
1470 #define RZ_386_TLS_LDM_PUSH 29
1471 #define RZ_386_TLS_LDM_CALL 30
1473 #define RZ_386_TLS_LDM_POP 31
1474 #define RZ_386_TLS_LDO_32 32
1475 #define RZ_386_TLS_IE_32 33
1477 #define RZ_386_TLS_LE_32 34
1479 #define RZ_386_TLS_DTPMOD32 35
1480 #define RZ_386_TLS_DTPOFF32 36
1481 #define RZ_386_TLS_TPOFF32 37
1482 #define RZ_386_SIZE32 38
1483 #define RZ_386_TLS_GOTDESC 39
1484 #define RZ_386_TLS_DESC_CALL 40
1487 #define RZ_386_TLS_DESC 41
1491 #define RZ_386_IRELATIVE 42
1492 #define RZ_386_GOT32X 43
1495 #define RZ_386_NUM 44
1501 #define STT_SPARC_REGISTER 13
1505 #define EF_SPARCV9_MM 3
1506 #define EF_SPARCV9_TSO 0
1507 #define EF_SPARCV9_PSO 1
1508 #define EF_SPARCV9_RMO 2
1509 #define EF_SPARC_LEDATA 0x800000
1510 #define EF_SPARC_EXT_MASK 0xFFFF00
1511 #define EF_SPARC_32PLUS 0x000100
1512 #define EF_SPARC_SUN_US1 0x000200
1513 #define EF_SPARC_HAL_R1 0x000400
1514 #define EF_SPARC_SUN_US3 0x000800
1518 #define RZ_SPARC_NONE 0
1519 #define RZ_SPARC_8 1
1520 #define RZ_SPARC_16 2
1521 #define RZ_SPARC_32 3
1522 #define RZ_SPARC_DISP8 4
1523 #define RZ_SPARC_DISP16 5
1524 #define RZ_SPARC_DISP32 6
1525 #define RZ_SPARC_WDISP30 7
1526 #define RZ_SPARC_WDISP22 8
1527 #define RZ_SPARC_HI22 9
1528 #define RZ_SPARC_22 10
1529 #define RZ_SPARC_13 11
1530 #define RZ_SPARC_LO10 12
1531 #define RZ_SPARC_GOT10 13
1532 #define RZ_SPARC_GOT13 14
1533 #define RZ_SPARC_GOT22 15
1534 #define RZ_SPARC_PC10 16
1535 #define RZ_SPARC_PC22 17
1536 #define RZ_SPARC_WPLT30 18
1537 #define RZ_SPARC_COPY 19
1538 #define RZ_SPARC_GLOB_DAT 20
1539 #define RZ_SPARC_JMP_SLOT 21
1540 #define RZ_SPARC_RELATIVE 22
1541 #define RZ_SPARC_UA32 23
1545 #define RZ_SPARC_PLT32 24
1546 #define RZ_SPARC_HIPLT22 25
1547 #define RZ_SPARC_LOPLT10 26
1548 #define RZ_SPARC_PCPLT32 27
1549 #define RZ_SPARC_PCPLT22 28
1550 #define RZ_SPARC_PCPLT10 29
1551 #define RZ_SPARC_10 30
1552 #define RZ_SPARC_11 31
1553 #define RZ_SPARC_64 32
1554 #define RZ_SPARC_OLO10 33
1555 #define RZ_SPARC_HH22 34
1556 #define RZ_SPARC_HM10 35
1557 #define RZ_SPARC_LM22 36
1558 #define RZ_SPARC_PC_HH22 37
1559 #define RZ_SPARC_PC_HM10 38
1560 #define RZ_SPARC_PC_LM22 39
1561 #define RZ_SPARC_WDISP16 40
1562 #define RZ_SPARC_WDISP19 41
1563 #define RZ_SPARC_GLOB_JMP 42
1564 #define RZ_SPARC_7 43
1565 #define RZ_SPARC_5 44
1566 #define RZ_SPARC_6 45
1567 #define RZ_SPARC_DISP64 46
1568 #define RZ_SPARC_PLT64 47
1569 #define RZ_SPARC_HIX22 48
1570 #define RZ_SPARC_LOX10 49
1571 #define RZ_SPARC_H44 50
1572 #define RZ_SPARC_M44 51
1573 #define RZ_SPARC_L44 52
1574 #define RZ_SPARC_REGISTER 53
1575 #define RZ_SPARC_UA64 54
1576 #define RZ_SPARC_UA16 55
1577 #define RZ_SPARC_TLS_GD_HI22 56
1578 #define RZ_SPARC_TLS_GD_LO10 57
1579 #define RZ_SPARC_TLS_GD_ADD 58
1580 #define RZ_SPARC_TLS_GD_CALL 59
1581 #define RZ_SPARC_TLS_LDM_HI22 60
1582 #define RZ_SPARC_TLS_LDM_LO10 61
1583 #define RZ_SPARC_TLS_LDM_ADD 62
1584 #define RZ_SPARC_TLS_LDM_CALL 63
1585 #define RZ_SPARC_TLS_LDO_HIX22 64
1586 #define RZ_SPARC_TLS_LDO_LOX10 65
1587 #define RZ_SPARC_TLS_LDO_ADD 66
1588 #define RZ_SPARC_TLS_IE_HI22 67
1589 #define RZ_SPARC_TLS_IE_LO10 68
1590 #define RZ_SPARC_TLS_IE_LD 69
1591 #define RZ_SPARC_TLS_IE_LDX 70
1592 #define RZ_SPARC_TLS_IE_ADD 71
1593 #define RZ_SPARC_TLS_LE_HIX22 72
1594 #define RZ_SPARC_TLS_LE_LOX10 73
1595 #define RZ_SPARC_TLS_DTPMOD32 74
1596 #define RZ_SPARC_TLS_DTPMOD64 75
1597 #define RZ_SPARC_TLS_DTPOFF32 76
1598 #define RZ_SPARC_TLS_DTPOFF64 77
1599 #define RZ_SPARC_TLS_TPOFF32 78
1600 #define RZ_SPARC_TLS_TPOFF64 79
1601 #define RZ_SPARC_GOTDATA_HIX22 80
1602 #define RZ_SPARC_GOTDATA_LOX10 81
1603 #define RZ_SPARC_GOTDATA_OP_HIX22 82
1604 #define RZ_SPARC_GOTDATA_OP_LOX10 83
1605 #define RZ_SPARC_GOTDATA_OP 84
1606 #define RZ_SPARC_H34 85
1607 #define RZ_SPARC_SIZE32 86
1608 #define RZ_SPARC_SIZE64 87
1609 #define RZ_SPARC_WDISP10 88
1610 #define RZ_SPARC_JMP_IREL 248
1611 #define RZ_SPARC_IRELATIVE 249
1612 #define RZ_SPARC_GNU_VTINHERIT 250
1613 #define RZ_SPARC_GNU_VTENTRY 251
1614 #define RZ_SPARC_REV32 252
1616 #define RZ_SPARC_NUM 253
1620 #define DT_SPARC_REGISTER 0x70000001
1621 #define DT_SPARC_NUM 2
1627 #define EF_MIPS_NOREORDER 1
1628 #define EF_MIPS_PIC 2
1629 #define EF_MIPS_CPIC 4
1630 #define EF_MIPS_XGOT 8
1631 #define EF_MIPS_64BIT_WHIRL 16
1632 #define EF_MIPS_ABI2 32
1633 #define EF_MIPS_ABI_ON32 64
1634 #define EF_MIPS_FP64 512
1635 #define EF_MIPS_NAN2008 1024
1636 #define EF_MIPS_ARCH 0xf0000000
1640 #define EF_MIPS_ARCH_1 0x00000000
1641 #define EF_MIPS_ARCH_2 0x10000000
1642 #define EF_MIPS_ARCH_3 0x20000000
1643 #define EF_MIPS_ARCH_4 0x30000000
1644 #define EF_MIPS_ARCH_5 0x40000000
1645 #define EF_MIPS_ARCH_32 0x50000000
1646 #define EF_MIPS_ARCH_64 0x60000000
1647 #define EF_MIPS_ARCH_32R2 0x70000000
1648 #define EF_MIPS_ARCH_64R2 0x80000000
1652 #define E_MIPS_ARCH_1 EF_MIPS_ARCH_1
1653 #define E_MIPS_ARCH_2 EF_MIPS_ARCH_2
1654 #define E_MIPS_ARCH_3 EF_MIPS_ARCH_3
1655 #define E_MIPS_ARCH_4 EF_MIPS_ARCH_4
1656 #define E_MIPS_ARCH_5 EF_MIPS_ARCH_5
1657 #define E_MIPS_ARCH_32 EF_MIPS_ARCH_32
1658 #define E_MIPS_ARCH_64 EF_MIPS_ARCH_64
1662 #define SHN_MIPS_ACOMMON 0xff00
1663 #define SHN_MIPS_TEXT 0xff01
1664 #define SHN_MIPS_DATA 0xff02
1665 #define SHN_MIPS_SCOMMON 0xff03
1666 #define SHN_MIPS_SUNDEFINED 0xff04
1670 #define SHT_MIPS_LIBLIST 0x70000000
1671 #define SHT_MIPS_MSYM 0x70000001
1672 #define SHT_MIPS_CONFLICT 0x70000002
1673 #define SHT_MIPS_GPTAB 0x70000003
1674 #define SHT_MIPS_UCODE 0x70000004
1675 #define SHT_MIPS_DEBUG 0x70000005
1676 #define SHT_MIPS_REGINFO 0x70000006
1677 #define SHT_MIPS_PACKAGE 0x70000007
1678 #define SHT_MIPS_PACKSYM 0x70000008
1679 #define SHT_MIPS_RELD 0x70000009
1680 #define SHT_MIPS_IFACE 0x7000000b
1681 #define SHT_MIPS_CONTENT 0x7000000c
1682 #define SHT_MIPS_OPTIONS 0x7000000d
1683 #define SHT_MIPS_SHDR 0x70000010
1684 #define SHT_MIPS_FDESC 0x70000011
1685 #define SHT_MIPS_EXTSYM 0x70000012
1686 #define SHT_MIPS_DENSE 0x70000013
1687 #define SHT_MIPS_PDESC 0x70000014
1688 #define SHT_MIPS_LOCSYM 0x70000015
1689 #define SHT_MIPS_AUXSYM 0x70000016
1690 #define SHT_MIPS_OPTSYM 0x70000017
1691 #define SHT_MIPS_LOCSTR 0x70000018
1692 #define SHT_MIPS_LINE 0x70000019
1693 #define SHT_MIPS_RFDESC 0x7000001a
1694 #define SHT_MIPS_DELTASYM 0x7000001b
1695 #define SHT_MIPS_DELTAINST 0x7000001c
1696 #define SHT_MIPS_DELTACLASS 0x7000001d
1697 #define SHT_MIPS_DWARF 0x7000001e
1698 #define SHT_MIPS_DELTADECL 0x7000001f
1699 #define SHT_MIPS_SYMBOL_LIB 0x70000020
1700 #define SHT_MIPS_EVENTS 0x70000021
1701 #define SHT_MIPS_TRANSLATE 0x70000022
1702 #define SHT_MIPS_PIXIE 0x70000023
1703 #define SHT_MIPS_XLATE 0x70000024
1704 #define SHT_MIPS_XLATE_DEBUG 0x70000025
1705 #define SHT_MIPS_WHIRL 0x70000026
1706 #define SHT_MIPS_EH_REGION 0x70000027
1707 #define SHT_MIPS_XLATE_OLD 0x70000028
1708 #define SHT_MIPS_PDR_EXCEPTION 0x70000029
1709 #define SHT_MIPS_XHASH 0x7000002b
1713 #define SHF_MIPS_GPREL 0x10000000
1714 #define SHF_MIPS_MERGE 0x20000000
1715 #define SHF_MIPS_ADDR 0x40000000
1716 #define SHF_MIPS_STRINGS 0x80000000
1717 #define SHF_MIPS_NOSTRIP 0x08000000
1718 #define SHF_MIPS_LOCAL 0x04000000
1719 #define SHF_MIPS_NAMES 0x02000000
1720 #define SHF_MIPS_NODUPE 0x01000000
1725 #define STO_MIPS_DEFAULT 0x0
1726 #define STO_MIPS_INTERNAL 0x1
1727 #define STO_MIPS_HIDDEN 0x2
1728 #define STO_MIPS_PROTECTED 0x3
1729 #define STO_MIPS_PLT 0x8
1730 #define STO_MIPS_SC_ALIGN_UNUSED 0xff
1733 #define STB_MIPS_SPLIT_COMMON 13
1774 #define ODK_REGINFO 1
1775 #define ODK_EXCEPTIONS 2
1777 #define ODK_HWPATCH 4
1785 #define OEX_FPU_MIN 0x1f
1786 #define OEX_FPU_MAX 0x1f00
1787 #define OEX_PAGE0 0x10000
1788 #define OEX_SMM 0x20000
1789 #define OEX_FPDBUG 0x40000
1790 #define OEX_PRECISEFP OEX_FPDBUG
1791 #define OEX_DISMISS 0x80000
1793 #define OEX_FPU_INVAL 0x10
1794 #define OEX_FPU_DIV0 0x08
1795 #define OEX_FPU_OFLO 0x04
1796 #define OEX_FPU_UFLO 0x02
1797 #define OEX_FPU_INEX 0x01
1801 #define OHW_R4KEOP 0x1
1802 #define OHW_R8KPFETCH 0x2
1803 #define OHW_R5KEOP 0x4
1804 #define OHW_R5KCVTL 0x8
1806 #define OPAD_PREFIX 0x1
1807 #define OPAD_POSTFIX 0x2
1808 #define OPAD_SYMBOL 0x4
1820 #define OHWA0_R4KEOP_CHECKED 0x00000001
1821 #define OHWA1_R4KEOP_CLEAN 0x00000002
1825 #define RZ_MIPS_NONE 0
1826 #define RZ_MIPS_16 1
1827 #define RZ_MIPS_32 2
1828 #define RZ_MIPS_REL32 3
1829 #define RZ_MIPS_26 4
1830 #define RZ_MIPS_HI16 5
1831 #define RZ_MIPS_LO16 6
1832 #define RZ_MIPS_GPREL16 7
1833 #define RZ_MIPS_LITERAL 8
1834 #define RZ_MIPS_GOT16 9
1835 #define RZ_MIPS_PC16 10
1836 #define RZ_MIPS_CALL16 11
1837 #define RZ_MIPS_GPREL32 12
1839 #define RZ_MIPS_SHIFT5 16
1840 #define RZ_MIPS_SHIFT6 17
1841 #define RZ_MIPS_64 18
1842 #define RZ_MIPS_GOT_DISP 19
1843 #define RZ_MIPS_GOT_PAGE 20
1844 #define RZ_MIPS_GOT_OFST 21
1845 #define RZ_MIPS_GOT_HI16 22
1846 #define RZ_MIPS_GOT_LO16 23
1847 #define RZ_MIPS_SUB 24
1848 #define RZ_MIPS_INSERT_A 25
1849 #define RZ_MIPS_INSERT_B 26
1850 #define RZ_MIPS_DELETE 27
1851 #define RZ_MIPS_HIGHER 28
1852 #define RZ_MIPS_HIGHEST 29
1853 #define RZ_MIPS_CALL_HI16 30
1854 #define RZ_MIPS_CALL_LO16 31
1855 #define RZ_MIPS_SCN_DISP 32
1856 #define RZ_MIPS_REL16 33
1857 #define RZ_MIPS_ADD_IMMEDIATE 34
1858 #define RZ_MIPS_PJUMP 35
1859 #define RZ_MIPS_RELGOT 36
1860 #define RZ_MIPS_JALR 37
1861 #define RZ_MIPS_TLS_DTPMOD32 38
1862 #define RZ_MIPS_TLS_DTPREL32 39
1863 #define RZ_MIPS_TLS_DTPMOD64 40
1864 #define RZ_MIPS_TLS_DTPREL64 41
1865 #define RZ_MIPS_TLS_GD 42
1866 #define RZ_MIPS_TLS_LDM 43
1867 #define RZ_MIPS_TLS_DTPREL_HI16 44
1868 #define RZ_MIPS_TLS_DTPREL_LO16 45
1869 #define RZ_MIPS_TLS_GOTTPREL 46
1870 #define RZ_MIPS_TLS_TPREL32 47
1871 #define RZ_MIPS_TLS_TPREL64 48
1872 #define RZ_MIPS_TLS_TPREL_HI16 49
1873 #define RZ_MIPS_TLS_TPREL_LO16 50
1874 #define RZ_MIPS_GLOB_DAT 51
1875 #define RZ_MIPS_COPY 126
1876 #define RZ_MIPS_JUMP_SLOT 127
1878 #define RZ_MIPS_NUM 128
1882 #define PT_MIPS_REGINFO 0x70000000
1883 #define PT_MIPS_RTPROC 0x70000001
1884 #define PT_MIPS_OPTIONS 0x70000002
1885 #define PT_MIPS_ABIFLAGS 0x70000003
1889 #define PF_MIPS_LOCAL 0x10000000
1893 #define DT_MIPS_RLD_VERSION 0x70000001
1894 #define DT_MIPS_TIME_STAMP 0x70000002
1895 #define DT_MIPS_ICHECKSUM 0x70000003
1896 #define DT_MIPS_IVERSION 0x70000004
1897 #define DT_MIPS_FLAGS 0x70000005
1898 #define DT_MIPS_BASE_ADDRESS 0x70000006
1899 #define DT_MIPS_MSYM 0x70000007
1900 #define DT_MIPS_CONFLICT 0x70000008
1901 #define DT_MIPS_LIBLIST 0x70000009
1902 #define DT_MIPS_LOCAL_GOTNO 0x7000000a
1903 #define DT_MIPS_CONFLICTNO 0x7000000b
1904 #define DT_MIPS_LIBLISTNO 0x70000010
1905 #define DT_MIPS_SYMTABNO 0x70000011
1906 #define DT_MIPS_UNREFEXTNO 0x70000012
1907 #define DT_MIPS_GOTSYM 0x70000013
1908 #define DT_MIPS_HIPAGENO 0x70000014
1909 #define DT_MIPS_RLD_MAP 0x70000016
1910 #define DT_MIPS_DELTA_CLASS 0x70000017
1911 #define DT_MIPS_DELTA_CLASS_NO 0x70000018
1913 #define DT_MIPS_DELTA_INSTANCE 0x70000019
1914 #define DT_MIPS_DELTA_INSTANCE_NO 0x7000001a
1916 #define DT_MIPS_DELTA_RELOC 0x7000001b
1917 #define DT_MIPS_DELTA_RELOC_NO 0x7000001c
1919 #define DT_MIPS_DELTA_SYM 0x7000001d
1921 #define DT_MIPS_DELTA_SYM_NO 0x7000001e
1923 #define DT_MIPS_DELTA_CLASSSYM 0x70000020
1925 #define DT_MIPS_DELTA_CLASSSYM_NO 0x70000021
1927 #define DT_MIPS_CXX_FLAGS 0x70000022
1928 #define DT_MIPS_PIXIE_INIT 0x70000023
1929 #define DT_MIPS_SYMBOL_LIB 0x70000024
1930 #define DT_MIPS_LOCALPAGE_GOTIDX 0x70000025
1931 #define DT_MIPS_LOCAL_GOTIDX 0x70000026
1932 #define DT_MIPS_HIDDEN_GOTIDX 0x70000027
1933 #define DT_MIPS_PROTECTED_GOTIDX 0x70000028
1934 #define DT_MIPS_OPTIONS 0x70000029
1935 #define DT_MIPS_INTERFACE 0x7000002a
1936 #define DT_MIPS_DYNSTR_ALIGN 0x7000002b
1937 #define DT_MIPS_INTERFACE_SIZE 0x7000002c
1938 #define DT_MIPS_RLD_TEXT_RESOLVE_ADDR 0x7000002d
1940 #define DT_MIPS_PERF_SUFFIX 0x7000002e
1942 #define DT_MIPS_COMPACT_SIZE 0x7000002f
1943 #define DT_MIPS_GP_VALUE 0x70000030
1944 #define DT_MIPS_AUX_DYNAMIC 0x70000031
1946 #define DT_MIPS_PLTGOT 0x70000032
1950 #define DT_MIPS_RWPLT 0x70000034
1954 #define DT_MIPS_RLD_MAP_REL 0x70000035
1956 #define DT_MIPS_XHASH 0x70000036
1957 #define DT_MIPS_NUM 0x37
1962 #define RHF_QUICKSTART (1 << 0)
1963 #define RHF_NOTPOT (1 << 1)
1964 #define RHF_NO_LIBRARY_REPLACEMENT (1 << 2)
1965 #define RHF_NO_MOVE (1 << 3)
1966 #define RHF_SGI_ONLY (1 << 4)
1967 #define RHF_GUARANTEE_INIT (1 << 5)
1968 #define RHF_DELTA_C_PLUS_PLUS (1 << 6)
1969 #define RHF_GUARANTEE_START_INIT (1 << 7)
1970 #define RHF_PIXIE (1 << 8)
1971 #define RHF_DEFAULT_DELAY_LOAD (1 << 9)
1972 #define RHF_REQUICKSTART (1 << 10)
1973 #define RHF_REQUICKSTARTED (1 << 11)
1974 #define RHF_CORD (1 << 12)
1975 #define RHF_NO_UNRES_UNDEF (1 << 13)
1976 #define RHF_RLD_ORDER_SAFE (1 << 14)
2001 #define LL_EXACT_MATCH (1 << 0)
2002 #define LL_IGNORE_INT_VER (1 << 1)
2003 #define LL_REQUIRE_MINOR (1 << 2)
2004 #define LL_EXPORTS (1 << 3)
2005 #define LL_DELAY_LOAD (1 << 4)
2006 #define LL_DELTA (1 << 5)
2017 unsigned char isa_level;
2019 unsigned char isa_rev;
2021 unsigned char gpr_size;
2023 unsigned char cpr1_size;
2025 unsigned char cpr2_size;
2027 unsigned char fp_abi;
2039 #define MIPS_AFL_REG_NONE 0x00
2040 #define MIPS_AFL_REG_32 0x01
2041 #define MIPS_AFL_REG_64 0x02
2042 #define MIPS_AFL_REG_128 0x03
2046 #define MIPS_AFL_ASE_DSP 0x00000001
2047 #define MIPS_AFL_ASE_DSPR2 0x00000002
2048 #define MIPS_AFL_ASE_EVA 0x00000004
2049 #define MIPS_AFL_ASE_MCU 0x00000008
2050 #define MIPS_AFL_ASE_MDMX 0x00000010
2051 #define MIPS_AFL_ASE_MIPS3D 0x00000020
2052 #define MIPS_AFL_ASE_MT 0x00000040
2053 #define MIPS_AFL_ASE_SMARTMIPS 0x00000080
2054 #define MIPS_AFL_ASE_VIRT 0x00000100
2055 #define MIPS_AFL_ASE_MSA 0x00000200
2056 #define MIPS_AFL_ASE_MIPS16 0x00000400
2057 #define MIPS_AFL_ASE_MICROMIPS 0x00000800
2058 #define MIPS_AFL_ASE_XPA 0x00001000
2059 #define MIPS_AFL_ASE_MASK 0x00001fff
2063 #define MIPS_AFL_EXT_XLR 1
2064 #define MIPS_AFL_EXT_OCTEON2 2
2065 #define MIPS_AFL_EXT_OCTEONP 3
2066 #define MIPS_AFL_EXT_LOONGSON_3A 4
2067 #define MIPS_AFL_EXT_OCTEON 5
2068 #define MIPS_AFL_EXT_5900 6
2069 #define MIPS_AFL_EXT_4650 7
2070 #define MIPS_AFL_EXT_4010 8
2071 #define MIPS_AFL_EXT_4100 9
2072 #define MIPS_AFL_EXT_3900 10
2073 #define MIPS_AFL_EXT_10000 11
2074 #define MIPS_AFL_EXT_SB1 12
2075 #define MIPS_AFL_EXT_4111 13
2076 #define MIPS_AFL_EXT_4120 14
2077 #define MIPS_AFL_EXT_5400 15
2078 #define MIPS_AFL_EXT_5500 16
2079 #define MIPS_AFL_EXT_LOONGSON_2E 17
2080 #define MIPS_AFL_EXT_LOONGSON_2F 18
2083 #define MIPS_AFL_FLAGS1_ODDSPREG 1
2111 #define EF_PARISC_TRAPNIL 0x00010000
2112 #define EF_PARISC_EXT 0x00020000
2113 #define EF_PARISC_LSB 0x00040000
2114 #define EF_PARISC_WIDE 0x00080000
2115 #define EF_PARISC_NO_KABP 0x00100000
2117 #define EF_PARISC_LAZYSWAP 0x00400000
2118 #define EF_PARISC_ARCH 0x0000ffff
2122 #define EFA_PARISC_1_0 0x020b
2123 #define EFA_PARISC_1_1 0x0210
2124 #define EFA_PARISC_2_0 0x0214
2128 #define SHN_PARISC_ANSI_COMMON 0xff00
2130 #define SHN_PARISC_HUGE_COMMON 0xff01
2134 #define SHT_PARISC_EXT 0x70000000
2135 #define SHT_PARISC_UNWIND 0x70000001
2136 #define SHT_PARISC_DOC 0x70000002
2140 #define SHF_PARISC_SHORT 0x20000000
2141 #define SHF_PARISC_HUGE 0x40000000
2142 #define SHF_PARISC_SBP 0x80000000
2146 #define STT_PARISC_MILLICODE 13
2148 #define STT_HP_OPAQUE (STT_LOOS + 0x1)
2149 #define STT_HP_STUB (STT_LOOS + 0x2)
2153 #define RZ_PARISC_NONE 0
2154 #define RZ_PARISC_DIR32 1
2155 #define RZ_PARISC_DIR21L 2
2156 #define RZ_PARISC_DIR17R 3
2157 #define RZ_PARISC_DIR17F 4
2158 #define RZ_PARISC_DIR14R 6
2159 #define RZ_PARISC_PCREL32 9
2160 #define RZ_PARISC_PCREL21L 10
2161 #define RZ_PARISC_PCREL17R 11
2162 #define RZ_PARISC_PCREL17F 12
2163 #define RZ_PARISC_PCREL14R 14
2164 #define RZ_PARISC_DPREL21L 18
2165 #define RZ_PARISC_DPREL14R 22
2166 #define RZ_PARISC_GPREL21L 26
2167 #define RZ_PARISC_GPREL14R 30
2168 #define RZ_PARISC_LTOFF21L 34
2169 #define RZ_PARISC_LTOFF14R 38
2170 #define RZ_PARISC_SECREL32 41
2171 #define RZ_PARISC_SEGBASE 48
2172 #define RZ_PARISC_SEGREL32 49
2173 #define RZ_PARISC_PLTOFF21L 50
2174 #define RZ_PARISC_PLTOFF14R 54
2175 #define RZ_PARISC_LTOFF_FPTR32 57
2176 #define RZ_PARISC_LTOFF_FPTR21L 58
2177 #define RZ_PARISC_LTOFF_FPTR14R 62
2178 #define RZ_PARISC_FPTR64 64
2179 #define RZ_PARISC_PLABEL32 65
2180 #define RZ_PARISC_PLABEL21L 66
2181 #define RZ_PARISC_PLABEL14R 70
2182 #define RZ_PARISC_PCREL64 72
2183 #define RZ_PARISC_PCREL22F 74
2184 #define RZ_PARISC_PCREL14WR 75
2185 #define RZ_PARISC_PCREL14DR 76
2186 #define RZ_PARISC_PCREL16F 77
2187 #define RZ_PARISC_PCREL16WF 78
2188 #define RZ_PARISC_PCREL16DF 79
2189 #define RZ_PARISC_DIR64 80
2190 #define RZ_PARISC_DIR14WR 83
2191 #define RZ_PARISC_DIR14DR 84
2192 #define RZ_PARISC_DIR16F 85
2193 #define RZ_PARISC_DIR16WF 86
2194 #define RZ_PARISC_DIR16DF 87
2195 #define RZ_PARISC_GPREL64 88
2196 #define RZ_PARISC_GPREL14WR 91
2197 #define RZ_PARISC_GPREL14DR 92
2198 #define RZ_PARISC_GPREL16F 93
2199 #define RZ_PARISC_GPREL16WF 94
2200 #define RZ_PARISC_GPREL16DF 95
2201 #define RZ_PARISC_LTOFF64 96
2202 #define RZ_PARISC_LTOFF14WR 99
2203 #define RZ_PARISC_LTOFF14DR 100
2204 #define RZ_PARISC_LTOFF16F 101
2205 #define RZ_PARISC_LTOFF16WF 102
2206 #define RZ_PARISC_LTOFF16DF 103
2207 #define RZ_PARISC_SECREL64 104
2208 #define RZ_PARISC_SEGREL64 112
2209 #define RZ_PARISC_PLTOFF14WR 115
2210 #define RZ_PARISC_PLTOFF14DR 116
2211 #define RZ_PARISC_PLTOFF16F 117
2212 #define RZ_PARISC_PLTOFF16WF 118
2213 #define RZ_PARISC_PLTOFF16DF 119
2214 #define RZ_PARISC_LTOFF_FPTR64 120
2215 #define RZ_PARISC_LTOFF_FPTR14WR 123
2216 #define RZ_PARISC_LTOFF_FPTR14DR 124
2217 #define RZ_PARISC_LTOFF_FPTR16F 125
2218 #define RZ_PARISC_LTOFF_FPTR16WF 126
2219 #define RZ_PARISC_LTOFF_FPTR16DF 127
2220 #define RZ_PARISC_LORESERVE 128
2221 #define RZ_PARISC_COPY 128
2222 #define RZ_PARISC_IPLT 129
2223 #define RZ_PARISC_EPLT 130
2224 #define RZ_PARISC_TPREL32 153
2225 #define RZ_PARISC_TPREL21L 154
2226 #define RZ_PARISC_TPREL14R 158
2227 #define RZ_PARISC_LTOFF_TP21L 162
2228 #define RZ_PARISC_LTOFF_TP14R 166
2229 #define RZ_PARISC_LTOFF_TP14F 167
2230 #define RZ_PARISC_TPREL64 216
2231 #define RZ_PARISC_TPREL14WR 219
2232 #define RZ_PARISC_TPREL14DR 220
2233 #define RZ_PARISC_TPREL16F 221
2234 #define RZ_PARISC_TPREL16WF 222
2235 #define RZ_PARISC_TPREL16DF 223
2236 #define RZ_PARISC_LTOFF_TP64 224
2237 #define RZ_PARISC_LTOFF_TP14WR 227
2238 #define RZ_PARISC_LTOFF_TP14DR 228
2239 #define RZ_PARISC_LTOFF_TP16F 229
2240 #define RZ_PARISC_LTOFF_TP16WF 230
2241 #define RZ_PARISC_LTOFF_TP16DF 231
2242 #define RZ_PARISC_GNU_VTENTRY 232
2243 #define RZ_PARISC_GNU_VTINHERIT 233
2244 #define RZ_PARISC_TLS_GD21L 234
2245 #define RZ_PARISC_TLS_GD14R 235
2246 #define RZ_PARISC_TLS_GDCALL 236
2247 #define RZ_PARISC_TLS_LDM21L 237
2248 #define RZ_PARISC_TLS_LDM14R 238
2249 #define RZ_PARISC_TLS_LDMCALL 239
2250 #define RZ_PARISC_TLS_LDO21L 240
2251 #define RZ_PARISC_TLS_LDO14R 241
2252 #define RZ_PARISC_TLS_DTPMOD32 242
2253 #define RZ_PARISC_TLS_DTPMOD64 243
2254 #define RZ_PARISC_TLS_DTPOFF32 244
2255 #define RZ_PARISC_TLS_DTPOFF64 245
2256 #define RZ_PARISC_TLS_LE21L RZ_PARISC_TPREL21L
2257 #define RZ_PARISC_TLS_LE14R RZ_PARISC_TPREL14R
2258 #define RZ_PARISC_TLS_IE21L RZ_PARISC_LTOFF_TP21L
2259 #define RZ_PARISC_TLS_IE14R RZ_PARISC_LTOFF_TP14R
2260 #define RZ_PARISC_TLS_TPREL32 RZ_PARISC_TPREL32
2261 #define RZ_PARISC_TLS_TPREL64 RZ_PARISC_TPREL64
2262 #define RZ_PARISC_HIRESERVE 255
2266 #define PT_HP_TLS (PT_LOOS + 0x0)
2267 #define PT_HP_CORE_NONE (PT_LOOS + 0x1)
2268 #define PT_HP_CORE_VERSION (PT_LOOS + 0x2)
2269 #define PT_HP_CORE_KERNEL (PT_LOOS + 0x3)
2270 #define PT_HP_CORE_COMM (PT_LOOS + 0x4)
2271 #define PT_HP_CORE_PROC (PT_LOOS + 0x5)
2272 #define PT_HP_CORE_LOADABLE (PT_LOOS + 0x6)
2273 #define PT_HP_CORE_STACK (PT_LOOS + 0x7)
2274 #define PT_HP_CORE_SHM (PT_LOOS + 0x8)
2275 #define PT_HP_CORE_MMF (PT_LOOS + 0x9)
2276 #define PT_HP_PARALLEL (PT_LOOS + 0x10)
2277 #define PT_HP_FASTBIND (PT_LOOS + 0x11)
2278 #define PT_HP_OPT_ANNOT (PT_LOOS + 0x12)
2279 #define PT_HP_HSL_ANNOT (PT_LOOS + 0x13)
2280 #define PT_HP_STACK (PT_LOOS + 0x14)
2282 #define PT_PARISC_ARCHEXT 0x70000000
2283 #define PT_PARISC_UNWIND 0x70000001
2287 #define PF_PARISC_SBP 0x08000000
2289 #define PF_HP_PAGE_SIZE 0x00100000
2290 #define PF_HP_FAR_SHARED 0x00200000
2291 #define PF_HP_NEAR_SHARED 0x00400000
2292 #define PF_HP_CODE 0x01000000
2293 #define PF_HP_MODIFY 0x02000000
2294 #define PF_HP_LAZYSWAP 0x04000000
2295 #define PF_HP_SBP 0x08000000
2301 #define EF_ALPHA_32BIT 1
2302 #define EF_ALPHA_CANRELAX 2
2307 #define SHT_ALPHA_DEBUG 0x70000001
2308 #define SHT_ALPHA_REGINFO 0x70000002
2312 #define SHF_ALPHA_GPREL 0x10000000
2315 #define STO_ALPHA_NOPV 0x80
2316 #define STO_ALPHA_STD_GPLOAD 0x88
2320 #define RZ_ALPHA_NONE 0
2321 #define RZ_ALPHA_REFLONG 1
2322 #define RZ_ALPHA_REFQUAD 2
2323 #define RZ_ALPHA_GPREL32 3
2324 #define RZ_ALPHA_LITERAL 4
2325 #define RZ_ALPHA_LITUSE 5
2326 #define RZ_ALPHA_GPDISP 6
2327 #define RZ_ALPHA_BRADDR 7
2328 #define RZ_ALPHA_HINT 8
2329 #define RZ_ALPHA_SREL16 9
2330 #define RZ_ALPHA_SREL32 10
2331 #define RZ_ALPHA_SREL64 11
2332 #define RZ_ALPHA_GPRELHIGH 17
2333 #define RZ_ALPHA_GPRELLOW 18
2334 #define RZ_ALPHA_GPREL16 19
2335 #define RZ_ALPHA_COPY 24
2336 #define RZ_ALPHA_GLOB_DAT 25
2337 #define RZ_ALPHA_JMP_SLOT 26
2338 #define RZ_ALPHA_RELATIVE 27
2339 #define RZ_ALPHA_TLS_GD_HI 28
2340 #define RZ_ALPHA_TLSGD 29
2341 #define RZ_ALPHA_TLS_LDM 30
2342 #define RZ_ALPHA_DTPMOD64 31
2343 #define RZ_ALPHA_GOTDTPREL 32
2344 #define RZ_ALPHA_DTPREL64 33
2345 #define RZ_ALPHA_DTPRELHI 34
2346 #define RZ_ALPHA_DTPRELLO 35
2347 #define RZ_ALPHA_DTPREL16 36
2348 #define RZ_ALPHA_GOTTPREL 37
2349 #define RZ_ALPHA_TPREL64 38
2350 #define RZ_ALPHA_TPRELHI 39
2351 #define RZ_ALPHA_TPRELLO 40
2352 #define RZ_ALPHA_TPREL16 41
2354 #define RZ_ALPHA_NUM 46
2357 #define LITUSE_ALPHA_ADDR 0
2358 #define LITUSE_ALPHA_BASE 1
2359 #define LITUSE_ALPHA_BYTOFF 2
2360 #define LITUSE_ALPHA_JSR 3
2361 #define LITUSE_ALPHA_TLS_GD 4
2362 #define LITUSE_ALPHA_TLS_LDM 5
2365 #define DT_ALPHA_PLTRO (DT_LOPROC + 0)
2366 #define DT_ALPHA_NUM 1
2371 #define EF_PPC_EMB 0x80000000
2374 #define EF_PPC_RELOCATABLE 0x00010000
2375 #define EF_PPC_RELOCATABLE_LIB 0x00008000
2379 #define RZ_PPC_NONE 0
2380 #define RZ_PPC_ADDR32 1
2381 #define RZ_PPC_ADDR24 2
2382 #define RZ_PPC_ADDR16 3
2383 #define RZ_PPC_ADDR16_LO 4
2384 #define RZ_PPC_ADDR16_HI 5
2385 #define RZ_PPC_ADDR16_HA 6
2386 #define RZ_PPC_ADDR14 7
2387 #define RZ_PPC_ADDR14_BRTAKEN 8
2388 #define RZ_PPC_ADDR14_BRNTAKEN 9
2389 #define RZ_PPC_REL24 10
2390 #define RZ_PPC_REL14 11
2391 #define RZ_PPC_REL14_BRTAKEN 12
2392 #define RZ_PPC_REL14_BRNTAKEN 13
2393 #define RZ_PPC_GOT16 14
2394 #define RZ_PPC_GOT16_LO 15
2395 #define RZ_PPC_GOT16_HI 16
2396 #define RZ_PPC_GOT16_HA 17
2397 #define RZ_PPC_PLTREL24 18
2398 #define RZ_PPC_COPY 19
2399 #define RZ_PPC_GLOB_DAT 20
2400 #define RZ_PPC_JMP_SLOT 21
2401 #define RZ_PPC_RELATIVE 22
2402 #define RZ_PPC_LOCAL24PC 23
2403 #define RZ_PPC_UADDR32 24
2404 #define RZ_PPC_UADDR16 25
2405 #define RZ_PPC_REL32 26
2406 #define RZ_PPC_PLT32 27
2407 #define RZ_PPC_PLTREL32 28
2408 #define RZ_PPC_PLT16_LO 29
2409 #define RZ_PPC_PLT16_HI 30
2410 #define RZ_PPC_PLT16_HA 31
2411 #define RZ_PPC_SDAREL16 32
2412 #define RZ_PPC_SECTOFF 33
2413 #define RZ_PPC_SECTOFF_LO 34
2414 #define RZ_PPC_SECTOFF_HI 35
2415 #define RZ_PPC_SECTOFF_HA 36
2418 #define RZ_PPC_TLS 67
2419 #define RZ_PPC_DTPMOD32 68
2420 #define RZ_PPC_TPREL16 69
2421 #define RZ_PPC_TPREL16_LO 70
2422 #define RZ_PPC_TPREL16_HI 71
2423 #define RZ_PPC_TPREL16_HA 72
2424 #define RZ_PPC_TPREL32 73
2425 #define RZ_PPC_DTPREL16 74
2426 #define RZ_PPC_DTPREL16_LO 75
2427 #define RZ_PPC_DTPREL16_HI 76
2428 #define RZ_PPC_DTPREL16_HA 77
2429 #define RZ_PPC_DTPREL32 78
2430 #define RZ_PPC_GOT_TLSGD16 79
2431 #define RZ_PPC_GOT_TLSGD16_LO 80
2432 #define RZ_PPC_GOT_TLSGD16_HI 81
2433 #define RZ_PPC_GOT_TLSGD16_HA 82
2434 #define RZ_PPC_GOT_TLSLD16 83
2435 #define RZ_PPC_GOT_TLSLD16_LO 84
2436 #define RZ_PPC_GOT_TLSLD16_HI 85
2437 #define RZ_PPC_GOT_TLSLD16_HA 86
2438 #define RZ_PPC_GOT_TPREL16 87
2439 #define RZ_PPC_GOT_TPREL16_LO 88
2440 #define RZ_PPC_GOT_TPREL16_HI 89
2441 #define RZ_PPC_GOT_TPREL16_HA 90
2442 #define RZ_PPC_GOT_DTPREL16 91
2443 #define RZ_PPC_GOT_DTPREL16_LO 92
2444 #define RZ_PPC_GOT_DTPREL16_HI 93
2445 #define RZ_PPC_GOT_DTPREL16_HA 94
2446 #define RZ_PPC_TLSGD 95
2447 #define RZ_PPC_TLSLD 96
2451 #define RZ_PPC_EMB_NADDR32 101
2452 #define RZ_PPC_EMB_NADDR16 102
2453 #define RZ_PPC_EMB_NADDR16_LO 103
2454 #define RZ_PPC_EMB_NADDR16_HI 104
2455 #define RZ_PPC_EMB_NADDR16_HA 105
2456 #define RZ_PPC_EMB_SDAI16 106
2457 #define RZ_PPC_EMB_SDA2I16 107
2458 #define RZ_PPC_EMB_SDA2REL 108
2459 #define RZ_PPC_EMB_SDA21 109
2460 #define RZ_PPC_EMB_MRKREF 110
2461 #define RZ_PPC_EMB_RELSEC16 111
2462 #define RZ_PPC_EMB_RELST_LO 112
2463 #define RZ_PPC_EMB_RELST_HI 113
2464 #define RZ_PPC_EMB_RELST_HA 114
2465 #define RZ_PPC_EMB_BIT_FLD 115
2466 #define RZ_PPC_EMB_RELSDA 116
2469 #define RZ_PPC_DIAB_SDA21_LO 180
2470 #define RZ_PPC_DIAB_SDA21_HI 181
2471 #define RZ_PPC_DIAB_SDA21_HA 182
2472 #define RZ_PPC_DIAB_RELSDA_LO 183
2473 #define RZ_PPC_DIAB_RELSDA_HI 184
2474 #define RZ_PPC_DIAB_RELSDA_HA 185
2477 #define RZ_PPC_IRELATIVE 248
2480 #define RZ_PPC_REL16 249
2481 #define RZ_PPC_REL16_LO 250
2482 #define RZ_PPC_REL16_HI 251
2483 #define RZ_PPC_REL16_HA 252
2487 #define RZ_PPC_TOC16 255
2490 #define DT_PPC_GOT (DT_LOPROC + 0)
2491 #define DT_PPC_OPT (DT_LOPROC + 1)
2492 #define DT_PPC_NUM 2
2495 #define PPC_OPT_TLS 1
2498 #define RZ_PPC64_NONE RZ_PPC_NONE
2499 #define RZ_PPC64_ADDR32 RZ_PPC_ADDR32
2500 #define RZ_PPC64_ADDR24 RZ_PPC_ADDR24
2501 #define RZ_PPC64_ADDR16 RZ_PPC_ADDR16
2502 #define RZ_PPC64_ADDR16_LO RZ_PPC_ADDR16_LO
2503 #define RZ_PPC64_ADDR16_HI RZ_PPC_ADDR16_HI
2504 #define RZ_PPC64_ADDR16_HA RZ_PPC_ADDR16_HA
2505 #define RZ_PPC64_ADDR14 RZ_PPC_ADDR14
2506 #define RZ_PPC64_ADDR14_BRTAKEN RZ_PPC_ADDR14_BRTAKEN
2507 #define RZ_PPC64_ADDR14_BRNTAKEN RZ_PPC_ADDR14_BRNTAKEN
2508 #define RZ_PPC64_REL24 RZ_PPC_REL24
2509 #define RZ_PPC64_REL14 RZ_PPC_REL14
2510 #define RZ_PPC64_REL14_BRTAKEN RZ_PPC_REL14_BRTAKEN
2511 #define RZ_PPC64_REL14_BRNTAKEN RZ_PPC_REL14_BRNTAKEN
2512 #define RZ_PPC64_GOT16 RZ_PPC_GOT16
2513 #define RZ_PPC64_GOT16_LO RZ_PPC_GOT16_LO
2514 #define RZ_PPC64_GOT16_HI RZ_PPC_GOT16_HI
2515 #define RZ_PPC64_GOT16_HA RZ_PPC_GOT16_HA
2517 #define RZ_PPC64_COPY RZ_PPC_COPY
2518 #define RZ_PPC64_GLOB_DAT RZ_PPC_GLOB_DAT
2519 #define RZ_PPC64_JMP_SLOT RZ_PPC_JMP_SLOT
2520 #define RZ_PPC64_RELATIVE RZ_PPC_RELATIVE
2522 #define RZ_PPC64_UADDR32 RZ_PPC_UADDR32
2523 #define RZ_PPC64_UADDR16 RZ_PPC_UADDR16
2524 #define RZ_PPC64_REL32 RZ_PPC_REL32
2525 #define RZ_PPC64_PLT32 RZ_PPC_PLT32
2526 #define RZ_PPC64_PLTREL32 RZ_PPC_PLTREL32
2527 #define RZ_PPC64_PLT16_LO RZ_PPC_PLT16_LO
2528 #define RZ_PPC64_PLT16_HI RZ_PPC_PLT16_HI
2529 #define RZ_PPC64_PLT16_HA RZ_PPC_PLT16_HA
2531 #define RZ_PPC64_SECTOFF RZ_PPC_SECTOFF
2532 #define RZ_PPC64_SECTOFF_LO RZ_PPC_SECTOFF_LO
2533 #define RZ_PPC64_SECTOFF_HI RZ_PPC_SECTOFF_HI
2534 #define RZ_PPC64_SECTOFF_HA RZ_PPC_SECTOFF_HA
2535 #define RZ_PPC64_ADDR30 37
2536 #define RZ_PPC64_ADDR64 38
2537 #define RZ_PPC64_ADDR16_HIGHER 39
2538 #define RZ_PPC64_ADDR16_HIGHERA 40
2539 #define RZ_PPC64_ADDR16_HIGHEST 41
2540 #define RZ_PPC64_ADDR16_HIGHESTA 42
2541 #define RZ_PPC64_UADDR64 43
2542 #define RZ_PPC64_REL64 44
2543 #define RZ_PPC64_PLT64 45
2544 #define RZ_PPC64_PLTREL64 46
2545 #define RZ_PPC64_TOC16 47
2546 #define RZ_PPC64_TOC16_LO 48
2547 #define RZ_PPC64_TOC16_HI 49
2548 #define RZ_PPC64_TOC16_HA 50
2549 #define RZ_PPC64_TOC 51
2550 #define RZ_PPC64_PLTGOT16 52
2551 #define RZ_PPC64_PLTGOT16_LO 53
2552 #define RZ_PPC64_PLTGOT16_HI 54
2553 #define RZ_PPC64_PLTGOT16_HA 55
2555 #define RZ_PPC64_ADDR16_DS 56
2556 #define RZ_PPC64_ADDR16_LO_DS 57
2557 #define RZ_PPC64_GOT16_DS 58
2558 #define RZ_PPC64_GOT16_LO_DS 59
2559 #define RZ_PPC64_PLT16_LO_DS 60
2560 #define RZ_PPC64_SECTOFF_DS 61
2561 #define RZ_PPC64_SECTOFF_LO_DS 62
2562 #define RZ_PPC64_TOC16_DS 63
2563 #define RZ_PPC64_TOC16_LO_DS 64
2564 #define RZ_PPC64_PLTGOT16_DS 65
2565 #define RZ_PPC64_PLTGOT16_LO_DS 66
2568 #define RZ_PPC64_TLS 67
2569 #define RZ_PPC64_DTPMOD64 68
2570 #define RZ_PPC64_TPREL16 69
2571 #define RZ_PPC64_TPREL16_LO 70
2572 #define RZ_PPC64_TPREL16_HI 71
2573 #define RZ_PPC64_TPREL16_HA 72
2574 #define RZ_PPC64_TPREL64 73
2575 #define RZ_PPC64_DTPREL16 74
2576 #define RZ_PPC64_DTPREL16_LO 75
2577 #define RZ_PPC64_DTPREL16_HI 76
2578 #define RZ_PPC64_DTPREL16_HA 77
2579 #define RZ_PPC64_DTPREL64 78
2580 #define RZ_PPC64_GOT_TLSGD16 79
2581 #define RZ_PPC64_GOT_TLSGD16_LO 80
2582 #define RZ_PPC64_GOT_TLSGD16_HI 81
2583 #define RZ_PPC64_GOT_TLSGD16_HA 82
2584 #define RZ_PPC64_GOT_TLSLD16 83
2585 #define RZ_PPC64_GOT_TLSLD16_LO 84
2586 #define RZ_PPC64_GOT_TLSLD16_HI 85
2587 #define RZ_PPC64_GOT_TLSLD16_HA 86
2588 #define RZ_PPC64_GOT_TPREL16_DS 87
2589 #define RZ_PPC64_GOT_TPREL16_LO_DS 88
2590 #define RZ_PPC64_GOT_TPREL16_HI 89
2591 #define RZ_PPC64_GOT_TPREL16_HA 90
2592 #define RZ_PPC64_GOT_DTPREL16_DS 91
2593 #define RZ_PPC64_GOT_DTPREL16_LO_DS 92
2594 #define RZ_PPC64_GOT_DTPREL16_HI 93
2595 #define RZ_PPC64_GOT_DTPREL16_HA 94
2596 #define RZ_PPC64_TPREL16_DS 95
2597 #define RZ_PPC64_TPREL16_LO_DS 96
2598 #define RZ_PPC64_TPREL16_HIGHER 97
2599 #define RZ_PPC64_TPREL16_HIGHERA 98
2600 #define RZ_PPC64_TPREL16_HIGHEST 99
2601 #define RZ_PPC64_TPREL16_HIGHESTA 100
2602 #define RZ_PPC64_DTPREL16_DS 101
2603 #define RZ_PPC64_DTPREL16_LO_DS 102
2604 #define RZ_PPC64_DTPREL16_HIGHER 103
2605 #define RZ_PPC64_DTPREL16_HIGHERA 104
2606 #define RZ_PPC64_DTPREL16_HIGHEST 105
2607 #define RZ_PPC64_DTPREL16_HIGHESTA 106
2608 #define RZ_PPC64_TLSGD 107
2609 #define RZ_PPC64_TLSLD 108
2610 #define RZ_PPC64_TOCSAVE 109
2613 #define RZ_PPC64_ADDR16_HIGH 110
2614 #define RZ_PPC64_ADDR16_HIGHA 111
2615 #define RZ_PPC64_TPREL16_HIGH 112
2616 #define RZ_PPC64_TPREL16_HIGHA 113
2617 #define RZ_PPC64_DTPREL16_HIGH 114
2618 #define RZ_PPC64_DTPREL16_HIGHA 115
2621 #define RZ_PPC64_JMP_IREL 247
2622 #define RZ_PPC64_IRELATIVE 248
2623 #define RZ_PPC64_REL16 249
2624 #define RZ_PPC64_REL16_LO 250
2625 #define RZ_PPC64_REL16_HI 251
2626 #define RZ_PPC64_REL16_HA 252
2632 #define EF_PPC64_ABI 3
2635 #define DT_PPC64_GLINK (DT_LOPROC + 0)
2636 #define DT_PPC64_OPD (DT_LOPROC + 1)
2637 #define DT_PPC64_OPDSZ (DT_LOPROC + 2)
2638 #define DT_PPC64_OPT (DT_LOPROC + 3)
2639 #define DT_PPC64_NUM 4
2642 #define PPC64_OPT_TLS 1
2643 #define PPC64_OPT_MULTI_TOC 2
2644 #define PPC64_OPT_LOCALENTRY 4
2647 #define STO_PPC64_LOCAL_BIT 5
2648 #define STO_PPC64_LOCAL_MASK (7 << STO_PPC64_LOCAL_BIT)
2649 #define PPC64_LOCAL_ENTRY_OFFSET(other) \
2650 (((1 << (((other)&STO_PPC64_LOCAL_MASK) >> STO_PPC64_LOCAL_BIT)) >> 2) << 2)
2655 #define EF_ARM_RELEXEC 0x01
2656 #define EF_ARM_HASENTRY 0x02
2657 #define EF_ARM_INTERWORK 0x04
2658 #define EF_ARM_APCS_26 0x08
2659 #define EF_ARM_APCS_FLOAT 0x10
2660 #define EF_ARM_PIC 0x20
2661 #define EF_ARM_ALIGN8 0x40
2662 #define EF_ARM_NEW_ABI 0x80
2663 #define EF_ARM_OLD_ABI 0x100
2664 #define EF_ARM_SOFT_FLOAT 0x200
2665 #define EF_ARM_VFP_FLOAT 0x400
2666 #define EF_ARM_MAVERICK_FLOAT 0x800
2668 #define EF_ARM_ABI_FLOAT_SOFT 0x200
2669 #define EF_ARM_ABI_FLOAT_HARD 0x400
2673 #define EF_ARM_SYMSARESORTED 0x04
2674 #define EF_ARM_DYNSYMSUSESEGIDX 0x08
2675 #define EF_ARM_MAPSYMSFIRST 0x10
2676 #define EF_ARM_EABIMASK 0XFF000000
2679 #define EF_ARM_BE8 0x00800000
2680 #define EF_ARM_LE8 0x00400000
2682 #define EF_ARM_EABI_VERSION(flags) ((flags)&EF_ARM_EABIMASK)
2683 #define EF_ARM_EABI_UNKNOWN 0x00000000
2684 #define EF_ARM_EABI_VER1 0x01000000
2685 #define EF_ARM_EABI_VER2 0x02000000
2686 #define EF_ARM_EABI_VER3 0x03000000
2687 #define EF_ARM_EABI_VER4 0x04000000
2688 #define EF_ARM_EABI_VER5 0x05000000
2691 #define STT_ARM_TFUNC STT_LOPROC
2692 #define STT_ARM_16BIT STT_HIPROC
2695 #define SHF_ARM_ENTRYSECT 0x10000000
2696 #define SHF_ARM_COMDEF 0x80000000
2700 #define PF_ARM_SB 0x10000000
2702 #define PF_ARM_PI 0x20000000
2703 #define PF_ARM_ABS 0x40000000
2706 #define PT_ARM_EXIDX (PT_LOPROC + 1)
2709 #define SHT_ARM_EXIDX (SHT_LOPROC + 1)
2710 #define SHT_ARM_PREEMPTMAP (SHT_LOPROC + 2)
2711 #define SHT_ARM_ATTRIBUTES (SHT_LOPROC + 3)
2715 #define RZ_AARCH64_NONE 0
2718 #define RZ_AARCH64_P32_ABS32 1
2719 #define RZ_AARCH64_P32_COPY 180
2720 #define RZ_AARCH64_P32_GLOB_DAT 181
2721 #define RZ_AARCH64_P32_JUMP_SLOT 182
2722 #define RZ_AARCH64_P32_RELATIVE 183
2723 #define RZ_AARCH64_P32_TLS_DTPMOD 184
2724 #define RZ_AARCH64_P32_TLS_DTPREL 185
2725 #define RZ_AARCH64_P32_TLS_TPREL 186
2726 #define RZ_AARCH64_P32_TLSDESC 187
2727 #define RZ_AARCH64_P32_IRELATIVE 188
2730 #define RZ_AARCH64_ABS64 257
2731 #define RZ_AARCH64_ABS32 258
2732 #define RZ_AARCH64_ABS16 259
2733 #define RZ_AARCH64_PREL64 260
2734 #define RZ_AARCH64_PREL32 261
2735 #define RZ_AARCH64_PREL16 262
2736 #define RZ_AARCH64_MOVW_UABS_G0 263
2737 #define RZ_AARCH64_MOVW_UABS_G0_NC 264
2738 #define RZ_AARCH64_MOVW_UABS_G1 265
2739 #define RZ_AARCH64_MOVW_UABS_G1_NC 266
2740 #define RZ_AARCH64_MOVW_UABS_G2 267
2741 #define RZ_AARCH64_MOVW_UABS_G2_NC 268
2742 #define RZ_AARCH64_MOVW_UABS_G3 269
2743 #define RZ_AARCH64_MOVW_SABS_G0 270
2744 #define RZ_AARCH64_MOVW_SABS_G1 271
2745 #define RZ_AARCH64_MOVW_SABS_G2 272
2746 #define RZ_AARCH64_LD_PREL_LO19 273
2747 #define RZ_AARCH64_ADR_PREL_LO21 274
2748 #define RZ_AARCH64_ADR_PREL_PG_HI21 275
2749 #define RZ_AARCH64_ADR_PREL_PG_HI21_NC 276
2750 #define RZ_AARCH64_ADD_ABS_LO12_NC 277
2751 #define RZ_AARCH64_LDST8_ABS_LO12_NC 278
2752 #define RZ_AARCH64_TSTBR14 279
2753 #define RZ_AARCH64_CONDBR19 280
2754 #define RZ_AARCH64_JUMP26 282
2755 #define RZ_AARCH64_CALL26 283
2756 #define RZ_AARCH64_LDST16_ABS_LO12_NC 284
2757 #define RZ_AARCH64_LDST32_ABS_LO12_NC 285
2758 #define RZ_AARCH64_LDST64_ABS_LO12_NC 286
2759 #define RZ_AARCH64_MOVW_PREL_G0 287
2760 #define RZ_AARCH64_MOVW_PREL_G0_NC 288
2761 #define RZ_AARCH64_MOVW_PREL_G1 289
2762 #define RZ_AARCH64_MOVW_PREL_G1_NC 290
2763 #define RZ_AARCH64_MOVW_PREL_G2 291
2764 #define RZ_AARCH64_MOVW_PREL_G2_NC 292
2765 #define RZ_AARCH64_MOVW_PREL_G3 293
2766 #define RZ_AARCH64_LDST128_ABS_LO12_NC 299
2767 #define RZ_AARCH64_MOVW_GOTOFF_G0 300
2768 #define RZ_AARCH64_MOVW_GOTOFF_G0_NC 301
2769 #define RZ_AARCH64_MOVW_GOTOFF_G1 302
2770 #define RZ_AARCH64_MOVW_GOTOFF_G1_NC 303
2771 #define RZ_AARCH64_MOVW_GOTOFF_G2 304
2772 #define RZ_AARCH64_MOVW_GOTOFF_G2_NC 305
2773 #define RZ_AARCH64_MOVW_GOTOFF_G3 306
2774 #define RZ_AARCH64_GOTREL64 307
2775 #define RZ_AARCH64_GOTREL32 308
2776 #define RZ_AARCH64_GOT_LD_PREL19 309
2777 #define RZ_AARCH64_LD64_GOTOFF_LO15 310
2778 #define RZ_AARCH64_ADR_GOT_PAGE 311
2779 #define RZ_AARCH64_LD64_GOT_LO12_NC 312
2780 #define RZ_AARCH64_LD64_GOTPAGE_LO15 313
2781 #define RZ_AARCH64_TLSGD_ADR_PREL21 512
2782 #define RZ_AARCH64_TLSGD_ADR_PAGE21 513
2783 #define RZ_AARCH64_TLSGD_ADD_LO12_NC 514
2784 #define RZ_AARCH64_TLSGD_MOVW_G1 515
2785 #define RZ_AARCH64_TLSGD_MOVW_G0_NC 516
2786 #define RZ_AARCH64_TLSLD_ADR_PREL21 517
2787 #define RZ_AARCH64_TLSLD_ADR_PAGE21 518
2788 #define RZ_AARCH64_TLSLD_ADD_LO12_NC 519
2789 #define RZ_AARCH64_TLSLD_MOVW_G1 520
2790 #define RZ_AARCH64_TLSLD_MOVW_G0_NC 521
2791 #define RZ_AARCH64_TLSLD_LD_PREL19 522
2792 #define RZ_AARCH64_TLSLD_MOVW_DTPREL_G2 523
2793 #define RZ_AARCH64_TLSLD_MOVW_DTPREL_G1 524
2794 #define RZ_AARCH64_TLSLD_MOVW_DTPREL_G1_NC 525
2795 #define RZ_AARCH64_TLSLD_MOVW_DTPREL_G0 526
2796 #define RZ_AARCH64_TLSLD_MOVW_DTPREL_G0_NC 527
2797 #define RZ_AARCH64_TLSLD_ADD_DTPREL_HI12 528
2798 #define RZ_AARCH64_TLSLD_ADD_DTPREL_LO12 529
2799 #define RZ_AARCH64_TLSLD_ADD_DTPREL_LO12_NC 530
2800 #define RZ_AARCH64_TLSLD_LDST8_DTPREL_LO12 531
2801 #define RZ_AARCH64_TLSLD_LDST8_DTPREL_LO12_NC 532
2802 #define RZ_AARCH64_TLSLD_LDST16_DTPREL_LO12 533
2803 #define RZ_AARCH64_TLSLD_LDST16_DTPREL_LO12_NC 534
2804 #define RZ_AARCH64_TLSLD_LDST32_DTPREL_LO12 535
2805 #define RZ_AARCH64_TLSLD_LDST32_DTPREL_LO12_NC 536
2806 #define RZ_AARCH64_TLSLD_LDST64_DTPREL_LO12 537
2807 #define RZ_AARCH64_TLSLD_LDST64_DTPREL_LO12_NC 538
2808 #define RZ_AARCH64_TLSIE_MOVW_GOTTPREL_G1 539
2809 #define RZ_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC 540
2810 #define RZ_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21 541
2811 #define RZ_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC 542
2812 #define RZ_AARCH64_TLSIE_LD_GOTTPREL_PREL19 543
2813 #define RZ_AARCH64_TLSLE_MOVW_TPREL_G2 544
2814 #define RZ_AARCH64_TLSLE_MOVW_TPREL_G1 545
2815 #define RZ_AARCH64_TLSLE_MOVW_TPREL_G1_NC 546
2816 #define RZ_AARCH64_TLSLE_MOVW_TPREL_G0 547
2817 #define RZ_AARCH64_TLSLE_MOVW_TPREL_G0_NC 548
2818 #define RZ_AARCH64_TLSLE_ADD_TPREL_HI12 549
2819 #define RZ_AARCH64_TLSLE_ADD_TPREL_LO12 550
2820 #define RZ_AARCH64_TLSLE_ADD_TPREL_LO12_NC 551
2821 #define RZ_AARCH64_TLSLE_LDST8_TPREL_LO12 552
2822 #define RZ_AARCH64_TLSLE_LDST8_TPREL_LO12_NC 553
2823 #define RZ_AARCH64_TLSLE_LDST16_TPREL_LO12 554
2824 #define RZ_AARCH64_TLSLE_LDST16_TPREL_LO12_NC 555
2825 #define RZ_AARCH64_TLSLE_LDST32_TPREL_LO12 556
2826 #define RZ_AARCH64_TLSLE_LDST32_TPREL_LO12_NC 557
2827 #define RZ_AARCH64_TLSLE_LDST64_TPREL_LO12 558
2828 #define RZ_AARCH64_TLSLE_LDST64_TPREL_LO12_NC 559
2829 #define RZ_AARCH64_TLSDESC_LD_PREL19 560
2830 #define RZ_AARCH64_TLSDESC_ADR_PREL21 561
2831 #define RZ_AARCH64_TLSDESC_ADR_PAGE21 562
2832 #define RZ_AARCH64_TLSDESC_LD64_LO12 563
2833 #define RZ_AARCH64_TLSDESC_ADD_LO12 564
2834 #define RZ_AARCH64_TLSDESC_OFF_G1 565
2835 #define RZ_AARCH64_TLSDESC_OFF_G0_NC 566
2836 #define RZ_AARCH64_TLSDESC_LDR 567
2837 #define RZ_AARCH64_TLSDESC_ADD 568
2838 #define RZ_AARCH64_TLSDESC_CALL 569
2839 #define RZ_AARCH64_TLSLE_LDST128_TPREL_LO12 570
2840 #define RZ_AARCH64_TLSLE_LDST128_TPREL_LO12_NC 571
2841 #define RZ_AARCH64_TLSLD_LDST128_DTPREL_LO12 572
2842 #define RZ_AARCH64_TLSLD_LDST128_DTPREL_LO12_NC 573
2843 #define RZ_AARCH64_COPY 1024
2844 #define RZ_AARCH64_GLOB_DAT 1025
2845 #define RZ_AARCH64_JUMP_SLOT 1026
2846 #define RZ_AARCH64_RELATIVE 1027
2847 #define RZ_AARCH64_TLS_DTPMOD 1028
2848 #define RZ_AARCH64_TLS_DTPREL 1029
2849 #define RZ_AARCH64_TLS_TPREL 1030
2850 #define RZ_AARCH64_TLSDESC 1031
2851 #define RZ_AARCH64_IRELATIVE 1032
2854 #define DT_AARCH64_VARIANT_PCS (DT_LOPROC + 5)
2855 #define DT_AARCH64_NUM 6
2858 #define STO_AARCH64_VARIANT_PCS 0x80
2862 #define RZ_ARM_NONE 0
2863 #define RZ_ARM_PC24 1
2865 #define RZ_ARM_ABS32 2
2866 #define RZ_ARM_REL32 3
2867 #define RZ_ARM_PC13 4
2868 #define RZ_ARM_ABS16 5
2869 #define RZ_ARM_ABS12 6
2870 #define RZ_ARM_THM_ABS5 7
2871 #define RZ_ARM_ABS8 8
2872 #define RZ_ARM_SBREL32 9
2873 #define RZ_ARM_THM_PC22 10
2874 #define RZ_ARM_THM_PC8 11
2876 #define RZ_ARM_AMP_VCALL9 12
2877 #define RZ_ARM_SWI24 13
2878 #define RZ_ARM_TLS_DESC 13
2879 #define RZ_ARM_THM_SWI8 14
2880 #define RZ_ARM_XPC25 15
2881 #define RZ_ARM_THM_XPC22 16
2882 #define RZ_ARM_TLS_DTPMOD32 17
2883 #define RZ_ARM_TLS_DTPOFF32 18
2884 #define RZ_ARM_TLS_TPOFF32 19
2885 #define RZ_ARM_COPY 20
2886 #define RZ_ARM_GLOB_DAT 21
2887 #define RZ_ARM_JUMP_SLOT 22
2888 #define RZ_ARM_RELATIVE 23
2889 #define RZ_ARM_GOTOFF 24
2890 #define RZ_ARM_GOTPC 25
2891 #define RZ_ARM_GOT32 26
2892 #define RZ_ARM_PLT32 27
2893 #define RZ_ARM_CALL 28
2894 #define RZ_ARM_JUMP24 29
2896 #define RZ_ARM_THM_JUMP24 30
2897 #define RZ_ARM_BASE_ABS 31
2898 #define RZ_ARM_ALU_PCREL_7_0 32
2899 #define RZ_ARM_ALU_PCREL_15_8 33
2900 #define RZ_ARM_ALU_PCREL_23_15 34
2901 #define RZ_ARM_LDR_SBREL_11_0 35
2902 #define RZ_ARM_ALU_SBREL_19_12 36
2903 #define RZ_ARM_ALU_SBREL_27_20 37
2904 #define RZ_ARM_TARGET1 38
2905 #define RZ_ARM_SBREL31 39
2906 #define RZ_ARM_V4BX 40
2907 #define RZ_ARM_TARGET2 41
2908 #define RZ_ARM_PREL31 42
2909 #define RZ_ARM_MOVW_ABS_NC 43
2910 #define RZ_ARM_MOVT_ABS 44
2911 #define RZ_ARM_MOVW_PREL_NC 45
2912 #define RZ_ARM_MOVT_PREL 46
2913 #define RZ_ARM_THM_MOVW_ABS_NC 47
2914 #define RZ_ARM_THM_MOVT_ABS 48
2916 #define RZ_ARM_THM_MOVW_PREL_NC 49
2918 #define RZ_ARM_THM_MOVT_PREL 50
2920 #define RZ_ARM_THM_JUMP19 51
2922 #define RZ_ARM_THM_JUMP6 52
2924 #define RZ_ARM_THM_ALU_PREL_11_0 53
2926 #define RZ_ARM_THM_PC12 54
2928 #define RZ_ARM_ABS32_NOI 55
2929 #define RZ_ARM_REL32_NOI 56
2930 #define RZ_ARM_ALU_PC_G0_NC 57
2931 #define RZ_ARM_ALU_PC_G0 58
2932 #define RZ_ARM_ALU_PC_G1_NC 59
2933 #define RZ_ARM_ALU_PC_G1 60
2934 #define RZ_ARM_ALU_PC_G2 61
2935 #define RZ_ARM_LDR_PC_G1 62
2936 #define RZ_ARM_LDR_PC_G2 63
2937 #define RZ_ARM_LDRS_PC_G0 64
2939 #define RZ_ARM_LDRS_PC_G1 65
2941 #define RZ_ARM_LDRS_PC_G2 66
2943 #define RZ_ARM_LDC_PC_G0 67
2944 #define RZ_ARM_LDC_PC_G1 68
2945 #define RZ_ARM_LDC_PC_G2 69
2946 #define RZ_ARM_ALU_SB_G0_NC 70
2947 #define RZ_ARM_ALU_SB_G0 71
2948 #define RZ_ARM_ALU_SB_G1_NC 72
2949 #define RZ_ARM_ALU_SB_G1 73
2950 #define RZ_ARM_ALU_SB_G2 74
2951 #define RZ_ARM_LDR_SB_G0 75
2953 #define RZ_ARM_LDR_SB_G1 76
2955 #define RZ_ARM_LDR_SB_G2 77
2957 #define RZ_ARM_LDRS_SB_G0 78
2959 #define RZ_ARM_LDRS_SB_G1 79
2961 #define RZ_ARM_LDRS_SB_G2 80
2963 #define RZ_ARM_LDC_SB_G0 81
2964 #define RZ_ARM_LDC_SB_G1 82
2965 #define RZ_ARM_LDC_SB_G2 83
2966 #define RZ_ARM_MOVW_BREL_NC 84
2968 #define RZ_ARM_MOVT_BREL 85
2970 #define RZ_ARM_MOVW_BREL 86
2972 #define RZ_ARM_THM_MOVW_BREL_NC 87
2974 #define RZ_ARM_THM_MOVT_BREL 88
2976 #define RZ_ARM_THM_MOVW_BREL 89
2978 #define RZ_ARM_TLS_GOTDESC 90
2979 #define RZ_ARM_TLS_CALL 91
2980 #define RZ_ARM_TLS_DESCSEQ 92
2981 #define RZ_ARM_THM_TLS_CALL 93
2982 #define RZ_ARM_PLT32_ABS 94
2983 #define RZ_ARM_GOT_ABS 95
2984 #define RZ_ARM_GOT_PREL 96
2985 #define RZ_ARM_GOT_BREL12 97
2987 #define RZ_ARM_GOTOFF12 98
2989 #define RZ_ARM_GOTRELAX 99
2990 #define RZ_ARM_GNU_VTENTRY 100
2991 #define RZ_ARM_GNU_VTINHERIT 101
2992 #define RZ_ARM_THM_PC11 102
2993 #define RZ_ARM_THM_PC9 103
2995 #define RZ_ARM_TLS_GD32 104
2997 #define RZ_ARM_TLS_LDM32 105
2999 #define RZ_ARM_TLS_LDO32 106
3001 #define RZ_ARM_TLS_IE32 107
3003 #define RZ_ARM_TLS_LE32 108
3005 #define RZ_ARM_TLS_LDO12 109
3007 #define RZ_ARM_TLS_LE12 110
3009 #define RZ_ARM_TLS_IE12GP 111
3011 #define RZ_ARM_ME_TOO 128
3012 #define RZ_ARM_THM_TLS_DESCSEQ 129
3013 #define RZ_ARM_THM_TLS_DESCSEQ16 129
3014 #define RZ_ARM_THM_TLS_DESCSEQ32 130
3015 #define RZ_ARM_THM_GOT_BREL12 131
3017 #define RZ_ARM_IRELATIVE 160
3018 #define RZ_ARM_RXPC25 249
3019 #define RZ_ARM_RSBREL32 250
3020 #define RZ_ARM_THM_RPC22 251
3021 #define RZ_ARM_RREL32 252
3022 #define RZ_ARM_RABS22 253
3023 #define RZ_ARM_RPC24 254
3024 #define RZ_ARM_RBASE 255
3026 #define RZ_ARM_NUM 256
3029 #define RZ_CKCORE_NONE 0
3030 #define RZ_CKCORE_ADDR32 1
3031 #define RZ_CKCORE_PCRELIMM8BY4 2
3032 #define RZ_CKCORE_PCRELIMM11BY2 3
3033 #define RZ_CKCORE_PCREL32 5
3034 #define RZ_CKCORE_PCRELJSR_IMM11BY2 6
3035 #define RZ_CKCORE_RELATIVE 9
3036 #define RZ_CKCORE_COPY 10
3037 #define RZ_CKCORE_GLOB_DAT 11
3038 #define RZ_CKCORE_JUMP_SLOT 12
3039 #define RZ_CKCORE_GOTOFF 13
3040 #define RZ_CKCORE_GOTPC 14
3041 #define RZ_CKCORE_GOT32 15
3042 #define RZ_CKCORE_PLT32 16
3043 #define RZ_CKCORE_ADDRGOT 17
3044 #define RZ_CKCORE_ADDRPLT 18
3045 #define RZ_CKCORE_PCREL_IMM26BY2 19
3046 #define RZ_CKCORE_PCREL_IMM16BY2 20
3047 #define RZ_CKCORE_PCREL_IMM16BY4 21
3048 #define RZ_CKCORE_PCREL_IMM10BY2 22
3049 #define RZ_CKCORE_PCREL_IMM10BY4 23
3050 #define RZ_CKCORE_ADDR_HI16 24
3052 #define RZ_CKCORE_ADDR_LO16 25
3053 #define RZ_CKCORE_GOTPC_HI16 26
3055 #define RZ_CKCORE_GOTPC_LO16 27
3056 #define RZ_CKCORE_GOTOFF_HI16 28
3058 #define RZ_CKCORE_GOTOFF_LO16 29
3059 #define RZ_CKCORE_GOT12 30
3060 #define RZ_CKCORE_GOT_HI16 31
3062 #define RZ_CKCORE_GOT_LO16 32
3063 #define RZ_CKCORE_PLT12 33
3064 #define RZ_CKCORE_PLT_HI16 34
3066 #define RZ_CKCORE_PLT_LO16 35
3067 #define RZ_CKCORE_ADDRGOT_HI16 36
3069 #define RZ_CKCORE_ADDRGOT_LO16 37
3070 #define RZ_CKCORE_ADDRPLT_HI16 38
3072 #define RZ_CKCORE_ADDRPLT_LO16 39
3073 #define RZ_CKCORE_PCREL_JSR_IMM26BY2 40
3074 #define RZ_CKCORE_TOFFSET_LO16 41
3075 #define RZ_CKCORE_DOFFSET_LO16 42
3076 #define RZ_CKCORE_PCREL_IMM18BY2 43
3077 #define RZ_CKCORE_DOFFSET_IMM18 44
3078 #define RZ_CKCORE_DOFFSET_IMM18BY2 45
3079 #define RZ_CKCORE_DOFFSET_IMM18BY4 46
3080 #define RZ_CKCORE_GOT_IMM18BY4 48
3081 #define RZ_CKCORE_PLT_IMM18BY4 49
3082 #define RZ_CKCORE_PCREL_IMM7BY4 50
3083 #define RZ_CKCORE_TLS_LE32 51
3084 #define RZ_CKCORE_TLS_IE32 52
3085 #define RZ_CKCORE_TLS_GD32 53
3086 #define RZ_CKCORE_TLS_LDM32 54
3087 #define RZ_CKCORE_TLS_LDO32 55
3088 #define RZ_CKCORE_TLS_DTPMOD32 56
3089 #define RZ_CKCORE_TLS_DTPOFF32 57
3090 #define RZ_CKCORE_TLS_TPOFF32 58
3093 #define EF_CSKY_ABIMASK 0XF0000000
3094 #define EF_CSKY_OTHER 0X0FFF0000
3095 #define EF_CSKY_PROCESSOR 0X0000FFFF
3097 #define EF_CSKY_ABIV1 0X10000000
3098 #define EF_CSKY_ABIV2 0X20000000
3101 #define SHT_CSKY_ATTRIBUTES (SHT_LOPROC + 1)
3106 #define EF_IA_64_MASKOS 0x0000000f
3107 #define EF_IA_64_ABI64 0x00000010
3108 #define EF_IA_64_ARCH 0xff000000
3111 #define PT_IA_64_ARCHEXT (PT_LOPROC + 0)
3112 #define PT_IA_64_UNWIND (PT_LOPROC + 1)
3113 #define PT_IA_64_HP_OPT_ANOT (PT_LOOS + 0x12)
3114 #define PT_IA_64_HP_HSL_ANOT (PT_LOOS + 0x13)
3115 #define PT_IA_64_HP_STACK (PT_LOOS + 0x14)
3118 #define PF_IA_64_NORECOV 0x80000000
3121 #define SHT_IA_64_EXT (SHT_LOPROC + 0)
3122 #define SHT_IA_64_UNWIND (SHT_LOPROC + 1)
3125 #define SHF_IA_64_SHORT 0x10000000
3126 #define SHF_IA_64_NORECOV 0x20000000
3129 #define DT_IA_64_PLT_RESERVE (DT_LOPROC + 0)
3130 #define DT_IA_64_NUM 1
3133 #define RZ_IA64_NONE 0x00
3134 #define RZ_IA64_IMM14 0x21
3135 #define RZ_IA64_IMM22 0x22
3136 #define RZ_IA64_IMM64 0x23
3137 #define RZ_IA64_DIR32MSB 0x24
3138 #define RZ_IA64_DIR32LSB 0x25
3139 #define RZ_IA64_DIR64MSB 0x26
3140 #define RZ_IA64_DIR64LSB 0x27
3141 #define RZ_IA64_GPREL22 0x2a
3142 #define RZ_IA64_GPREL64I 0x2b
3143 #define RZ_IA64_GPREL32MSB 0x2c
3144 #define RZ_IA64_GPREL32LSB 0x2d
3145 #define RZ_IA64_GPREL64MSB 0x2e
3146 #define RZ_IA64_GPREL64LSB 0x2f
3147 #define RZ_IA64_LTOFF22 0x32
3148 #define RZ_IA64_LTOFF64I 0x33
3149 #define RZ_IA64_PLTOFF22 0x3a
3150 #define RZ_IA64_PLTOFF64I 0x3b
3151 #define RZ_IA64_PLTOFF64MSB 0x3e
3152 #define RZ_IA64_PLTOFF64LSB 0x3f
3153 #define RZ_IA64_FPTR64I 0x43
3154 #define RZ_IA64_FPTR32MSB 0x44
3155 #define RZ_IA64_FPTR32LSB 0x45
3156 #define RZ_IA64_FPTR64MSB 0x46
3157 #define RZ_IA64_FPTR64LSB 0x47
3158 #define RZ_IA64_PCREL60B 0x48
3159 #define RZ_IA64_PCREL21B 0x49
3160 #define RZ_IA64_PCREL21M 0x4a
3161 #define RZ_IA64_PCREL21F 0x4b
3162 #define RZ_IA64_PCREL32MSB 0x4c
3163 #define RZ_IA64_PCREL32LSB 0x4d
3164 #define RZ_IA64_PCREL64MSB 0x4e
3165 #define RZ_IA64_PCREL64LSB 0x4f
3166 #define RZ_IA64_LTOFF_FPTR22 0x52
3167 #define RZ_IA64_LTOFF_FPTR64I 0x53
3168 #define RZ_IA64_LTOFF_FPTR32MSB 0x54
3169 #define RZ_IA64_LTOFF_FPTR32LSB 0x55
3170 #define RZ_IA64_LTOFF_FPTR64MSB 0x56
3171 #define RZ_IA64_LTOFF_FPTR64LSB 0x57
3172 #define RZ_IA64_SEGREL32MSB 0x5c
3173 #define RZ_IA64_SEGREL32LSB 0x5d
3174 #define RZ_IA64_SEGREL64MSB 0x5e
3175 #define RZ_IA64_SEGREL64LSB 0x5f
3176 #define RZ_IA64_SECREL32MSB 0x64
3177 #define RZ_IA64_SECREL32LSB 0x65
3178 #define RZ_IA64_SECREL64MSB 0x66
3179 #define RZ_IA64_SECREL64LSB 0x67
3180 #define RZ_IA64_REL32MSB 0x6c
3181 #define RZ_IA64_REL32LSB 0x6d
3182 #define RZ_IA64_REL64MSB 0x6e
3183 #define RZ_IA64_REL64LSB 0x6f
3184 #define RZ_IA64_LTV32MSB 0x74
3185 #define RZ_IA64_LTV32LSB 0x75
3186 #define RZ_IA64_LTV64MSB 0x76
3187 #define RZ_IA64_LTV64LSB 0x77
3188 #define RZ_IA64_PCREL21BI 0x79
3189 #define RZ_IA64_PCREL22 0x7a
3190 #define RZ_IA64_PCREL64I 0x7b
3191 #define RZ_IA64_IPLTMSB 0x80
3192 #define RZ_IA64_IPLTLSB 0x81
3193 #define RZ_IA64_COPY 0x84
3194 #define RZ_IA64_SUB 0x85
3195 #define RZ_IA64_LTOFF22X 0x86
3196 #define RZ_IA64_LDXMOV 0x87
3197 #define RZ_IA64_TPREL14 0x91
3198 #define RZ_IA64_TPREL22 0x92
3199 #define RZ_IA64_TPREL64I 0x93
3200 #define RZ_IA64_TPREL64MSB 0x96
3201 #define RZ_IA64_TPREL64LSB 0x97
3202 #define RZ_IA64_LTOFF_TPREL22 0x9a
3203 #define RZ_IA64_DTPMOD64MSB 0xa6
3204 #define RZ_IA64_DTPMOD64LSB 0xa7
3205 #define RZ_IA64_LTOFF_DTPMOD22 0xaa
3206 #define RZ_IA64_DTPREL14 0xb1
3207 #define RZ_IA64_DTPREL22 0xb2
3208 #define RZ_IA64_DTPREL64I 0xb3
3209 #define RZ_IA64_DTPREL32MSB 0xb4
3210 #define RZ_IA64_DTPREL32LSB 0xb5
3211 #define RZ_IA64_DTPREL64MSB 0xb6
3212 #define RZ_IA64_DTPREL64LSB 0xb7
3213 #define RZ_IA64_LTOFF_DTPREL22 0xba
3218 #define EF_SH_MACH_MASK 0x1f
3219 #define EF_SH_UNKNOWN 0x0
3223 #define EF_SH_DSP 0x4
3224 #define EF_SH3_DSP 0x5
3225 #define EF_SH4AL_DSP 0x6
3231 #define EF_SH4_NOFPU 0x10
3232 #define EF_SH4A_NOFPU 0x11
3233 #define EF_SH4_NOMMU_NOFPU 0x12
3234 #define EF_SH2A_NOFPU 0x13
3235 #define EF_SH3_NOMMU 0x14
3236 #define EF_SH2A_SH4_NOFPU 0x15
3237 #define EF_SH2A_SH3_NOFPU 0x16
3238 #define EF_SH2A_SH4 0x17
3239 #define EF_SH2A_SH3E 0x18
3242 #define RZ_SH_NONE 0
3243 #define RZ_SH_DIR32 1
3244 #define RZ_SH_REL32 2
3245 #define RZ_SH_DIR8WPN 3
3246 #define RZ_SH_IND12W 4
3247 #define RZ_SH_DIR8WPL 5
3248 #define RZ_SH_DIR8WPZ 6
3249 #define RZ_SH_DIR8BP 7
3250 #define RZ_SH_DIR8W 8
3251 #define RZ_SH_DIR8L 9
3252 #define RZ_SH_SWITCH16 25
3253 #define RZ_SH_SWITCH32 26
3254 #define RZ_SH_USES 27
3255 #define RZ_SH_COUNT 28
3256 #define RZ_SH_ALIGN 29
3257 #define RZ_SH_CODE 30
3258 #define RZ_SH_DATA 31
3259 #define RZ_SH_LABEL 32
3260 #define RZ_SH_SWITCH8 33
3261 #define RZ_SH_GNU_VTINHERIT 34
3262 #define RZ_SH_GNU_VTENTRY 35
3263 #define RZ_SH_TLS_GD_32 144
3264 #define RZ_SH_TLS_LD_32 145
3265 #define RZ_SH_TLS_LDO_32 146
3266 #define RZ_SH_TLS_IE_32 147
3267 #define RZ_SH_TLS_LE_32 148
3268 #define RZ_SH_TLS_DTPMOD32 149
3269 #define RZ_SH_TLS_DTPOFF32 150
3270 #define RZ_SH_TLS_TPOFF32 151
3271 #define RZ_SH_GOT32 160
3272 #define RZ_SH_PLT32 161
3273 #define RZ_SH_COPY 162
3274 #define RZ_SH_GLOB_DAT 163
3275 #define RZ_SH_JMP_SLOT 164
3276 #define RZ_SH_RELATIVE 165
3277 #define RZ_SH_GOTOFF 166
3278 #define RZ_SH_GOTPC 167
3280 #define RZ_SH_NUM 256
3286 #define EF_S390_HIGH_GPRS 0x00000001
3290 #define RZ_390_NONE 0
3295 #define RZ_390_PC32 5
3296 #define RZ_390_GOT12 6
3297 #define RZ_390_GOT32 7
3298 #define RZ_390_PLT32 8
3299 #define RZ_390_COPY 9
3300 #define RZ_390_GLOB_DAT 10
3301 #define RZ_390_JMP_SLOT 11
3302 #define RZ_390_RELATIVE 12
3303 #define RZ_390_GOTOFF32 13
3304 #define RZ_390_GOTPC 14
3305 #define RZ_390_GOT16 15
3306 #define RZ_390_PC16 16
3307 #define RZ_390_PC16DBL 17
3308 #define RZ_390_PLT16DBL 18
3309 #define RZ_390_PC32DBL 19
3310 #define RZ_390_PLT32DBL 20
3311 #define RZ_390_GOTPCDBL 21
3312 #define RZ_390_64 22
3313 #define RZ_390_PC64 23
3314 #define RZ_390_GOT64 24
3315 #define RZ_390_PLT64 25
3316 #define RZ_390_GOTENT 26
3317 #define RZ_390_GOTOFF16 27
3318 #define RZ_390_GOTOFF64 28
3319 #define RZ_390_GOTPLT12 29
3320 #define RZ_390_GOTPLT16 30
3321 #define RZ_390_GOTPLT32 31
3322 #define RZ_390_GOTPLT64 32
3323 #define RZ_390_GOTPLTENT 33
3324 #define RZ_390_PLTOFF16 34
3325 #define RZ_390_PLTOFF32 35
3326 #define RZ_390_PLTOFF64 36
3327 #define RZ_390_TLS_LOAD 37
3328 #define RZ_390_TLS_GDCALL 38
3330 #define RZ_390_TLS_LDCALL 39
3332 #define RZ_390_TLS_GD32 40
3334 #define RZ_390_TLS_GD64 41
3336 #define RZ_390_TLS_GOTIE12 42
3338 #define RZ_390_TLS_GOTIE32 43
3340 #define RZ_390_TLS_GOTIE64 44
3342 #define RZ_390_TLS_LDM32 45
3344 #define RZ_390_TLS_LDM64 46
3346 #define RZ_390_TLS_IE32 47
3348 #define RZ_390_TLS_IE64 48
3350 #define RZ_390_TLS_IEENT 49
3352 #define RZ_390_TLS_LE32 50
3354 #define RZ_390_TLS_LE64 51
3356 #define RZ_390_TLS_LDO32 52
3358 #define RZ_390_TLS_LDO64 53
3360 #define RZ_390_TLS_DTPMOD 54
3361 #define RZ_390_TLS_DTPOFF 55
3362 #define RZ_390_TLS_TPOFF 56
3364 #define RZ_390_20 57
3365 #define RZ_390_GOT20 58
3366 #define RZ_390_GOTPLT20 59
3367 #define RZ_390_TLS_GOTIE20 60
3369 #define RZ_390_IRELATIVE 61
3371 #define RZ_390_NUM 62
3374 #define RZ_CRIS_NONE 0
3376 #define RZ_CRIS_16 2
3377 #define RZ_CRIS_32 3
3378 #define RZ_CRIS_8_PCREL 4
3379 #define RZ_CRIS_16_PCREL 5
3380 #define RZ_CRIS_32_PCREL 6
3381 #define RZ_CRIS_GNU_VTINHERIT 7
3382 #define RZ_CRIS_GNU_VTENTRY 8
3383 #define RZ_CRIS_COPY 9
3384 #define RZ_CRIS_GLOB_DAT 10
3385 #define RZ_CRIS_JUMP_SLOT 11
3386 #define RZ_CRIS_RELATIVE 12
3387 #define RZ_CRIS_16_GOT 13
3388 #define RZ_CRIS_32_GOT 14
3389 #define RZ_CRIS_16_GOTPLT 15
3390 #define RZ_CRIS_32_GOTPLT 16
3391 #define RZ_CRIS_32_GOTREL 17
3392 #define RZ_CRIS_32_PLT_GOTREL 18
3393 #define RZ_CRIS_32_PLT_PCREL 19
3395 #define RZ_CRIS_NUM 20
3398 #define RZ_X86_64_NONE 0
3399 #define RZ_X86_64_64 1
3400 #define RZ_X86_64_PC32 2
3401 #define RZ_X86_64_GOT32 3
3402 #define RZ_X86_64_PLT32 4
3403 #define RZ_X86_64_COPY 5
3404 #define RZ_X86_64_GLOB_DAT 6
3405 #define RZ_X86_64_JUMP_SLOT 7
3406 #define RZ_X86_64_RELATIVE 8
3407 #define RZ_X86_64_GOTPCREL 9
3409 #define RZ_X86_64_32 10
3410 #define RZ_X86_64_32S 11
3411 #define RZ_X86_64_16 12
3412 #define RZ_X86_64_PC16 13
3413 #define RZ_X86_64_8 14
3414 #define RZ_X86_64_PC8 15
3415 #define RZ_X86_64_DTPMOD64 16
3416 #define RZ_X86_64_DTPOFF64 17
3417 #define RZ_X86_64_TPOFF64 18
3418 #define RZ_X86_64_TLSGD 19
3420 #define RZ_X86_64_TLSLD 20
3422 #define RZ_X86_64_DTPOFF32 21
3423 #define RZ_X86_64_GOTTPOFF 22
3425 #define RZ_X86_64_TPOFF32 23
3426 #define RZ_X86_64_PC64 24
3427 #define RZ_X86_64_GOTOFF64 25
3428 #define RZ_X86_64_GOTPC32 26
3430 #define RZ_X86_64_GOT64 27
3431 #define RZ_X86_64_GOTPCREL64 28
3433 #define RZ_X86_64_GOTPC64 29
3434 #define RZ_X86_64_GOTPLT64 30
3435 #define RZ_X86_64_PLTOFF64 31
3437 #define RZ_X86_64_SIZE32 32
3438 #define RZ_X86_64_SIZE64 33
3439 #define RZ_X86_64_GOTPC32_TLSDESC 34
3440 #define RZ_X86_64_TLSDESC_CALL 35
3442 #define RZ_X86_64_TLSDESC 36
3443 #define RZ_X86_64_IRELATIVE 37
3444 #define RZ_X86_64_RELATIVE64 38
3447 #define RZ_X86_64_GOTPCRELX 41
3450 #define RZ_X86_64_REX_GOTPCRELX 42
3453 #define RZ_X86_64_NUM 43
3456 #define SHT_X86_64_UNWIND 0x70000001
3459 #define RZ_MN10300_NONE 0
3460 #define RZ_MN10300_32 1
3461 #define RZ_MN10300_16 2
3462 #define RZ_MN10300_8 3
3463 #define RZ_MN10300_PCREL32 4
3464 #define RZ_MN10300_PCREL16 5
3465 #define RZ_MN10300_PCREL8 6
3466 #define RZ_MN10300_GNU_VTINHERIT 7
3467 #define RZ_MN10300_GNU_VTENTRY 8
3468 #define RZ_MN10300_24 9
3469 #define RZ_MN10300_GOTPC32 10
3470 #define RZ_MN10300_GOTPC16 11
3471 #define RZ_MN10300_GOTOFF32 12
3472 #define RZ_MN10300_GOTOFF24 13
3473 #define RZ_MN10300_GOTOFF16 14
3474 #define RZ_MN10300_PLT32 15
3475 #define RZ_MN10300_PLT16 16
3476 #define RZ_MN10300_GOT32 17
3477 #define RZ_MN10300_GOT24 18
3478 #define RZ_MN10300_GOT16 19
3479 #define RZ_MN10300_COPY 20
3480 #define RZ_MN10300_GLOB_DAT 21
3481 #define RZ_MN10300_JMP_SLOT 22
3482 #define RZ_MN10300_RELATIVE 23
3483 #define RZ_MN10300_TLS_GD 24
3484 #define RZ_MN10300_TLS_LD 25
3485 #define RZ_MN10300_TLS_LDO 26
3486 #define RZ_MN10300_TLS_GOTIE 27
3488 #define RZ_MN10300_TLS_IE 28
3490 #define RZ_MN10300_TLS_LE 29
3492 #define RZ_MN10300_TLS_DTPMOD 30
3493 #define RZ_MN10300_TLS_DTPOFF 31
3494 #define RZ_MN10300_TLS_TPOFF 32
3495 #define RZ_MN10300_SYM_DIFF 33
3497 #define RZ_MN10300_ALIGN 34
3499 #define RZ_MN10300_NUM 35
3502 #define RZ_M32R_NONE 0
3503 #define RZ_M32R_16 1
3504 #define RZ_M32R_32 2
3505 #define RZ_M32R_24 3
3506 #define RZ_M32R_10_PCREL 4
3507 #define RZ_M32R_18_PCREL 5
3508 #define RZ_M32R_26_PCREL 6
3509 #define RZ_M32R_HI16_ULO 7
3510 #define RZ_M32R_HI16_SLO 8
3511 #define RZ_M32R_LO16 9
3512 #define RZ_M32R_SDA16 10
3513 #define RZ_M32R_GNU_VTINHERIT 11
3514 #define RZ_M32R_GNU_VTENTRY 12
3516 #define RZ_M32R_16_RELA 33
3517 #define RZ_M32R_32_RELA 34
3518 #define RZ_M32R_24_RELA 35
3519 #define RZ_M32R_10_PCREL_RELA 36
3520 #define RZ_M32R_18_PCREL_RELA 37
3521 #define RZ_M32R_26_PCREL_RELA 38
3522 #define RZ_M32R_HI16_ULO_RELA 39
3523 #define RZ_M32R_HI16_SLO_RELA 40
3524 #define RZ_M32R_LO16_RELA 41
3525 #define RZ_M32R_SDA16_RELA 42
3526 #define RZ_M32R_RELA_GNU_VTINHERIT 43
3527 #define RZ_M32R_RELA_GNU_VTENTRY 44
3528 #define RZ_M32R_REL32 45
3530 #define RZ_M32R_GOT24 48
3531 #define RZ_M32R_26_PLTREL 49
3532 #define RZ_M32R_COPY 50
3533 #define RZ_M32R_GLOB_DAT 51
3534 #define RZ_M32R_JMP_SLOT 52
3535 #define RZ_M32R_RELATIVE 53
3536 #define RZ_M32R_GOTOFF 54
3537 #define RZ_M32R_GOTPC24 55
3538 #define RZ_M32R_GOT16_HI_ULO 56
3540 #define RZ_M32R_GOT16_HI_SLO 57
3542 #define RZ_M32R_GOT16_LO 58
3543 #define RZ_M32R_GOTPC_HI_ULO 59
3545 #define RZ_M32R_GOTPC_HI_SLO 60
3547 #define RZ_M32R_GOTPC_LO 61
3549 #define RZ_M32R_GOTOFF_HI_ULO 62
3551 #define RZ_M32R_GOTOFF_HI_SLO 63
3553 #define RZ_M32R_GOTOFF_LO 64
3554 #define RZ_M32R_NUM 256
3557 #define RZ_MICROBLAZE_NONE 0
3558 #define RZ_MICROBLAZE_32 1
3559 #define RZ_MICROBLAZE_32_PCREL 2
3560 #define RZ_MICROBLAZE_64_PCREL 3
3561 #define RZ_MICROBLAZE_32_PCREL_LO 4
3562 #define RZ_MICROBLAZE_64 5
3563 #define RZ_MICROBLAZE_32_LO 6
3564 #define RZ_MICROBLAZE_SRO32 7
3565 #define RZ_MICROBLAZE_SRW32 8
3566 #define RZ_MICROBLAZE_64_NONE 9
3567 #define RZ_MICROBLAZE_32_SYM_OP_SYM 10
3568 #define RZ_MICROBLAZE_GNU_VTINHERIT 11
3569 #define RZ_MICROBLAZE_GNU_VTENTRY 12
3570 #define RZ_MICROBLAZE_GOTPC_64 13
3571 #define RZ_MICROBLAZE_GOT_64 14
3572 #define RZ_MICROBLAZE_PLT_64 15
3573 #define RZ_MICROBLAZE_REL 16
3574 #define RZ_MICROBLAZE_JUMP_SLOT 17
3575 #define RZ_MICROBLAZE_GLOB_DAT 18
3576 #define RZ_MICROBLAZE_GOTOFF_64 19
3577 #define RZ_MICROBLAZE_GOTOFF_32 20
3578 #define RZ_MICROBLAZE_COPY 21
3579 #define RZ_MICROBLAZE_TLS 22
3580 #define RZ_MICROBLAZE_TLSGD 23
3581 #define RZ_MICROBLAZE_TLSLD 24
3582 #define RZ_MICROBLAZE_TLSDTPMOD32 25
3583 #define RZ_MICROBLAZE_TLSDTPREL32 26
3584 #define RZ_MICROBLAZE_TLSDTPREL64 27
3585 #define RZ_MICROBLAZE_TLSGOTTPREL32 28
3586 #define RZ_MICROBLAZE_TLSTPREL32 29
3589 #define DT_NIOS2_GP 0x70000002
3592 #define RZ_NIOS2_NONE 0
3593 #define RZ_NIOS2_S16 1
3594 #define RZ_NIOS2_U16 2
3595 #define RZ_NIOS2_PCREL16 3
3596 #define RZ_NIOS2_CALL26 4
3597 #define RZ_NIOS2_IMM5 5
3598 #define RZ_NIOS2_CACHE_OPX 6
3599 #define RZ_NIOS2_IMM6 7
3600 #define RZ_NIOS2_IMM8 8
3601 #define RZ_NIOS2_HI16 9
3602 #define RZ_NIOS2_LO16 10
3603 #define RZ_NIOS2_HIADJ16 11
3604 #define RZ_NIOS2_BFD_RELOC_32 12
3605 #define RZ_NIOS2_BFD_RELOC_16 13
3606 #define RZ_NIOS2_BFD_RELOC_8 14
3607 #define RZ_NIOS2_GPREL 15
3608 #define RZ_NIOS2_GNU_VTINHERIT 16
3609 #define RZ_NIOS2_GNU_VTENTRY 17
3610 #define RZ_NIOS2_UJMP 18
3611 #define RZ_NIOS2_CJMP 19
3612 #define RZ_NIOS2_CALLR 20
3613 #define RZ_NIOS2_ALIGN 21
3615 #define RZ_NIOS2_GOT16 22
3616 #define RZ_NIOS2_CALL16 23
3617 #define RZ_NIOS2_GOTOFF_LO 24
3618 #define RZ_NIOS2_GOTOFF_HA 25
3619 #define RZ_NIOS2_PCREL_LO 26
3620 #define RZ_NIOS2_PCREL_HA 27
3621 #define RZ_NIOS2_TLS_GD16 28
3622 #define RZ_NIOS2_TLS_LDM16 29
3623 #define RZ_NIOS2_TLS_LDO16 30
3624 #define RZ_NIOS2_TLS_IE16 31
3625 #define RZ_NIOS2_TLS_LE16 32
3626 #define RZ_NIOS2_TLS_DTPMOD 33
3627 #define RZ_NIOS2_TLS_DTPREL 34
3628 #define RZ_NIOS2_TLS_TPREL 35
3629 #define RZ_NIOS2_COPY 36
3630 #define RZ_NIOS2_GLOB_DAT 37
3631 #define RZ_NIOS2_JUMP_SLOT 38
3632 #define RZ_NIOS2_RELATIVE 39
3633 #define RZ_NIOS2_GOTOFF 40
3634 #define RZ_NIOS2_CALL26_NOAT 41
3635 #define RZ_NIOS2_GOT_LO 42
3636 #define RZ_NIOS2_GOT_HA 43
3637 #define RZ_NIOS2_CALL_LO 44
3638 #define RZ_NIOS2_CALL_HA 45
3641 #define RZ_TILEPRO_NONE 0
3642 #define RZ_TILEPRO_32 1
3643 #define RZ_TILEPRO_16 2
3644 #define RZ_TILEPRO_8 3
3645 #define RZ_TILEPRO_32_PCREL 4
3646 #define RZ_TILEPRO_16_PCREL 5
3647 #define RZ_TILEPRO_8_PCREL 6
3648 #define RZ_TILEPRO_LO16 7
3649 #define RZ_TILEPRO_HI16 8
3650 #define RZ_TILEPRO_HA16 9
3651 #define RZ_TILEPRO_COPY 10
3652 #define RZ_TILEPRO_GLOB_DAT 11
3653 #define RZ_TILEPRO_JMP_SLOT 12
3654 #define RZ_TILEPRO_RELATIVE 13
3655 #define RZ_TILEPRO_BROFF_X1 14
3656 #define RZ_TILEPRO_JOFFLONG_X1 15
3657 #define RZ_TILEPRO_JOFFLONG_X1_PLT 16
3658 #define RZ_TILEPRO_IMM8_X0 17
3659 #define RZ_TILEPRO_IMM8_Y0 18
3660 #define RZ_TILEPRO_IMM8_X1 19
3661 #define RZ_TILEPRO_IMM8_Y1 20
3662 #define RZ_TILEPRO_MT_IMM15_X1 21
3663 #define RZ_TILEPRO_MF_IMM15_X1 22
3664 #define RZ_TILEPRO_IMM16_X0 23
3665 #define RZ_TILEPRO_IMM16_X1 24
3666 #define RZ_TILEPRO_IMM16_X0_LO 25
3667 #define RZ_TILEPRO_IMM16_X1_LO 26
3668 #define RZ_TILEPRO_IMM16_X0_HI 27
3669 #define RZ_TILEPRO_IMM16_X1_HI 28
3670 #define RZ_TILEPRO_IMM16_X0_HA 29
3671 #define RZ_TILEPRO_IMM16_X1_HA 30
3672 #define RZ_TILEPRO_IMM16_X0_PCREL 31
3673 #define RZ_TILEPRO_IMM16_X1_PCREL 32
3674 #define RZ_TILEPRO_IMM16_X0_LO_PCREL 33
3675 #define RZ_TILEPRO_IMM16_X1_LO_PCREL 34
3676 #define RZ_TILEPRO_IMM16_X0_HI_PCREL 35
3677 #define RZ_TILEPRO_IMM16_X1_HI_PCREL 36
3678 #define RZ_TILEPRO_IMM16_X0_HA_PCREL 37
3679 #define RZ_TILEPRO_IMM16_X1_HA_PCREL 38
3680 #define RZ_TILEPRO_IMM16_X0_GOT 39
3681 #define RZ_TILEPRO_IMM16_X1_GOT 40
3682 #define RZ_TILEPRO_IMM16_X0_GOT_LO 41
3683 #define RZ_TILEPRO_IMM16_X1_GOT_LO 42
3684 #define RZ_TILEPRO_IMM16_X0_GOT_HI 43
3685 #define RZ_TILEPRO_IMM16_X1_GOT_HI 44
3686 #define RZ_TILEPRO_IMM16_X0_GOT_HA 45
3687 #define RZ_TILEPRO_IMM16_X1_GOT_HA 46
3688 #define RZ_TILEPRO_MMSTART_X0 47
3689 #define RZ_TILEPRO_MMEND_X0 48
3690 #define RZ_TILEPRO_MMSTART_X1 49
3691 #define RZ_TILEPRO_MMEND_X1 50
3692 #define RZ_TILEPRO_SHAMT_X0 51
3693 #define RZ_TILEPRO_SHAMT_X1 52
3694 #define RZ_TILEPRO_SHAMT_Y0 53
3695 #define RZ_TILEPRO_SHAMT_Y1 54
3696 #define RZ_TILEPRO_DEST_IMM8_X1 55
3698 #define RZ_TILEPRO_TLS_GD_CALL 60
3699 #define RZ_TILEPRO_IMM8_X0_TLS_GD_ADD 61
3700 #define RZ_TILEPRO_IMM8_X1_TLS_GD_ADD 62
3701 #define RZ_TILEPRO_IMM8_Y0_TLS_GD_ADD 63
3702 #define RZ_TILEPRO_IMM8_Y1_TLS_GD_ADD 64
3703 #define RZ_TILEPRO_TLS_IE_LOAD 65
3704 #define RZ_TILEPRO_IMM16_X0_TLS_GD 66
3705 #define RZ_TILEPRO_IMM16_X1_TLS_GD 67
3706 #define RZ_TILEPRO_IMM16_X0_TLS_GD_LO 68
3707 #define RZ_TILEPRO_IMM16_X1_TLS_GD_LO 69
3708 #define RZ_TILEPRO_IMM16_X0_TLS_GD_HI 70
3709 #define RZ_TILEPRO_IMM16_X1_TLS_GD_HI 71
3710 #define RZ_TILEPRO_IMM16_X0_TLS_GD_HA 72
3711 #define RZ_TILEPRO_IMM16_X1_TLS_GD_HA 73
3712 #define RZ_TILEPRO_IMM16_X0_TLS_IE 74
3713 #define RZ_TILEPRO_IMM16_X1_TLS_IE 75
3714 #define RZ_TILEPRO_IMM16_X0_TLS_IE_LO 76
3715 #define RZ_TILEPRO_IMM16_X1_TLS_IE_LO 77
3716 #define RZ_TILEPRO_IMM16_X0_TLS_IE_HI 78
3717 #define RZ_TILEPRO_IMM16_X1_TLS_IE_HI 79
3718 #define RZ_TILEPRO_IMM16_X0_TLS_IE_HA 80
3719 #define RZ_TILEPRO_IMM16_X1_TLS_IE_HA 81
3720 #define RZ_TILEPRO_TLS_DTPMOD32 82
3721 #define RZ_TILEPRO_TLS_DTPOFF32 83
3722 #define RZ_TILEPRO_TLS_TPOFF32 84
3723 #define RZ_TILEPRO_IMM16_X0_TLS_LE 85
3724 #define RZ_TILEPRO_IMM16_X1_TLS_LE 86
3725 #define RZ_TILEPRO_IMM16_X0_TLS_LE_LO 87
3726 #define RZ_TILEPRO_IMM16_X1_TLS_LE_LO 88
3727 #define RZ_TILEPRO_IMM16_X0_TLS_LE_HI 89
3728 #define RZ_TILEPRO_IMM16_X1_TLS_LE_HI 90
3729 #define RZ_TILEPRO_IMM16_X0_TLS_LE_HA 91
3730 #define RZ_TILEPRO_IMM16_X1_TLS_LE_HA 92
3732 #define RZ_TILEPRO_GNU_VTINHERIT 128
3733 #define RZ_TILEPRO_GNU_VTENTRY 129
3735 #define RZ_TILEPRO_NUM 130
3738 #define RZ_TILEGX_NONE 0
3739 #define RZ_TILEGX_64 1
3740 #define RZ_TILEGX_32 2
3741 #define RZ_TILEGX_16 3
3742 #define RZ_TILEGX_8 4
3743 #define RZ_TILEGX_64_PCREL 5
3744 #define RZ_TILEGX_32_PCREL 6
3745 #define RZ_TILEGX_16_PCREL 7
3746 #define RZ_TILEGX_8_PCREL 8
3747 #define RZ_TILEGX_HW0 9
3748 #define RZ_TILEGX_HW1 10
3749 #define RZ_TILEGX_HW2 11
3750 #define RZ_TILEGX_HW3 12
3751 #define RZ_TILEGX_HW0_LAST 13
3752 #define RZ_TILEGX_HW1_LAST 14
3753 #define RZ_TILEGX_HW2_LAST 15
3754 #define RZ_TILEGX_COPY 16
3755 #define RZ_TILEGX_GLOB_DAT 17
3756 #define RZ_TILEGX_JMP_SLOT 18
3757 #define RZ_TILEGX_RELATIVE 19
3758 #define RZ_TILEGX_BROFF_X1 20
3759 #define RZ_TILEGX_JUMPOFF_X1 21
3760 #define RZ_TILEGX_JUMPOFF_X1_PLT 22
3761 #define RZ_TILEGX_IMM8_X0 23
3762 #define RZ_TILEGX_IMM8_Y0 24
3763 #define RZ_TILEGX_IMM8_X1 25
3764 #define RZ_TILEGX_IMM8_Y1 26
3765 #define RZ_TILEGX_DEST_IMM8_X1 27
3766 #define RZ_TILEGX_MT_IMM14_X1 28
3767 #define RZ_TILEGX_MF_IMM14_X1 29
3768 #define RZ_TILEGX_MMSTART_X0 30
3769 #define RZ_TILEGX_MMEND_X0 31
3770 #define RZ_TILEGX_SHAMT_X0 32
3771 #define RZ_TILEGX_SHAMT_X1 33
3772 #define RZ_TILEGX_SHAMT_Y0 34
3773 #define RZ_TILEGX_SHAMT_Y1 35
3774 #define RZ_TILEGX_IMM16_X0_HW0 36
3775 #define RZ_TILEGX_IMM16_X1_HW0 37
3776 #define RZ_TILEGX_IMM16_X0_HW1 38
3777 #define RZ_TILEGX_IMM16_X1_HW1 39
3778 #define RZ_TILEGX_IMM16_X0_HW2 40
3779 #define RZ_TILEGX_IMM16_X1_HW2 41
3780 #define RZ_TILEGX_IMM16_X0_HW3 42
3781 #define RZ_TILEGX_IMM16_X1_HW3 43
3782 #define RZ_TILEGX_IMM16_X0_HW0_LAST 44
3783 #define RZ_TILEGX_IMM16_X1_HW0_LAST 45
3784 #define RZ_TILEGX_IMM16_X0_HW1_LAST 46
3785 #define RZ_TILEGX_IMM16_X1_HW1_LAST 47
3786 #define RZ_TILEGX_IMM16_X0_HW2_LAST 48
3787 #define RZ_TILEGX_IMM16_X1_HW2_LAST 49
3788 #define RZ_TILEGX_IMM16_X0_HW0_PCREL 50
3789 #define RZ_TILEGX_IMM16_X1_HW0_PCREL 51
3790 #define RZ_TILEGX_IMM16_X0_HW1_PCREL 52
3791 #define RZ_TILEGX_IMM16_X1_HW1_PCREL 53
3792 #define RZ_TILEGX_IMM16_X0_HW2_PCREL 54
3793 #define RZ_TILEGX_IMM16_X1_HW2_PCREL 55
3794 #define RZ_TILEGX_IMM16_X0_HW3_PCREL 56
3795 #define RZ_TILEGX_IMM16_X1_HW3_PCREL 57
3796 #define RZ_TILEGX_IMM16_X0_HW0_LAST_PCREL 58
3797 #define RZ_TILEGX_IMM16_X1_HW0_LAST_PCREL 59
3798 #define RZ_TILEGX_IMM16_X0_HW1_LAST_PCREL 60
3799 #define RZ_TILEGX_IMM16_X1_HW1_LAST_PCREL 61
3800 #define RZ_TILEGX_IMM16_X0_HW2_LAST_PCREL 62
3801 #define RZ_TILEGX_IMM16_X1_HW2_LAST_PCREL 63
3802 #define RZ_TILEGX_IMM16_X0_HW0_GOT 64
3803 #define RZ_TILEGX_IMM16_X1_HW0_GOT 65
3804 #define RZ_TILEGX_IMM16_X0_HW0_PLT_PCREL 66
3805 #define RZ_TILEGX_IMM16_X1_HW0_PLT_PCREL 67
3806 #define RZ_TILEGX_IMM16_X0_HW1_PLT_PCREL 68
3807 #define RZ_TILEGX_IMM16_X1_HW1_PLT_PCREL 69
3808 #define RZ_TILEGX_IMM16_X0_HW2_PLT_PCREL 70
3809 #define RZ_TILEGX_IMM16_X1_HW2_PLT_PCREL 71
3810 #define RZ_TILEGX_IMM16_X0_HW0_LAST_GOT 72
3811 #define RZ_TILEGX_IMM16_X1_HW0_LAST_GOT 73
3812 #define RZ_TILEGX_IMM16_X0_HW1_LAST_GOT 74
3813 #define RZ_TILEGX_IMM16_X1_HW1_LAST_GOT 75
3814 #define RZ_TILEGX_IMM16_X0_HW3_PLT_PCREL 76
3815 #define RZ_TILEGX_IMM16_X1_HW3_PLT_PCREL 77
3816 #define RZ_TILEGX_IMM16_X0_HW0_TLS_GD 78
3817 #define RZ_TILEGX_IMM16_X1_HW0_TLS_GD 79
3818 #define RZ_TILEGX_IMM16_X0_HW0_TLS_LE 80
3819 #define RZ_TILEGX_IMM16_X1_HW0_TLS_LE 81
3820 #define RZ_TILEGX_IMM16_X0_HW0_LAST_TLS_LE 82
3821 #define RZ_TILEGX_IMM16_X1_HW0_LAST_TLS_LE 83
3822 #define RZ_TILEGX_IMM16_X0_HW1_LAST_TLS_LE 84
3823 #define RZ_TILEGX_IMM16_X1_HW1_LAST_TLS_LE 85
3824 #define RZ_TILEGX_IMM16_X0_HW0_LAST_TLS_GD 86
3825 #define RZ_TILEGX_IMM16_X1_HW0_LAST_TLS_GD 87
3826 #define RZ_TILEGX_IMM16_X0_HW1_LAST_TLS_GD 88
3827 #define RZ_TILEGX_IMM16_X1_HW1_LAST_TLS_GD 89
3829 #define RZ_TILEGX_IMM16_X0_HW0_TLS_IE 92
3830 #define RZ_TILEGX_IMM16_X1_HW0_TLS_IE 93
3831 #define RZ_TILEGX_IMM16_X0_HW0_LAST_PLT_PCREL 94
3832 #define RZ_TILEGX_IMM16_X1_HW0_LAST_PLT_PCREL 95
3833 #define RZ_TILEGX_IMM16_X0_HW1_LAST_PLT_PCREL 96
3834 #define RZ_TILEGX_IMM16_X1_HW1_LAST_PLT_PCREL 97
3835 #define RZ_TILEGX_IMM16_X0_HW2_LAST_PLT_PCREL 98
3836 #define RZ_TILEGX_IMM16_X1_HW2_LAST_PLT_PCREL 99
3837 #define RZ_TILEGX_IMM16_X0_HW0_LAST_TLS_IE 100
3838 #define RZ_TILEGX_IMM16_X1_HW0_LAST_TLS_IE 101
3839 #define RZ_TILEGX_IMM16_X0_HW1_LAST_TLS_IE 102
3840 #define RZ_TILEGX_IMM16_X1_HW1_LAST_TLS_IE 103
3842 #define RZ_TILEGX_TLS_DTPMOD64 106
3843 #define RZ_TILEGX_TLS_DTPOFF64 107
3844 #define RZ_TILEGX_TLS_TPOFF64 108
3845 #define RZ_TILEGX_TLS_DTPMOD32 109
3846 #define RZ_TILEGX_TLS_DTPOFF32 110
3847 #define RZ_TILEGX_TLS_TPOFF32 111
3848 #define RZ_TILEGX_TLS_GD_CALL 112
3849 #define RZ_TILEGX_IMM8_X0_TLS_GD_ADD 113
3850 #define RZ_TILEGX_IMM8_X1_TLS_GD_ADD 114
3851 #define RZ_TILEGX_IMM8_Y0_TLS_GD_ADD 115
3852 #define RZ_TILEGX_IMM8_Y1_TLS_GD_ADD 116
3853 #define RZ_TILEGX_TLS_IE_LOAD 117
3854 #define RZ_TILEGX_IMM8_X0_TLS_ADD 118
3855 #define RZ_TILEGX_IMM8_X1_TLS_ADD 119
3856 #define RZ_TILEGX_IMM8_Y0_TLS_ADD 120
3857 #define RZ_TILEGX_IMM8_Y1_TLS_ADD 121
3859 #define RZ_TILEGX_GNU_VTINHERIT 128
3860 #define RZ_TILEGX_GNU_VTENTRY 129
3862 #define RZ_TILEGX_NUM 130
3865 #define EF_RISCV_RVC 0x0001
3866 #define EF_RISCV_FLOAT_ABI 0x0006
3867 #define EF_RISCV_FLOAT_ABI_SOFT 0x0000
3868 #define EF_RISCV_FLOAT_ABI_SINGLE 0x0002
3869 #define EF_RISCV_FLOAT_ABI_DOUBLE 0x0004
3870 #define EF_RISCV_FLOAT_ABI_QUAD 0x0006
3873 #define RZ_RISCV_NONE 0
3874 #define RZ_RISCV_32 1
3875 #define RZ_RISCV_64 2
3876 #define RZ_RISCV_RELATIVE 3
3877 #define RZ_RISCV_COPY 4
3878 #define RZ_RISCV_JUMP_SLOT 5
3879 #define RZ_RISCV_TLS_DTPMOD32 6
3880 #define RZ_RISCV_TLS_DTPMOD64 7
3881 #define RZ_RISCV_TLS_DTPREL32 8
3882 #define RZ_RISCV_TLS_DTPREL64 9
3883 #define RZ_RISCV_TLS_TPREL32 10
3884 #define RZ_RISCV_TLS_TPREL64 11
3885 #define RZ_RISCV_BRANCH 16
3886 #define RZ_RISCV_JAL 17
3887 #define RZ_RISCV_CALL 18
3888 #define RZ_RISCV_CALL_PLT 19
3889 #define RZ_RISCV_GOT_HI20 20
3890 #define RZ_RISCV_TLS_GOT_HI20 21
3891 #define RZ_RISCV_TLS_GD_HI20 22
3892 #define RZ_RISCV_PCREL_HI20 23
3893 #define RZ_RISCV_PCREL_LO12_I 24
3894 #define RZ_RISCV_PCREL_LO12_S 25
3895 #define RZ_RISCV_HI20 26
3896 #define RZ_RISCV_LO12_I 27
3897 #define RZ_RISCV_LO12_S 28
3898 #define RZ_RISCV_TPREL_HI20 29
3899 #define RZ_RISCV_TPREL_LO12_I 30
3900 #define RZ_RISCV_TPREL_LO12_S 31
3901 #define RZ_RISCV_TPREL_ADD 32
3902 #define RZ_RISCV_ADD8 33
3903 #define RZ_RISCV_ADD16 34
3904 #define RZ_RISCV_ADD32 35
3905 #define RZ_RISCV_ADD64 36
3906 #define RZ_RISCV_SUB8 37
3907 #define RZ_RISCV_SUB16 38
3908 #define RZ_RISCV_SUB32 39
3909 #define RZ_RISCV_SUB64 40
3910 #define RZ_RISCV_GNU_VTINHERIT 41
3911 #define RZ_RISCV_GNU_VTENTRY 42
3912 #define RZ_RISCV_ALIGN 43
3913 #define RZ_RISCV_RVC_BRANCH 44
3914 #define RZ_RISCV_RVC_JUMP 45
3915 #define RZ_RISCV_RVC_LUI 46
3916 #define RZ_RISCV_GPREL_I 47
3917 #define RZ_RISCV_GPREL_S 48
3918 #define RZ_RISCV_TPREL_I 49
3919 #define RZ_RISCV_TPREL_S 50
3920 #define RZ_RISCV_RELAX 51
3921 #define RZ_RISCV_SUB6 52
3922 #define RZ_RISCV_SET6 53
3923 #define RZ_RISCV_SET8 54
3924 #define RZ_RISCV_SET16 55
3925 #define RZ_RISCV_SET32 56
3926 #define RZ_RISCV_32_PCREL 57
3927 #define RZ_RISCV_IRELATIVE 58
3929 #define RZ_RISCV_NUM 59
3933 #define RZ_BPF_NONE 0
3934 #define RZ_BPF_64_64 1
3935 #define RZ_BPF_64_32 10
3939 #define RZ_METAG_HIADDR16 0
3940 #define RZ_METAG_LOADDR16 1
3941 #define RZ_METAG_ADDR32 2
3942 #define RZ_METAG_NONE 3
3943 #define RZ_METAG_RELBRANCH 4
3944 #define RZ_METAG_GETSETOFF 5
3947 #define RZ_METAG_REG32OP1 6
3948 #define RZ_METAG_REG32OP2 7
3949 #define RZ_METAG_REG32OP3 8
3950 #define RZ_METAG_REG16OP1 9
3951 #define RZ_METAG_REG16OP2 10
3952 #define RZ_METAG_REG16OP3 11
3953 #define RZ_METAG_REG32OP4 12
3955 #define RZ_METAG_HIOG 13
3956 #define RZ_METAG_LOOG 14
3958 #define RZ_METAG_REL8 15
3959 #define RZ_METAG_REL16 16
3962 #define RZ_METAG_GNU_VTINHERIT 30
3963 #define RZ_METAG_GNU_VTENTRY 31
3966 #define RZ_METAG_HI16_GOTOFF 32
3967 #define RZ_METAG_LO16_GOTOFF 33
3968 #define RZ_METAG_GETSET_GOTOFF 34
3969 #define RZ_METAG_GETSET_GOT 35
3970 #define RZ_METAG_HI16_GOTPC 36
3971 #define RZ_METAG_LO16_GOTPC 37
3972 #define RZ_METAG_HI16_PLT 38
3973 #define RZ_METAG_LO16_PLT 39
3974 #define RZ_METAG_RELBRANCH_PLT 40
3975 #define RZ_METAG_GOTOFF 41
3976 #define RZ_METAG_PLT 42
3977 #define RZ_METAG_COPY 43
3978 #define RZ_METAG_JMP_SLOT 44
3979 #define RZ_METAG_RELATIVE 45
3980 #define RZ_METAG_GLOB_DAT 46
3983 #define RZ_METAG_TLS_GD 47
3984 #define RZ_METAG_TLS_LDM 48
3985 #define RZ_METAG_TLS_LDO_HI16 49
3986 #define RZ_METAG_TLS_LDO_LO16 50
3987 #define RZ_METAG_TLS_LDO 51
3988 #define RZ_METAG_TLS_IE 52
3989 #define RZ_METAG_TLS_IENONPIC 53
3990 #define RZ_METAG_TLS_IENONPIC_HI16 54
3991 #define RZ_METAG_TLS_IENONPIC_LO16 55
3992 #define RZ_METAG_TLS_TPOFF 56
3993 #define RZ_METAG_TLS_DTPMOD 57
3994 #define RZ_METAG_TLS_DTPOFF 58
3995 #define RZ_METAG_TLS_LE 59
3996 #define RZ_METAG_TLS_LE_HI16 60
3997 #define RZ_METAG_TLS_LE_LO16 61
4000 #define RZ_NDS32_NONE 0
4001 #define RZ_NDS32_32_RELA 20
4002 #define RZ_NDS32_COPY 39
4003 #define RZ_NDS32_GLOB_DAT 40
4004 #define RZ_NDS32_JMP_SLOT 41
4005 #define RZ_NDS32_RELATIVE 42
4006 #define RZ_NDS32_TLS_TPOFF 102
4007 #define RZ_NDS32_TLS_DESC 119
4010 #define RZ_ARC_NONE 0x0
4011 #define RZ_ARC_8 0x1
4012 #define RZ_ARC_16 0x2
4013 #define RZ_ARC_24 0x3
4014 #define RZ_ARC_32 0x4
4015 #define RZ_ARC_B26 0x5
4016 #define RZ_ARC_B22_PCREL 0x6
4017 #define RZ_ARC_H30 0x7
4018 #define RZ_ARC_N8 0x8
4019 #define RZ_ARC_N16 0x9
4020 #define RZ_ARC_N24 0xA
4021 #define RZ_ARC_N32 0xB
4022 #define RZ_ARC_SDA 0xC
4023 #define RZ_ARC_SECTOFF 0xD
4024 #define RZ_ARC_S21H_PCREL 0xE
4025 #define RZ_ARC_S21W_PCREL 0xF
4026 #define RZ_ARC_S25H_PCREL 0x10
4027 #define RZ_ARC_S25W_PCREL 0x11
4028 #define RZ_ARC_SDA32 0x12
4029 #define RZ_ARC_SDA_LDST 0x13
4030 #define RZ_ARC_SDA_LDST1 0x14
4031 #define RZ_ARC_SDA_LDST2 0x15
4032 #define RZ_ARC_SDA16_LD 0x16
4033 #define RZ_ARC_SDA16_LD1 0x17
4034 #define RZ_ARC_SDA16_LD2 0x18
4035 #define RZ_ARC_S13_PCREL 0x19
4036 #define RZ_ARC_W 0x1A
4037 #define RZ_ARC_32_ME 0x1B
4038 #define RZ_ARC_N32_ME 0x1C
4039 #define RZ_ARC_SECTOFF_ME 0x1D
4040 #define RZ_ARC_SDA32_ME 0x1E
4041 #define RZ_ARC_W_ME 0x1F
4042 #define RZ_ARC_H30_ME 0x20
4043 #define RZ_ARC_SECTOFF_U8 0x21
4044 #define RZ_ARC_SECTOFF_S9 0x22
4045 #define RZ_AC_SECTOFF_U8 0x23
4046 #define RZ_AC_SECTOFF_U8_1 0x24
4047 #define RZ_AC_SECTOFF_U8_2 0x25
4048 #define RZ_AC_SECTOFF_S9 0x26
4049 #define RZ_AC_SECTOFF_S9_1 0x27
4050 #define RZ_AC_SECTOFF_S9_2 0x28
4051 #define RZ_ARC_SECTOFF_ME_1 0x29
4052 #define RZ_ARC_SECTOFF_ME_2 0x2A
4053 #define RZ_ARC_SECTOFF_1 0x2B
4054 #define RZ_ARC_SECTOFF_2 0x2C
4055 #define RZ_ARC_PC32 0x32
4056 #define RZ_ARC_GOTPC32 0x33
4057 #define RZ_ARC_PLT32 0x34
4058 #define RZ_ARC_COPY 0x35
4059 #define RZ_ARC_GLOB_DAT 0x36
4060 #define RZ_ARC_JUMP_SLOT 0x37
4061 #define RZ_ARC_RELATIVE 0x38
4062 #define RZ_ARC_GOTOFF 0x39
4063 #define RZ_ARC_GOTPC 0x3A
4064 #define RZ_ARC_GOT32 0x3B
4066 #define RZ_ARC_TLS_DTPMOD 0x42
4067 #define RZ_ARC_TLS_DTPOFF 0x43
4068 #define RZ_ARC_TLS_TPOFF 0x44
4069 #define RZ_ARC_TLS_GD_GOT 0x45
4070 #define RZ_ARC_TLS_GD_LD 0x46
4071 #define RZ_ARC_TLS_GD_CALL 0x47
4072 #define RZ_ARC_TLS_IE_GOT 0x48
4073 #define RZ_ARC_TLS_DTPOFF_S9 0x4a
4074 #define RZ_ARC_TLS_LE_S9 0x4a
4075 #define RZ_ARC_TLS_LE_32 0x4b
4080 #define ET_HEXAGON_IR 0xff00
4084 #define EF_HEXAGON_MACH_V2 0x1
4085 #define EF_HEXAGON_MACH_V3 0x2
4086 #define EF_HEXAGON_MACH_V4 0x3
4087 #define EF_HEXAGON_MACH_V5 0x4
4088 #define EF_HEXAGON_MACH_V55 0x5
4089 #define EF_HEXAGON_MACH_V60 0x60
4090 #define EF_HEXAGON_MACH_V61 0x61
4091 #define EF_HEXAGON_MACH_V62 0x62
4092 #define EF_HEXAGON_MACH_V65 0x65
4093 #define EF_HEXAGON_MACH_V66 0x66
4094 #define EF_HEXAGON_MACH_V67 0x67
4095 #define EF_HEXAGON_MACH_V67T 0x8067
4096 #define EF_HEXAGON_MACH_V68 = 0x68
4099 #define EF_HEXAGON_ISA_MACH 0x0
4100 #define EF_HEXAGON_ISA_V2 0x10
4101 #define EF_HEXAGON_ISA_V3 0x20
4102 #define EF_HEXAGON_ISA_V4 0x30
4103 #define EF_HEXAGON_ISA_V5 0x40
4104 #define EF_HEXAGON_ISA_V55 0x50
4105 #define EF_HEXAGON_ISA_V60 0x60
4106 #define EF_HEXAGON_ISA_V62 0x62
4107 #define EF_HEXAGON_ISA_V65 0x65
4108 #define EF_HEXAGON_ISA_V66 0x66
4109 #define EF_HEXAGON_ISA_V67 0x67
4110 #define EF_HEXAGON_ISA_V68 0x68
4113 #define SHN_HEXAGON_SCOMMON 0xff00
4114 #define SHN_HEXAGON_SCOMMON_1 0xff01
4115 #define SHN_HEXAGON_SCOMMON_2 0xff02
4116 #define SHN_HEXAGON_SCOMMON_4 0xff03
4117 #define SHN_HEXAGON_SCOMMON_8 0xff04
4120 #define SHF_HEXAGON_GPREL 0x10000000
4123 #define SHT_HEX_ORDERED 0x70000000
4127 #define R_HEX_NONE 0
4128 #define R_HEX_B22_PCREL 1
4129 #define R_HEX_B15_PCREL 2
4130 #define R_HEX_B7_PCREL 3
4131 #define R_HEX_LO16 4
4132 #define R_HEX_HI16 5
4136 #define R_HEX_GPREL16_0 9
4137 #define R_HEX_GPREL16_1 10
4138 #define R_HEX_GPREL16_2 11
4139 #define R_HEX_GPREL16_3 12
4140 #define R_HEX_HL16 13
4141 #define R_HEX_B13_PCREL 14
4142 #define R_HEX_B9_PCREL 15
4143 #define R_HEX_B32_PCREL_X 16
4144 #define R_HEX_32_6_X 17
4145 #define R_HEX_B22_PCREL_X 18
4146 #define R_HEX_B15_PCREL_X 19
4147 #define R_HEX_B13_PCREL_X 20
4148 #define R_HEX_B9_PCREL_X 21
4149 #define R_HEX_B7_PCREL_X 22
4150 #define R_HEX_16_X 23
4151 #define R_HEX_12_X 24
4152 #define R_HEX_11_X 25
4153 #define R_HEX_10_X 26
4154 #define R_HEX_9_X 27
4155 #define R_HEX_8_X 28
4156 #define R_HEX_7_X 29
4157 #define R_HEX_6_X 30
4158 #define R_HEX_32_PCREL 31
4159 #define R_HEX_COPY 32
4160 #define R_HEX_GLOB_DAT 33
4161 #define R_HEX_JMP_SLOT 34
4162 #define R_HEX_RELATIVE 35
4163 #define R_HEX_PLT_B22_PCREL 36
4164 #define R_HEX_GOTREL_LO16 37
4165 #define R_HEX_GOTREL_HI16 38
4166 #define R_HEX_GOTREL_32 39
4167 #define R_HEX_GOT_LO16 40
4168 #define R_HEX_GOT_HI16 41
4169 #define R_HEX_GOT_32 42
4170 #define R_HEX_GOT_16 43
4171 #define R_HEX_DTPMOD_32 44
4172 #define R_HEX_DTPREL_LO16 45
4173 #define R_HEX_DTPREL_HI16 46
4174 #define R_HEX_DTPREL_32 47
4175 #define R_HEX_DTPREL_16 48
4176 #define R_HEX_GD_PLT_B22_PCREL 49
4177 #define R_HEX_GD_GOT_LO16 50
4178 #define R_HEX_GD_GOT_HI16 51
4179 #define R_HEX_GD_GOT_32 52
4180 #define R_HEX_GD_GOT_16 53
4181 #define R_HEX_IE_LO16 54
4182 #define R_HEX_IE_HI16 55
4183 #define R_HEX_IE_32 56
4184 #define R_HEX_IE_GOT_LO16 57
4185 #define R_HEX_IE_GOT_HI16 58
4186 #define R_HEX_IE_GOT_32 59
4187 #define R_HEX_IE_GOT_16 60
4188 #define R_HEX_TPREL_LO16 61
4189 #define R_HEX_TPREL_HI16 62
4190 #define R_HEX_TPREL_32 63
4191 #define R_HEX_TPREL_16 64
4192 #define R_HEX_6_PCREL_X 65
4193 #define R_HEX_GOTREL_32_6_X 66
4194 #define R_HEX_GOTREL_16_X 67
4195 #define R_HEX_GOTREL_11_X 68
4196 #define R_HEX_GOT_32_6_X 69
4197 #define R_HEX_GOT_16_X 70
4198 #define R_HEX_GOT_11_X 71
4199 #define R_HEX_DTPREL_32_6_X 72
4200 #define R_HEX_DTPREL_16_X 73
4201 #define R_HEX_DTPREL_11_X 74
4202 #define R_HEX_GD_GOT_32_6_X 75
4203 #define R_HEX_GD_GOT_16_X 76
4204 #define R_HEX_GD_GOT_11_X 77
4205 #define R_HEX_IE_32_6_X 78
4206 #define R_HEX_IE_16_X 79
4207 #define R_HEX_IE_GOT_32_6_X 80
4208 #define R_HEX_IE_GOT_16_X 81
4209 #define R_HEX_IE_GOT_11_X 82
4210 #define R_HEX_TPREL_32_6_X 83
4211 #define R_HEX_TPREL_16_X 84
4212 #define R_HEX_TPREL_11_X 85
4213 #define R_HEX_LD_PLT_B22_PCREL 86
4214 #define R_HEX_LD_GOT_LO16 87
4215 #define R_HEX_LD_GOT_HI16 88
4216 #define R_HEX_LD_GOT_32 89
4217 #define R_HEX_LD_GOT_16 90
4218 #define R_HEX_LD_GOT_32_6_X 91
4219 #define R_HEX_LD_GOT_16_X 92
4220 #define R_HEX_LD_GOT_11_X 93
4221 #define R_HEX_23_REG 94
4222 #define R_HEX_GD_PLT_B22_PCREL_X 95
4223 #define R_HEX_GD_PLT_B32_PCREL_X 96
4224 #define R_HEX_LD_PLT_B22_PCREL_X 97
4225 #define R_HEX_LD_PLT_B32_PCREL_X 98
4226 #define R_HEX_27_REG 99
4228 #define R_HEX_BITMASK_WORD8 0xff
4229 #define R_HEX_BITMASK_WORD16 0xffff
4230 #define R_HEX_BITMASK_WORD32 0xffffffff
4231 #define R_HEX_BITMASK_WORD32_LO 0x00c03fff
4232 #define R_HEX_BITMASK_WORD32_HL 0x00c03fff
4233 #define R_HEX_BITMASK_WORD32_B7 0x00001f18
4234 #define R_HEX_BITMASK_WORD32_B9 0x003000fe
4235 #define R_HEX_BITMASK_WORD32_B13 0x00202ffe
4236 #define R_HEX_BITMASK_WORD32_B15 0x00df20fe
4237 #define R_HEX_BITMASK_WORD32_B22 0x01ff3ffe
4238 #define R_HEX_BITMASK_WORD32_M21 0x0fff3fe0
4239 #define R_HEX_BITMASK_WORD32_M25 0x0fff3fef
4240 #define R_HEX_BITMASK_WORD32_R6 0x000007e0
4241 #define R_HEX_BITMASK_WORD32_X26 0x0fff3fff
4245 #define DT_HEXAGON_SYMSZ 0x70000000
4246 #define DT_HEXAGON_VER 0x70000001
4247 #define DT_HEXAGON_PLT 0x70000002
RzBinInfo * info(RzBinFile *bf)
@ Val_GNU_MIPS_ABI_FP_SINGLE
@ Val_GNU_MIPS_ABI_FP_MAX
@ Val_GNU_MIPS_ABI_FP_SOFT
@ Val_GNU_MIPS_ABI_FP_64A
@ Val_GNU_MIPS_ABI_FP_OLD_64
@ Val_GNU_MIPS_ABI_FP_DOUBLE
@ Val_GNU_MIPS_ABI_FP_ANY
Elf32_Addr Elf32_Conflict
__BEGIN_DECLS typedef uint16_t Elf32_Half