Rizin
unix-like reverse engineering framework and cli tools
|
#include <stdint.h>
Go to the source code of this file.
Classes | |
struct | Elf32_Ehdr |
struct | Elf64_Ehdr |
struct | Elf32_Shdr |
struct | Elf64_Shdr |
struct | Elf32_Chdr |
struct | Elf64_Chdr |
struct | Elf32_Sym |
struct | Elf64_Sym |
struct | Elf32_Syminfo |
struct | Elf64_Syminfo |
struct | Elf32_Rel |
struct | Elf64_Rel |
struct | Elf32_Rela |
struct | Elf64_Rela |
struct | Elf32_Phdr |
struct | Elf64_Phdr |
struct | Elf32_Dyn |
struct | Elf64_Dyn |
struct | Elf32_Verdef |
struct | Elf64_Verdef |
struct | Elf32_Verdaux |
struct | Elf64_Verdaux |
struct | Elf32_Verneed |
struct | Elf64_Verneed |
struct | Elf32_Vernaux |
struct | Elf64_Vernaux |
struct | Elf32_auxv_t |
struct | Elf64_auxv_t |
struct | Elf32_Nhdr |
struct | Elf64_Nhdr |
struct | Elf32_Move |
struct | Elf64_Move |
union | Elf32_gptab |
struct | Elf32_RegInfo |
struct | Elf_Options |
struct | Elf_Options_Hw |
struct | Elf32_Lib |
struct | Elf64_Lib |
struct | Elf_MIPS_ABIFlags_v0 |
Macros | |
#define | EI_NIDENT (16) |
#define | EI_MAG0 0 /* File identification byte 0 index */ |
#define | ELFMAG0 0x7f /* Magic number byte 0 */ |
#define | EI_MAG1 1 /* File identification byte 1 index */ |
#define | ELFMAG1 'E' /* Magic number byte 1 */ |
#define | EI_MAG2 2 /* File identification byte 2 index */ |
#define | ELFMAG2 'L' /* Magic number byte 2 */ |
#define | EI_MAG3 3 /* File identification byte 3 index */ |
#define | ELFMAG3 'F' /* Magic number byte 3 */ |
#define | ELFMAG "\177ELF" |
#define | SELFMAG 4 |
#define | EI_CLASS 4 /* File class byte index */ |
#define | ELFCLASSNONE 0 /* Invalid class */ |
#define | ELFCLASS32 1 /* 32-bit objects */ |
#define | ELFCLASS64 2 /* 64-bit objects */ |
#define | ELFCLASSNUM 3 |
#define | EI_DATA 5 /* Data encoding byte index */ |
#define | ELFDATANONE 0 /* Invalid data encoding */ |
#define | ELFDATA2LSB 1 /* 2's complement, little endian */ |
#define | ELFDATA2MSB 2 /* 2's complement, big endian */ |
#define | ELFDATANUM 3 |
#define | EI_VERSION 6 /* File version byte index */ |
#define | EI_OSABI 7 /* OS ABI identification */ |
#define | ELFOSABI_NONE 0 /* UNIX System V ABI */ |
#define | ELFOSABI_SYSV 0 /* Alias. */ |
#define | ELFOSABI_HPUX 1 /* HP-UX */ |
#define | ELFOSABI_NETBSD 2 /* NetBSD. */ |
#define | ELFOSABI_GNU 3 /* Object uses GNU ELF extensions. */ |
#define | ELFOSABI_LINUX ELFOSABI_GNU /* Compatibility alias. */ |
#define | ELFOSABI_SOLARIS 6 /* Sun Solaris. */ |
#define | ELFOSABI_AIX 7 /* IBM AIX. */ |
#define | ELFOSABI_IRIX 8 /* SGI Irix. */ |
#define | ELFOSABI_FREEBSD 9 /* FreeBSD. */ |
#define | ELFOSABI_TRU64 10 /* Compaq TRU64 UNIX. */ |
#define | ELFOSABI_MODESTO 11 /* Novell Modesto. */ |
#define | ELFOSABI_OPENBSD 12 /* OpenBSD. */ |
#define | ELFOSABI_ARM_AEABI 64 /* ARM EABI */ |
#define | ELFOSABI_ARM 97 /* ARM */ |
#define | ELFOSABI_STANDALONE 255 /* Standalone (embedded) application */ |
#define | EI_ABIVERSION 8 /* ABI version */ |
#define | EI_PAD 9 /* Byte index of padding bytes */ |
#define | ET_NONE 0 /* No file type */ |
#define | ET_REL 1 /* Relocatable file */ |
#define | ET_EXEC 2 /* Executable file */ |
#define | ET_DYN 3 /* Shared object file */ |
#define | ET_CORE 4 /* Core file */ |
#define | ET_NUM 5 /* Number of defined types */ |
#define | ET_LOOS 0xfe00 /* OS-specific range start */ |
#define | ET_HIOS 0xfeff /* OS-specific range end */ |
#define | ET_LOPROC 0xff00 /* Processor-specific range start */ |
#define | ET_HIPROC 0xffff /* Processor-specific range end */ |
#define | EM_NONE 0 /* No machine */ |
#define | EM_M32 1 /* AT&T WE 32100 */ |
#define | EM_SPARC 2 /* SUN SPARC */ |
#define | EM_386 3 /* Intel 80386 */ |
#define | EM_68K 4 /* Motorola m68k family */ |
#define | EM_88K 5 /* Motorola m88k family */ |
#define | EM_IAMCU 6 /* Intel MCU */ |
#define | EM_860 7 /* Intel 80860 */ |
#define | EM_MIPS 8 /* MIPS R3000 big-endian */ |
#define | EM_S370 9 /* IBM System/370 */ |
#define | EM_MIPS_RS3_LE 10 /* MIPS R3000 little-endian */ |
#define | EM_PARISC 15 /* HPPA */ |
#define | EM_VPP500 17 /* Fujitsu VPP500 */ |
#define | EM_SPARC32PLUS 18 /* Sun's "v8plus" */ |
#define | EM_960 19 /* Intel 80960 */ |
#define | EM_PPC 20 /* PowerPC */ |
#define | EM_PPC64 21 /* PowerPC 64-bit */ |
#define | EM_S390 22 /* IBM S390 */ |
#define | EM_SPU 23 /* IBM SPU/SPC */ |
#define | EM_V800 36 /* NEC V800 series */ |
#define | EM_FR20 37 /* Fujitsu FR20 */ |
#define | EM_RH32 38 /* TRW RH-32 */ |
#define | EM_RCE 39 /* Motorola RCE */ |
#define | EM_ARM 40 /* ARM */ |
#define | EM_FAKE_ALPHA 41 /* Digital Alpha */ |
#define | EM_SH 42 /* Hitachi SH */ |
#define | EM_SPARCV9 43 /* SPARC v9 64-bit */ |
#define | EM_TRICORE 44 /* Siemens Tricore */ |
#define | EM_ARC 45 /* Argonaut RISC Core */ |
#define | EM_H8_300 46 /* Hitachi H8/300 */ |
#define | EM_H8_300H 47 /* Hitachi H8/300H */ |
#define | EM_H8S 48 /* Hitachi H8S */ |
#define | EM_H8_500 49 /* Hitachi H8/500 */ |
#define | EM_IA_64 50 /* Intel Merced */ |
#define | EM_MIPS_X 51 /* Stanford MIPS-X */ |
#define | EM_COLDFIRE 52 /* Motorola Coldfire */ |
#define | EM_68HC12 53 /* Motorola M68HC12 */ |
#define | EM_MMA 54 /* Fujitsu MMA Multimedia Accelerator */ |
#define | EM_PCP 55 /* Siemens PCP */ |
#define | EM_NCPU 56 /* Sony nCPU embeeded RISC */ |
#define | EM_NDR1 57 /* Denso NDR1 microprocessor */ |
#define | EM_STARCORE 58 /* Motorola Start*Core processor */ |
#define | EM_ME16 59 /* Toyota ME16 processor */ |
#define | EM_ST100 60 /* STMicroelectronic ST100 processor */ |
#define | EM_TINYJ 61 /* Advanced Logic Corp. Tinyj emb.fam */ |
#define | EM_X86_64 62 /* AMD x86-64 architecture */ |
#define | EM_PDSP 63 /* Sony DSP Processor */ |
#define | EM_PDP10 64 /* Digital PDP-10 */ |
#define | EM_PDP11 65 /* Digital PDP-11 */ |
#define | EM_FX66 66 /* Siemens FX66 microcontroller */ |
#define | EM_ST9PLUS 67 /* STMicroelectronics ST9+ 8/16 mc */ |
#define | EM_ST7 68 /* STmicroelectronics ST7 8 bit mc */ |
#define | EM_68HC16 69 /* Motorola MC68HC16 microcontroller */ |
#define | EM_68HC11 70 /* Motorola MC68HC11 microcontroller */ |
#define | EM_68HC08 71 /* Motorola MC68HC08 microcontroller */ |
#define | EM_68HC05 72 /* Motorola MC68HC05 microcontroller */ |
#define | EM_SVX 73 /* Silicon Graphics SVx */ |
#define | EM_ST19 74 /* STMicroelectronics ST19 8 bit mc */ |
#define | EM_VAX 75 /* Digital VAX */ |
#define | EM_CRIS 76 /* Axis Communications 32-bit emb.proc */ |
#define | EM_JAVELIN 77 /* Infineon Technologies 32-bit emb.proc */ |
#define | EM_FIREPATH 78 /* Element 14 64-bit DSP Processor */ |
#define | EM_ZSP 79 /* LSI Logic 16-bit DSP Processor */ |
#define | EM_MMIX 80 /* Donald Knuth's educational 64-bit proc */ |
#define | EM_HUANY 81 /* Harvard University machine-independent object files */ |
#define | EM_PRISM 82 /* SiTera Prism */ |
#define | EM_AVR 83 /* Atmel AVR 8-bit microcontroller */ |
#define | EM_FR30 84 /* Fujitsu FR30 */ |
#define | EM_D10V 85 /* Mitsubishi D10V */ |
#define | EM_D30V 86 /* Mitsubishi D30V */ |
#define | EM_V850 87 /* NEC v850 */ |
#define | EM_M32R 88 /* Mitsubishi M32R */ |
#define | EM_MN10300 89 /* Matsushita MN10300 */ |
#define | EM_MN10200 90 /* Matsushita MN10200 */ |
#define | EM_PJ 91 /* picoJava */ |
#define | EM_OPENRISC 92 /* OpenRISC 32-bit embedded processor */ |
#define | EM_ARC_COMPACT 93 /* ARC International ARCompact */ |
#define | EM_XTENSA 94 /* Tensilica Xtensa Architecture */ |
#define | EM_VIDEOCORE 95 /* Alphamosaic VideoCore */ |
#define | EM_TMM_GPP 96 /* Thompson Multimedia General Purpose Proc */ |
#define | EM_NS32K 97 /* National Semi. 32000 */ |
#define | EM_TPC 98 /* Tenor Network TPC */ |
#define | EM_SNP1K 99 /* Trebia SNP 1000 */ |
#define | EM_ST200 100 /* STMicroelectronics ST200 */ |
#define | EM_IP2K 101 /* Ubicom IP2xxx */ |
#define | EM_MAX 102 /* MAX processor */ |
#define | EM_CR 103 /* National Semi. CompactRISC */ |
#define | EM_F2MC16 104 /* Fujitsu F2MC16 */ |
#define | EM_MSP430 105 /* Texas Instruments msp430 */ |
#define | EM_BLACKFIN 106 /* Analog Devices Blackfin DSP */ |
#define | EM_SE_C33 107 /* Seiko Epson S1C33 family */ |
#define | EM_SEP 108 /* Sharp embedded microprocessor */ |
#define | EM_ARCA 109 /* Arca RISC */ |
#define | EM_UNICORE 110 /* PKU-Unity & MPRC Peking Uni. mc series */ |
#define | EM_EXCESS 111 /* eXcess configurable cpu */ |
#define | EM_DXP 112 /* Icera Semi. Deep Execution Processor */ |
#define | EM_ALTERA_NIOS2 113 /* Altera Nios II */ |
#define | EM_CRX 114 /* National Semi. CompactRISC CRX */ |
#define | EM_XGATE 115 /* Motorola XGATE */ |
#define | EM_C166 116 /* Infineon C16x/XC16x */ |
#define | EM_M16C 117 /* Renesas M16C */ |
#define | EM_DSPIC30F 118 /* Microchip Technology dsPIC30F */ |
#define | EM_CE 119 /* Freescale Communication Engine RISC */ |
#define | EM_M32C 120 /* Renesas M32C */ |
#define | EM_TSK3000 131 /* Altium TSK3000 */ |
#define | EM_RS08 132 /* Freescale RS08 */ |
#define | EM_SHARC 133 /* Analog Devices SHARC family */ |
#define | EM_ECOG2 134 /* Cyan Technology eCOG2 */ |
#define | EM_SCORE7 135 /* Sunplus S+core7 RISC */ |
#define | EM_DSP24 136 /* New Japan Radio (NJR) 24-bit DSP */ |
#define | EM_VIDEOCORE3 137 /* Broadcom VideoCore III */ |
#define | EM_LATTICEMICO32 138 /* RISC for Lattice FPGA */ |
#define | EM_SE_C17 139 /* Seiko Epson C17 */ |
#define | EM_TI_C6000 140 /* Texas Instruments TMS320C6000 DSP */ |
#define | EM_TI_C2000 141 /* Texas Instruments TMS320C2000 DSP */ |
#define | EM_TI_C5500 142 /* Texas Instruments TMS320C55x DSP */ |
#define | EM_TI_ARP32 143 /* Texas Instruments App. Specific RISC */ |
#define | EM_TI_PRU 144 /* Texas Instruments Prog. Realtime Unit */ |
#define | EM_MMDSP_PLUS 160 /* STMicroelectronics 64bit VLIW DSP */ |
#define | EM_CYPRESS_M8C 161 /* Cypress M8C */ |
#define | EM_R32C 162 /* Renesas R32C */ |
#define | EM_TRIMEDIA 163 /* NXP Semi. TriMedia */ |
#define | EM_QDSP6 164 /* QUALCOMM DSP6 */ |
#define | EM_8051 165 /* Intel 8051 and variants */ |
#define | EM_STXP7X 166 /* STMicroelectronics STxP7x */ |
#define | EM_NDS32 167 /* Andes Tech. compact code emb. RISC */ |
#define | EM_ECOG1X 168 /* Cyan Technology eCOG1X */ |
#define | EM_MAXQ30 169 /* Dallas Semi. MAXQ30 mc */ |
#define | EM_XIMO16 170 /* New Japan Radio (NJR) 16-bit DSP */ |
#define | EM_MANIK 171 /* M2000 Reconfigurable RISC */ |
#define | EM_CRAYNV2 172 /* Cray NV2 vector architecture */ |
#define | EM_RX 173 /* Renesas RX */ |
#define | EM_METAG 174 /* Imagination Tech. META */ |
#define | EM_MCST_ELBRUS 175 /* MCST Elbrus */ |
#define | EM_ECOG16 176 /* Cyan Technology eCOG16 */ |
#define | EM_CR16 177 /* National Semi. CompactRISC CR16 */ |
#define | EM_ETPU 178 /* Freescale Extended Time Processing Unit */ |
#define | EM_SLE9X 179 /* Infineon Tech. SLE9X */ |
#define | EM_L10M 180 /* Intel L10M */ |
#define | EM_K10M 181 /* Intel K10M */ |
#define | EM_AARCH64 183 /* ARM AARCH64 */ |
#define | EM_AVR32 185 /* Amtel 32-bit microprocessor */ |
#define | EM_STM8 186 /* STMicroelectronics STM8 */ |
#define | EM_TILE64 187 /* Tileta TILE64 */ |
#define | EM_TILEPRO 188 /* Tilera TILEPro */ |
#define | EM_MICROBLAZE 189 /* Xilinx MicroBlaze */ |
#define | EM_CUDA 190 /* NVIDIA CUDA */ |
#define | EM_TILEGX 191 /* Tilera TILE-Gx */ |
#define | EM_CLOUDSHIELD 192 /* CloudShield */ |
#define | EM_COREA_1ST 193 /* KIPO-KAIST Core-A 1st gen. */ |
#define | EM_COREA_2ND 194 /* KIPO-KAIST Core-A 2nd gen. */ |
#define | EM_ARCV2 195 /* Synopsys ARCv2 ISA. */ |
#define | EM_OPEN8 196 /* Open8 RISC */ |
#define | EM_RL78 197 /* Renesas RL78 */ |
#define | EM_VIDEOCORE5 198 /* Broadcom VideoCore V */ |
#define | EM_78KOR 199 /* Renesas 78KOR */ |
#define | EM_56800EX 200 /* Freescale 56800EX DSC */ |
#define | EM_BA1 201 /* Beyond BA1 */ |
#define | EM_BA2 202 /* Beyond BA2 */ |
#define | EM_XCORE 203 /* XMOS xCORE */ |
#define | EM_MCHP_PIC 204 /* Microchip 8-bit PIC(r) */ |
#define | EM_KM32 210 /* KM211 KM32 */ |
#define | EM_KMX32 211 /* KM211 KMX32 */ |
#define | EM_EMX16 212 /* KM211 KMX16 */ |
#define | EM_EMX8 213 /* KM211 KMX8 */ |
#define | EM_KVARC 214 /* KM211 KVARC */ |
#define | EM_CDP 215 /* Paneve CDP */ |
#define | EM_COGE 216 /* Cognitive Smart Memory Processor */ |
#define | EM_COOL 217 /* Bluechip CoolEngine */ |
#define | EM_NORC 218 /* Nanoradio Optimized RISC */ |
#define | EM_CSR_KALIMBA 219 /* CSR Kalimba */ |
#define | EM_Z80 220 /* Zilog Z80 */ |
#define | EM_VISIUM 221 /* Controls and Data Services VISIUMcore */ |
#define | EM_FT32 222 /* FTDI Chip FT32 */ |
#define | EM_MOXIE 223 /* Moxie processor */ |
#define | EM_AMDGPU 224 /* AMD GPU */ |
#define | EM_RISCV 243 /* RISC-V */ |
#define | EM_BPF 247 /* Linux BPF -- in-kernel virtual machine */ |
#define | EM_CSKY 252 /* C-SKY */ |
#define | EM_NUM 253 |
#define | EM_ARC_A5 EM_ARC_COMPACT |
#define | EM_ALPHA 0x9026 |
#define | EV_NONE 0 /* Invalid ELF version */ |
#define | EV_CURRENT 1 /* Current version */ |
#define | EV_NUM 2 |
#define | SHN_UNDEF 0 /* Undefined section */ |
#define | SHN_LORESERVE 0xff00 /* Start of reserved indices */ |
#define | SHN_LOPROC 0xff00 /* Start of processor-specific */ |
#define | SHN_BEFORE |
#define | SHN_AFTER |
#define | SHN_HIPROC 0xff1f /* End of processor-specific */ |
#define | SHN_LOOS 0xff20 /* Start of OS-specific */ |
#define | SHN_HIOS 0xff3f /* End of OS-specific */ |
#define | SHN_ABS 0xfff1 /* Associated symbol is absolute */ |
#define | SHN_COMMON 0xfff2 /* Associated symbol is common */ |
#define | SHN_XINDEX 0xffff /* Index is in extra table. */ |
#define | SHN_HIRESERVE 0xffff /* End of reserved indices */ |
#define | SHT_NULL 0 /* Section header table entry unused */ |
#define | SHT_PROGBITS 1 /* Program data */ |
#define | SHT_SYMTAB 2 /* Symbol table */ |
#define | SHT_STRTAB 3 /* String table */ |
#define | SHT_RELA 4 /* Relocation entries with addends */ |
#define | SHT_HASH 5 /* Symbol hash table */ |
#define | SHT_DYNAMIC 6 /* Dynamic linking information */ |
#define | SHT_NOTE 7 /* Notes */ |
#define | SHT_NOBITS 8 /* Program space with no data (bss) */ |
#define | SHT_REL 9 /* Relocation entries, no addends */ |
#define | SHT_SHLIB 10 /* Reserved */ |
#define | SHT_DYNSYM 11 /* Dynamic linker symbol table */ |
#define | SHT_INIT_ARRAY 14 /* Array of constructors */ |
#define | SHT_FINI_ARRAY 15 /* Array of destructors */ |
#define | SHT_PREINIT_ARRAY 16 /* Array of pre-constructors */ |
#define | SHT_GROUP 17 /* Section group */ |
#define | SHT_SYMTAB_SHNDX 18 /* Extended section indeces */ |
#define | SHT_NUM 19 /* Number of defined types. */ |
#define | SHT_LOOS 0x60000000 /* Start OS-specific. */ |
#define | SHT_GNU_ATTRIBUTES 0x6ffffff5 /* Object attributes. */ |
#define | SHT_GNU_HASH 0x6ffffff6 /* GNU-style hash table. */ |
#define | SHT_GNU_LIBLIST 0x6ffffff7 /* Prelink library list */ |
#define | SHT_CHECKSUM 0x6ffffff8 /* Checksum for DSO content. */ |
#define | SHT_LOSUNW 0x6ffffffa /* Sun-specific low bound. */ |
#define | SHT_SUNW_move 0x6ffffffa |
#define | SHT_SUNW_COMDAT 0x6ffffffb |
#define | SHT_SUNW_syminfo 0x6ffffffc |
#define | SHT_GNU_verdef 0x6ffffffd /* Version definition section. */ |
#define | SHT_GNU_verneed 0x6ffffffe /* Version needs section. */ |
#define | SHT_GNU_versym 0x6fffffff /* Version symbol table. */ |
#define | SHT_HISUNW 0x6fffffff /* Sun-specific high bound. */ |
#define | SHT_HIOS 0x6fffffff /* End OS-specific type */ |
#define | SHT_LOPROC 0x70000000 /* Start of processor-specific */ |
#define | SHT_HIPROC 0x7fffffff /* End of processor-specific */ |
#define | SHT_LOUSER 0x80000000 /* Start of application-specific */ |
#define | SHT_HIUSER 0x8fffffff /* End of application-specific */ |
#define | SHF_WRITE (1 << 0) /* Writable */ |
#define | SHF_ALLOC (1 << 1) /* Occupies memory during execution */ |
#define | SHF_EXECINSTR (1 << 2) /* Executable */ |
#define | SHF_MERGE (1 << 4) /* Might be merged */ |
#define | SHF_STRINGS (1 << 5) /* Contains nul-terminated strings */ |
#define | SHF_INFO_LINK (1 << 6) /* `sh_info' contains SHT index */ |
#define | SHF_LINK_ORDER (1 << 7) /* Preserve order after combining */ |
#define | SHF_OS_NONCONFORMING |
#define | SHF_GROUP (1 << 9) /* Section is member of a group. */ |
#define | SHF_TLS (1 << 10) /* Section hold thread-local data. */ |
#define | SHF_COMPRESSED (1 << 11) /* Section with compressed data. */ |
#define | SHF_MASKOS 0x0ff00000 /* OS-specific. */ |
#define | SHF_MASKPROC 0xf0000000 /* Processor-specific */ |
#define | SHF_ORDERED |
#define | SHF_EXCLUDE |
#define | ELFCOMPRESS_ZLIB 1 /* ZLIB/DEFLATE algorithm. */ |
#define | ELFCOMPRESS_LOOS 0x60000000 /* Start of OS-specific. */ |
#define | ELFCOMPRESS_HIOS 0x6fffffff /* End of OS-specific. */ |
#define | ELFCOMPRESS_LOPROC 0x70000000 /* Start of processor-specific. */ |
#define | ELFCOMPRESS_HIPROC 0x7fffffff /* End of processor-specific. */ |
#define | GRP_COMDAT 0x1 /* Mark group as COMDAT. */ |
#define | SYMINFO_BT_SELF 0xffff /* Symbol bound to self */ |
#define | SYMINFO_BT_PARENT 0xfffe /* Symbol bound to parent */ |
#define | SYMINFO_BT_LOWRESERVE 0xff00 /* Beginning of reserved entries */ |
#define | SYMINFO_FLG_DIRECT 0x0001 /* Direct bound symbol */ |
#define | SYMINFO_FLG_PASSTHRU 0x0002 /* Pass-thru symbol for translator */ |
#define | SYMINFO_FLG_COPY 0x0004 /* Symbol is a copy-reloc */ |
#define | SYMINFO_FLG_LAZYLOAD |
#define | SYMINFO_NONE 0 |
#define | SYMINFO_CURRENT 1 |
#define | SYMINFO_NUM 2 |
#define | ELF32_ST_BIND(val) (((unsigned char)(val)) >> 4) |
#define | ELF32_ST_TYPE(val) ((val)&0xf) |
#define | ELF32_ST_INFO(bind, type) (((bind) << 4) + ((type)&0xf)) |
#define | ELF64_ST_BIND(val) ELF32_ST_BIND(val) |
#define | ELF64_ST_TYPE(val) ELF32_ST_TYPE(val) |
#define | ELF64_ST_INFO(bind, type) ELF32_ST_INFO((bind), (type)) |
#define | STB_LOCAL 0 /* Local symbol */ |
#define | STB_GLOBAL 1 /* Global symbol */ |
#define | STB_WEAK 2 /* Weak symbol */ |
#define | STB_NUM 3 /* Number of defined types. */ |
#define | STB_LOOS 10 /* Start of OS-specific */ |
#define | STB_GNU_UNIQUE 10 /* Unique symbol. */ |
#define | STB_HIOS 12 /* End of OS-specific */ |
#define | STB_LOPROC 13 /* Start of processor-specific */ |
#define | STB_HIPROC 15 /* End of processor-specific */ |
#define | STT_NOTYPE 0 /* Symbol type is unspecified */ |
#define | STT_OBJECT 1 /* Symbol is a data object */ |
#define | STT_FUNC 2 /* Symbol is a code object */ |
#define | STT_SECTION 3 /* Symbol associated with a section */ |
#define | STT_FILE 4 /* Symbol's name is file name */ |
#define | STT_COMMON 5 /* Symbol is a common data object */ |
#define | STT_TLS 6 /* Symbol is thread-local data object*/ |
#define | STT_NUM 7 /* Number of defined types. */ |
#define | STT_LOOS 10 /* Start of OS-specific */ |
#define | STT_GNU_IFUNC 10 /* Symbol is indirect code object */ |
#define | STT_HIOS 12 /* End of OS-specific */ |
#define | STT_LOPROC 13 /* Start of processor-specific */ |
#define | STT_HIPROC 15 /* End of processor-specific */ |
#define | STN_UNDEF 0 /* End of a chain. */ |
#define | ELF32_ST_VISIBILITY(o) ((o)&0x03) |
#define | ELF64_ST_VISIBILITY(o) ELF32_ST_VISIBILITY(o) |
#define | STV_DEFAULT 0 /* Default symbol visibility rules */ |
#define | STV_INTERNAL 1 /* Processor specific hidden class */ |
#define | STV_HIDDEN 2 /* Sym unavailable in other modules */ |
#define | STV_PROTECTED 3 /* Not preemptible, not exported */ |
#define | ELF32_R_SYM(val) ((val) >> 8) |
#define | ELF32_R_TYPE(val) ((val)&0xff) |
#define | ELF32_R_INFO(sym, type) (((sym) << 8) + ((type)&0xff)) |
#define | ELF64_R_SYM(i) ((i) >> 32) |
#define | ELF64_R_TYPE(i) ((i)&0xffffffff) |
#define | ELF64_R_INFO(sym, type) ((((Elf64_Xword)(sym)) << 32) + (type)) |
#define | PN_XNUM 0xffff |
#define | PT_NULL 0 /* Program header table entry unused */ |
#define | PT_LOAD 1 /* Loadable program segment */ |
#define | PT_DYNAMIC 2 /* Dynamic linking information */ |
#define | PT_INTERP 3 /* Program interpreter */ |
#define | PT_NOTE 4 /* Auxiliary information */ |
#define | PT_SHLIB 5 /* Reserved */ |
#define | PT_PHDR 6 /* Entry for header table itself */ |
#define | PT_TLS 7 /* Thread-local storage segment */ |
#define | PT_NUM 8 /* Number of defined types */ |
#define | PT_LOOS 0x60000000 /* Start of OS-specific */ |
#define | PT_GNU_EH_FRAME 0x6474e550 /* GCC .eh_frame_hdr segment */ |
#define | PT_GNU_STACK 0x6474e551 /* Indicates stack executability */ |
#define | PT_GNU_RELRO 0x6474e552 /* Read-only after relocation */ |
#define | PT_GNU_PROPERTY 0x6474e553 /* GNU property */ |
#define | PT_LOSUNW 0x6ffffffa |
#define | PT_SUNWBSS 0x6ffffffa /* Sun Specific segment */ |
#define | PT_SUNWSTACK 0x6ffffffb /* Stack segment */ |
#define | PT_HISUNW 0x6fffffff |
#define | PT_HIOS 0x6fffffff /* End of OS-specific */ |
#define | PT_LOPROC 0x70000000 /* Start of processor-specific */ |
#define | PT_HIPROC 0x7fffffff /* End of processor-specific */ |
#define | PF_X (1 << 0) /* Segment is executable */ |
#define | PF_W (1 << 1) /* Segment is writable */ |
#define | PF_R (1 << 2) /* Segment is readable */ |
#define | PF_MASKOS 0x0ff00000 /* OS-specific */ |
#define | PF_MASKPROC 0xf0000000 /* Processor-specific */ |
#define | NT_PRSTATUS 1 /* Contains copy of prstatus struct */ |
#define | NT_PRFPREG |
#define | NT_FPREGSET 2 /* Contains copy of fpregset struct */ |
#define | NT_PRPSINFO 3 /* Contains copy of prpsinfo struct */ |
#define | NT_PRXREG 4 /* Contains copy of prxregset struct */ |
#define | NT_TASKSTRUCT 4 /* Contains copy of task structure */ |
#define | NT_PLATFORM 5 /* String from sysinfo(SI_PLATFORM) */ |
#define | NT_AUXV 6 /* Contains copy of auxv array */ |
#define | NT_GWINDOWS 7 /* Contains copy of gwindows struct */ |
#define | NT_ASRS 8 /* Contains copy of asrset struct */ |
#define | NT_PSTATUS 10 /* Contains copy of pstatus struct */ |
#define | NT_PSINFO 13 /* Contains copy of psinfo struct */ |
#define | NT_PRCRED 14 /* Contains copy of prcred struct */ |
#define | NT_UTSNAME 15 /* Contains copy of utsname struct */ |
#define | NT_LWPSTATUS 16 /* Contains copy of lwpstatus struct */ |
#define | NT_LWPSINFO 17 /* Contains copy of lwpinfo struct */ |
#define | NT_PRFPXREG 20 /* Contains copy of fprxregset struct */ |
#define | NT_SIGINFO |
#define | NT_FILE |
#define | NT_PRXFPREG 0x46e62b7f /* Contains copy of user_fxsr_struct */ |
#define | NT_PPC_VMX 0x100 /* PowerPC Altivec/VMX registers */ |
#define | NT_PPC_SPE 0x101 /* PowerPC SPE/EVR registers */ |
#define | NT_PPC_VSX 0x102 /* PowerPC VSX registers */ |
#define | NT_PPC_TAR 0x103 /* Target Address Register */ |
#define | NT_PPC_PPR 0x104 /* Program Priority Register */ |
#define | NT_PPC_DSCR 0x105 /* Data Stream Control Register */ |
#define | NT_PPC_EBB 0x106 /* Event Based Branch Registers */ |
#define | NT_PPC_PMU 0x107 /* Performance Monitor Registers */ |
#define | NT_PPC_TM_CGPR 0x108 /* TM checkpointed GPR Registers */ |
#define | NT_PPC_TM_CFPR 0x109 /* TM checkpointed FPR Registers */ |
#define | NT_PPC_TM_CVMX 0x10a /* TM checkpointed VMX Registers */ |
#define | NT_PPC_TM_CVSX 0x10b /* TM checkpointed VSX Registers */ |
#define | NT_PPC_TM_SPR 0x10c /* TM Special Purpose Registers */ |
#define | NT_PPC_TM_CTAR |
#define | NT_PPC_TM_CPPR |
#define | NT_PPC_TM_CDSCR |
#define | NT_PPC_PKEY |
#define | NT_386_TLS 0x200 /* i386 TLS slots (struct user_desc) */ |
#define | NT_386_IOPERM 0x201 /* x86 io permission bitmap (1=deny) */ |
#define | NT_X86_XSTATE 0x202 /* x86 extended state using xsave */ |
#define | NT_S390_HIGH_GPRS 0x300 /* s390 upper register halves */ |
#define | NT_S390_TIMER 0x301 /* s390 timer register */ |
#define | NT_S390_TODCMP 0x302 /* s390 TOD clock comparator register */ |
#define | NT_S390_TODPREG 0x303 /* s390 TOD programmable register */ |
#define | NT_S390_CTRS 0x304 /* s390 control registers */ |
#define | NT_S390_PREFIX 0x305 /* s390 prefix register */ |
#define | NT_S390_LAST_BREAK 0x306 /* s390 breaking event address */ |
#define | NT_S390_SYSTEM_CALL 0x307 /* s390 system call restart data */ |
#define | NT_S390_TDB 0x308 /* s390 transaction diagnostic block */ |
#define | NT_S390_VXRS_LOW |
#define | NT_S390_VXRS_HIGH 0x30a /* s390 vector registers 16-31. */ |
#define | NT_S390_GS_CB 0x30b /* s390 guarded storage registers. */ |
#define | NT_S390_GS_BC |
#define | NT_S390_RI_CB 0x30d /* s390 runtime instrumentation. */ |
#define | NT_ARM_VFP 0x400 /* ARM VFP/NEON registers */ |
#define | NT_ARM_TLS 0x401 /* ARM TLS register */ |
#define | NT_ARM_HW_BREAK 0x402 /* ARM hardware breakpoint registers */ |
#define | NT_ARM_HW_WATCH 0x403 /* ARM hardware watchpoint registers */ |
#define | NT_ARM_SYSTEM_CALL 0x404 /* ARM system call number */ |
#define | NT_ARM_SVE |
#define | NT_ARM_PAC_MASK |
#define | NT_ARM_PACA_KEYS |
#define | NT_ARM_PACG_KEYS |
#define | NT_VMCOREDD 0x700 /* Vmcore Device Dump Note. */ |
#define | NT_MIPS_DSP 0x800 /* MIPS DSP ASE registers. */ |
#define | NT_MIPS_FP_MODE 0x801 /* MIPS floating-point mode. */ |
#define | NT_MIPS_MSA 0x802 /* MIPS SIMD registers. */ |
#define | NT_VERSION 1 /* Contains a version string. */ |
#define | DT_NULL 0 /* Marks end of dynamic section */ |
#define | DT_NEEDED 1 /* Name of needed library */ |
#define | DT_PLTRELSZ 2 /* Size in bytes of PLT relocs */ |
#define | DT_PLTGOT 3 /* Processor defined value */ |
#define | DT_HASH 4 /* Address of symbol hash table */ |
#define | DT_STRTAB 5 /* Address of string table */ |
#define | DT_SYMTAB 6 /* Address of symbol table */ |
#define | DT_RELA 7 /* Address of Rela relocs */ |
#define | DT_RELASZ 8 /* Total size of Rela relocs */ |
#define | DT_RELAENT 9 /* Size of one Rela reloc */ |
#define | DT_STRSZ 10 /* Size of string table */ |
#define | DT_SYMENT 11 /* Size of one symbol table entry */ |
#define | DT_INIT 12 /* Address of init function */ |
#define | DT_FINI 13 /* Address of termination function */ |
#define | DT_SONAME 14 /* Name of shared object */ |
#define | DT_RPATH 15 /* Library search path (deprecated) */ |
#define | DT_SYMBOLIC 16 /* Start symbol search here */ |
#define | DT_REL 17 /* Address of Rel relocs */ |
#define | DT_RELSZ 18 /* Total size of Rel relocs */ |
#define | DT_RELENT 19 /* Size of one Rel reloc */ |
#define | DT_PLTREL 20 /* Type of reloc in PLT */ |
#define | DT_DEBUG 21 /* For debugging; unspecified */ |
#define | DT_TEXTREL 22 /* Reloc might modify .text */ |
#define | DT_JMPREL 23 /* Address of PLT relocs */ |
#define | DT_BIND_NOW 24 /* Process relocations of object */ |
#define | DT_INIT_ARRAY 25 /* Array with addresses of init fct */ |
#define | DT_FINI_ARRAY 26 /* Array with addresses of fini fct */ |
#define | DT_INIT_ARRAYSZ 27 /* Size in bytes of DT_INIT_ARRAY */ |
#define | DT_FINI_ARRAYSZ 28 /* Size in bytes of DT_FINI_ARRAY */ |
#define | DT_RUNPATH 29 /* Library search path */ |
#define | DT_FLAGS 30 /* Flags for the object being loaded */ |
#define | DT_ENCODING 32 /* Start of encoded range */ |
#define | DT_PREINIT_ARRAY 32 /* Array with addresses of preinit fct*/ |
#define | DT_PREINIT_ARRAYSZ 33 /* size in bytes of DT_PREINIT_ARRAY */ |
#define | DT_SYMTAB_SHNDX 34 /* Address of SYMTAB_SHNDX section */ |
#define | DT_NUM 35 /* Number used */ |
#define | DT_LOOS 0x6000000d /* Start of OS-specific */ |
#define | DT_HIOS 0x6ffff000 /* End of OS-specific */ |
#define | DT_LOPROC 0x70000000 /* Start of processor-specific */ |
#define | DT_HIPROC 0x7fffffff /* End of processor-specific */ |
#define | DT_PROCNUM DT_MIPS_NUM /* Most used by any processor */ |
#define | DT_VALRNGLO 0x6ffffd00 |
#define | DT_GNU_PRELINKED 0x6ffffdf5 /* Prelinking timestamp */ |
#define | DT_GNU_CONFLICTSZ 0x6ffffdf6 /* Size of conflict section */ |
#define | DT_GNU_LIBLISTSZ 0x6ffffdf7 /* Size of library list */ |
#define | DT_CHECKSUM 0x6ffffdf8 |
#define | DT_PLTPADSZ 0x6ffffdf9 |
#define | DT_MOVEENT 0x6ffffdfa |
#define | DT_MOVESZ 0x6ffffdfb |
#define | DT_FEATURE_1 0x6ffffdfc /* Feature selection (DTF_*). */ |
#define | DT_POSFLAG_1 |
#define | DT_SYMINSZ 0x6ffffdfe /* Size of syminfo table (in bytes) */ |
#define | DT_SYMINENT 0x6ffffdff /* Entry size of syminfo */ |
#define | DT_VALRNGHI 0x6ffffdff |
#define | DT_VALTAGIDX(tag) (DT_VALRNGHI - (tag)) /* Reverse order! */ |
#define | DT_VALNUM 12 |
#define | DT_ADDRRNGLO 0x6ffffe00 |
#define | DT_GNU_HASH 0x6ffffef5 /* GNU-style hash table. */ |
#define | DT_TLSDESC_PLT 0x6ffffef6 |
#define | DT_TLSDESC_GOT 0x6ffffef7 |
#define | DT_GNU_CONFLICT 0x6ffffef8 /* Start of conflict section */ |
#define | DT_GNU_LIBLIST 0x6ffffef9 /* Library list */ |
#define | DT_CONFIG 0x6ffffefa /* Configuration information. */ |
#define | DT_DEPAUDIT 0x6ffffefb /* Dependency auditing. */ |
#define | DT_AUDIT 0x6ffffefc /* Object auditing. */ |
#define | DT_PLTPAD 0x6ffffefd /* PLT padding. */ |
#define | DT_MOVETAB 0x6ffffefe /* Move table. */ |
#define | DT_SYMINFO 0x6ffffeff /* Syminfo table. */ |
#define | DT_ADDRRNGHI 0x6ffffeff |
#define | DT_ADDRTAGIDX(tag) (DT_ADDRRNGHI - (tag)) /* Reverse order! */ |
#define | DT_ADDRNUM 11 |
#define | DT_VERSYM 0x6ffffff0 |
#define | DT_RELACOUNT 0x6ffffff9 |
#define | DT_RELCOUNT 0x6ffffffa |
#define | DT_FLAGS_1 0x6ffffffb /* State flags, see DF_1_* below. */ |
#define | DT_VERDEF |
#define | DT_VERDEFNUM 0x6ffffffd /* Number of version definitions */ |
#define | DT_VERNEED |
#define | DT_VERNEEDNUM 0x6fffffff /* Number of needed versions */ |
#define | DT_VERSIONTAGIDX(tag) (DT_VERNEEDNUM - (tag)) /* Reverse order! */ |
#define | DT_VERSIONTAGNUM 16 |
#define | DT_AUXILIARY 0x7ffffffd /* Shared object to load before self */ |
#define | DT_FILTER 0x7fffffff /* Shared object to get values from */ |
#define | DT_EXTRATAGIDX(tag) ((Elf32_Word) - ((Elf32_Sword)(tag) << 1 >> 1) - 1) |
#define | DT_EXTRANUM 3 |
#define | DF_ORIGIN 0x00000001 /* Object may use DF_ORIGIN */ |
#define | DF_SYMBOLIC 0x00000002 /* Symbol resolutions starts here */ |
#define | DF_TEXTREL 0x00000004 /* Object contains text relocations */ |
#define | DF_BIND_NOW 0x00000008 /* No lazy binding for this object */ |
#define | DF_STATIC_TLS 0x00000010 /* Module uses the static TLS model */ |
#define | DF_1_NOW 0x00000001 /* Set RTLD_NOW for this object. */ |
#define | DF_1_GLOBAL 0x00000002 /* Set RTLD_GLOBAL for this object. */ |
#define | DF_1_GROUP 0x00000004 /* Set RTLD_GROUP for this object. */ |
#define | DF_1_NODELETE 0x00000008 /* Set RTLD_NODELETE for this object.*/ |
#define | DF_1_LOADFLTR 0x00000010 /* Trigger filtee loading at runtime.*/ |
#define | DF_1_INITFIRST 0x00000020 /* Set RTLD_INITFIRST for this object*/ |
#define | DF_1_NOOPEN 0x00000040 /* Set RTLD_NOOPEN for this object. */ |
#define | DF_1_ORIGIN 0x00000080 /* $ORIGIN must be handled. */ |
#define | DF_1_DIRECT 0x00000100 /* Direct binding enabled. */ |
#define | DF_1_TRANS 0x00000200 |
#define | DF_1_INTERPOSE 0x00000400 /* Object is used to interpose. */ |
#define | DF_1_NODEFLIB 0x00000800 /* Ignore default lib search path. */ |
#define | DF_1_NODUMP 0x00001000 /* Object can't be dldump'ed. */ |
#define | DF_1_CONFALT 0x00002000 /* Configuration alternative created.*/ |
#define | DF_1_ENDFILTEE 0x00004000 /* Filtee terminates filters search. */ |
#define | DF_1_DISPRELDNE 0x00008000 /* Disp reloc applied at build time. */ |
#define | DF_1_DISPRELPND 0x00010000 /* Disp reloc applied at run-time. */ |
#define | DF_1_NODIRECT 0x00020000 /* Object has no-direct binding. */ |
#define | DF_1_IGNMULDEF 0x00040000 |
#define | DF_1_NOKSYMS 0x00080000 |
#define | DF_1_NOHDR 0x00100000 |
#define | DF_1_EDITED 0x00200000 /* Object is modified after built. */ |
#define | DF_1_NORELOC 0x00400000 |
#define | DF_1_SYMINTPOSE 0x00800000 /* Object has individual interposers. */ |
#define | DF_1_GLOBAUDIT 0x01000000 /* Global auditing required. */ |
#define | DF_1_SINGLETON 0x02000000 /* Singleton symbols are used. */ |
#define | DF_1_STUB 0x04000000 |
#define | DF_1_PIE 0x08000000 |
#define | DF_1_KMOD 0x10000000 |
#define | DF_1_WEAKFILTER 0x20000000 |
#define | DF_1_NOCOMMON 0x40000000 |
#define | DTF_1_PARINIT 0x00000001 |
#define | DTF_1_CONFEXP 0x00000002 |
#define | DF_P1_LAZYLOAD 0x00000001 /* Lazyload following object. */ |
#define | DF_P1_GROUPPERM |
#define | VER_DEF_NONE 0 /* No version */ |
#define | VER_DEF_CURRENT 1 /* Current version */ |
#define | VER_DEF_NUM 2 /* Given version number */ |
#define | VER_FLG_BASE 0x1 /* Version definition of file itself */ |
#define | VER_FLG_WEAK 0x2 /* Weak version identifier */ |
#define | VER_NDX_LOCAL 0 /* Symbol is local. */ |
#define | VER_NDX_GLOBAL 1 /* Symbol is global. */ |
#define | VER_NDX_LORESERVE 0xff00 /* Beginning of reserved entries. */ |
#define | VER_NDX_ELIMINATE 0xff01 /* Symbol is to be eliminated. */ |
#define | VER_NEED_NONE 0 /* No version */ |
#define | VER_NEED_CURRENT 1 /* Current version */ |
#define | VER_NEED_NUM 2 /* Given version number */ |
#define | VER_FLG_WEAK 0x2 /* Weak version identifier */ |
#define | AT_NULL 0 /* End of vector */ |
#define | AT_IGNORE 1 /* Entry should be ignored */ |
#define | AT_EXECFD 2 /* File descriptor of program */ |
#define | AT_PHDR 3 /* Program headers for program */ |
#define | AT_PHENT 4 /* Size of program header entry */ |
#define | AT_PHNUM 5 /* Number of program headers */ |
#define | AT_PAGESZ 6 /* System page size */ |
#define | AT_BASE 7 /* Base address of interpreter */ |
#define | AT_FLAGS 8 /* Flags */ |
#define | AT_ENTRY 9 /* Entry point of program */ |
#define | AT_NOTELF 10 /* Program is not ELF */ |
#define | AT_UID 11 /* Real uid */ |
#define | AT_EUID 12 /* Effective uid */ |
#define | AT_GID 13 /* Real gid */ |
#define | AT_EGID 14 /* Effective gid */ |
#define | AT_CLKTCK 17 /* Frequency of times() */ |
#define | AT_PLATFORM 15 /* String identifying platform. */ |
#define | AT_HWCAP |
#define | AT_FPUCW 18 /* Used FPU control word. */ |
#define | AT_DCACHEBSIZE 19 /* Data cache block size. */ |
#define | AT_ICACHEBSIZE 20 /* Instruction cache block size. */ |
#define | AT_UCACHEBSIZE 21 /* Unified cache block size. */ |
#define | AT_IGNOREPPC 22 /* Entry should be ignored. */ |
#define | AT_SECURE 23 /* Boolean, was exec setuid-like? */ |
#define | AT_BASE_PLATFORM 24 /* String identifying real platforms.*/ |
#define | AT_RANDOM 25 /* Address of 16 random bytes. */ |
#define | AT_HWCAP2 |
#define | AT_EXECFN 31 /* Filename of executable. */ |
#define | AT_SYSINFO 32 |
#define | AT_SYSINFO_EHDR 33 |
#define | AT_L1I_CACHESHAPE 34 |
#define | AT_L1D_CACHESHAPE 35 |
#define | AT_L2_CACHESHAPE 36 |
#define | AT_L3_CACHESHAPE 37 |
#define | AT_L1I_CACHESIZE 40 |
#define | AT_L1I_CACHEGEOMETRY 41 |
#define | AT_L1D_CACHESIZE 42 |
#define | AT_L1D_CACHEGEOMETRY 43 |
#define | AT_L2_CACHESIZE 44 |
#define | AT_L2_CACHEGEOMETRY 45 |
#define | AT_L3_CACHESIZE 46 |
#define | AT_L3_CACHEGEOMETRY 47 |
#define | AT_MINSIGSTKSZ |
#define | ELF_NOTE_SOLARIS "SUNW Solaris" |
#define | ELF_NOTE_GNU "GNU" |
#define | ELF_NOTE_PAGESIZE_HINT 1 |
#define | NT_GNU_ABI_TAG 1 |
#define | ELF_NOTE_ABI NT_GNU_ABI_TAG /* Old name. */ |
#define | ELF_NOTE_OS_LINUX 0 |
#define | ELF_NOTE_OS_GNU 1 |
#define | ELF_NOTE_OS_SOLARIS2 2 |
#define | ELF_NOTE_OS_FREEBSD 3 |
#define | NT_GNU_HWCAP 2 |
#define | NT_GNU_BUILD_ID 3 |
#define | NT_GNU_GOLD_VERSION 4 |
#define | NT_GNU_PROPERTY_TYPE_0 5 |
#define | NOTE_GNU_PROPERTY_SECTION_NAME ".note.gnu.property" |
#define | GNU_PROPERTY_STACK_SIZE 1 |
#define | GNU_PROPERTY_NO_COPY_ON_PROTECTED 2 |
#define | GNU_PROPERTY_LOPROC 0xc0000000 |
#define | GNU_PROPERTY_HIPROC 0xdfffffff |
#define | GNU_PROPERTY_LOUSER 0xe0000000 |
#define | GNU_PROPERTY_HIUSER 0xffffffff |
#define | GNU_PROPERTY_AARCH64_FEATURE_1_AND 0xc0000000 |
#define | GNU_PROPERTY_AARCH64_FEATURE_1_BTI (1U << 0) |
#define | GNU_PROPERTY_AARCH64_FEATURE_1_PAC (1U << 1) |
#define | GNU_PROPERTY_X86_ISA_1_USED 0xc0000000 |
#define | GNU_PROPERTY_X86_ISA_1_NEEDED 0xc0000001 |
#define | GNU_PROPERTY_X86_FEATURE_1_AND 0xc0000002 |
#define | GNU_PROPERTY_X86_ISA_1_486 (1U << 0) |
#define | GNU_PROPERTY_X86_ISA_1_586 (1U << 1) |
#define | GNU_PROPERTY_X86_ISA_1_686 (1U << 2) |
#define | GNU_PROPERTY_X86_ISA_1_SSE (1U << 3) |
#define | GNU_PROPERTY_X86_ISA_1_SSE2 (1U << 4) |
#define | GNU_PROPERTY_X86_ISA_1_SSE3 (1U << 5) |
#define | GNU_PROPERTY_X86_ISA_1_SSSE3 (1U << 6) |
#define | GNU_PROPERTY_X86_ISA_1_SSE4_1 (1U << 7) |
#define | GNU_PROPERTY_X86_ISA_1_SSE4_2 (1U << 8) |
#define | GNU_PROPERTY_X86_ISA_1_AVX (1U << 9) |
#define | GNU_PROPERTY_X86_ISA_1_AVX2 (1U << 10) |
#define | GNU_PROPERTY_X86_ISA_1_AVX512F (1U << 11) |
#define | GNU_PROPERTY_X86_ISA_1_AVX512CD (1U << 12) |
#define | GNU_PROPERTY_X86_ISA_1_AVX512ER (1U << 13) |
#define | GNU_PROPERTY_X86_ISA_1_AVX512PF (1U << 14) |
#define | GNU_PROPERTY_X86_ISA_1_AVX512VL (1U << 15) |
#define | GNU_PROPERTY_X86_ISA_1_AVX512DQ (1U << 16) |
#define | GNU_PROPERTY_X86_ISA_1_AVX512BW (1U << 17) |
#define | GNU_PROPERTY_X86_FEATURE_1_IBT (1U << 0) |
#define | GNU_PROPERTY_X86_FEATURE_1_SHSTK (1U << 1) |
#define | ELF32_M_SYM(info) ((info) >> 8) |
#define | ELF32_M_SIZE(info) ((unsigned char)(info)) |
#define | ELF32_M_INFO(sym, size) (((sym) << 8) + (unsigned char)(size)) |
#define | ELF64_M_SYM(info) ELF32_M_SYM(info) |
#define | ELF64_M_SIZE(info) ELF32_M_SIZE(info) |
#define | ELF64_M_INFO(sym, size) ELF32_M_INFO(sym, size) |
#define | EF_CPU32 0x00810000 |
#define | RZ_68K_NONE 0 /* No reloc */ |
#define | RZ_68K_32 1 /* Direct 32 bit */ |
#define | RZ_68K_16 2 /* Direct 16 bit */ |
#define | RZ_68K_8 3 /* Direct 8 bit */ |
#define | RZ_68K_PC32 4 /* PC relative 32 bit */ |
#define | RZ_68K_PC16 5 /* PC relative 16 bit */ |
#define | RZ_68K_PC8 6 /* PC relative 8 bit */ |
#define | RZ_68K_GOT32 7 /* 32 bit PC relative GOT entry */ |
#define | RZ_68K_GOT16 8 /* 16 bit PC relative GOT entry */ |
#define | RZ_68K_GOT8 9 /* 8 bit PC relative GOT entry */ |
#define | RZ_68K_GOT32O 10 /* 32 bit GOT offset */ |
#define | RZ_68K_GOT16O 11 /* 16 bit GOT offset */ |
#define | RZ_68K_GOT8O 12 /* 8 bit GOT offset */ |
#define | RZ_68K_PLT32 13 /* 32 bit PC relative PLT address */ |
#define | RZ_68K_PLT16 14 /* 16 bit PC relative PLT address */ |
#define | RZ_68K_PLT8 15 /* 8 bit PC relative PLT address */ |
#define | RZ_68K_PLT32O 16 /* 32 bit PLT offset */ |
#define | RZ_68K_PLT16O 17 /* 16 bit PLT offset */ |
#define | RZ_68K_PLT8O 18 /* 8 bit PLT offset */ |
#define | RZ_68K_COPY 19 /* Copy symbol at runtime */ |
#define | RZ_68K_GLOB_DAT 20 /* Create GOT entry */ |
#define | RZ_68K_JMP_SLOT 21 /* Create PLT entry */ |
#define | RZ_68K_RELATIVE 22 /* Adjust by program base */ |
#define | RZ_68K_TLS_GD32 25 /* 32 bit GOT offset for GD */ |
#define | RZ_68K_TLS_GD16 26 /* 16 bit GOT offset for GD */ |
#define | RZ_68K_TLS_GD8 27 /* 8 bit GOT offset for GD */ |
#define | RZ_68K_TLS_LDM32 28 /* 32 bit GOT offset for LDM */ |
#define | RZ_68K_TLS_LDM16 29 /* 16 bit GOT offset for LDM */ |
#define | RZ_68K_TLS_LDM8 30 /* 8 bit GOT offset for LDM */ |
#define | RZ_68K_TLS_LDO32 31 /* 32 bit module-relative offset */ |
#define | RZ_68K_TLS_LDO16 32 /* 16 bit module-relative offset */ |
#define | RZ_68K_TLS_LDO8 33 /* 8 bit module-relative offset */ |
#define | RZ_68K_TLS_IE32 34 /* 32 bit GOT offset for IE */ |
#define | RZ_68K_TLS_IE16 35 /* 16 bit GOT offset for IE */ |
#define | RZ_68K_TLS_IE8 36 /* 8 bit GOT offset for IE */ |
#define | RZ_68K_TLS_LE32 |
#define | RZ_68K_TLS_LE16 |
#define | RZ_68K_TLS_LE8 |
#define | RZ_68K_TLS_DTPMOD32 40 /* 32 bit module number */ |
#define | RZ_68K_TLS_DTPREL32 41 /* 32 bit module-relative offset */ |
#define | RZ_68K_TLS_TPREL32 42 /* 32 bit TP-relative offset */ |
#define | RZ_68K_NUM 43 |
#define | RZ_386_NONE 0 /* No reloc */ |
#define | RZ_386_32 1 /* Direct 32 bit */ |
#define | RZ_386_PC32 2 /* PC relative 32 bit */ |
#define | RZ_386_GOT32 3 /* 32 bit GOT entry */ |
#define | RZ_386_PLT32 4 /* 32 bit PLT address */ |
#define | RZ_386_COPY 5 /* Copy symbol at runtime */ |
#define | RZ_386_GLOB_DAT 6 /* Create GOT entry */ |
#define | RZ_386_JMP_SLOT 7 /* Create PLT entry */ |
#define | RZ_386_RELATIVE 8 /* Adjust by program base */ |
#define | RZ_386_GOTOFF 9 /* 32 bit offset to GOT */ |
#define | RZ_386_GOTPC 10 /* 32 bit PC relative offset to GOT */ |
#define | RZ_386_32PLT 11 |
#define | RZ_386_TLS_TPOFF 14 /* Offset in static TLS block */ |
#define | RZ_386_TLS_IE |
#define | RZ_386_TLS_GOTIE |
#define | RZ_386_TLS_LE |
#define | RZ_386_TLS_GD |
#define | RZ_386_TLS_LDM |
#define | RZ_386_16 20 |
#define | RZ_386_PC16 21 |
#define | RZ_386_8 22 |
#define | RZ_386_PC8 23 |
#define | RZ_386_TLS_GD_32 |
#define | RZ_386_TLS_GD_PUSH 25 /* Tag for pushl in GD TLS code */ |
#define | RZ_386_TLS_GD_CALL |
#define | RZ_386_TLS_GD_POP 27 /* Tag for popl in GD TLS code */ |
#define | RZ_386_TLS_LDM_32 |
#define | RZ_386_TLS_LDM_PUSH 29 /* Tag for pushl in LDM TLS code */ |
#define | RZ_386_TLS_LDM_CALL |
#define | RZ_386_TLS_LDM_POP 31 /* Tag for popl in LDM TLS code */ |
#define | RZ_386_TLS_LDO_32 32 /* Offset relative to TLS block */ |
#define | RZ_386_TLS_IE_32 |
#define | RZ_386_TLS_LE_32 |
#define | RZ_386_TLS_DTPMOD32 35 /* ID of module containing symbol */ |
#define | RZ_386_TLS_DTPOFF32 36 /* Offset in TLS block */ |
#define | RZ_386_TLS_TPOFF32 37 /* Negated offset in static TLS block */ |
#define | RZ_386_SIZE32 38 /* 32-bit symbol size */ |
#define | RZ_386_TLS_GOTDESC 39 /* GOT offset for TLS descriptor. */ |
#define | RZ_386_TLS_DESC_CALL |
#define | RZ_386_TLS_DESC |
#define | RZ_386_IRELATIVE 42 /* Adjust indirectly by program base */ |
#define | RZ_386_GOT32X |
#define | RZ_386_NUM 44 |
#define | STT_SPARC_REGISTER 13 /* Global register reserved to app. */ |
#define | EF_SPARCV9_MM 3 |
#define | EF_SPARCV9_TSO 0 |
#define | EF_SPARCV9_PSO 1 |
#define | EF_SPARCV9_RMO 2 |
#define | EF_SPARC_LEDATA 0x800000 /* little endian data */ |
#define | EF_SPARC_EXT_MASK 0xFFFF00 |
#define | EF_SPARC_32PLUS 0x000100 /* generic V8+ features */ |
#define | EF_SPARC_SUN_US1 0x000200 /* Sun UltraSPARC1 extensions */ |
#define | EF_SPARC_HAL_R1 0x000400 /* HAL R1 extensions */ |
#define | EF_SPARC_SUN_US3 0x000800 /* Sun UltraSPARCIII extensions */ |
#define | RZ_SPARC_NONE 0 /* No reloc */ |
#define | RZ_SPARC_8 1 /* Direct 8 bit */ |
#define | RZ_SPARC_16 2 /* Direct 16 bit */ |
#define | RZ_SPARC_32 3 /* Direct 32 bit */ |
#define | RZ_SPARC_DISP8 4 /* PC relative 8 bit */ |
#define | RZ_SPARC_DISP16 5 /* PC relative 16 bit */ |
#define | RZ_SPARC_DISP32 6 /* PC relative 32 bit */ |
#define | RZ_SPARC_WDISP30 7 /* PC relative 30 bit shifted */ |
#define | RZ_SPARC_WDISP22 8 /* PC relative 22 bit shifted */ |
#define | RZ_SPARC_HI22 9 /* High 22 bit */ |
#define | RZ_SPARC_22 10 /* Direct 22 bit */ |
#define | RZ_SPARC_13 11 /* Direct 13 bit */ |
#define | RZ_SPARC_LO10 12 /* Truncated 10 bit */ |
#define | RZ_SPARC_GOT10 13 /* Truncated 10 bit GOT entry */ |
#define | RZ_SPARC_GOT13 14 /* 13 bit GOT entry */ |
#define | RZ_SPARC_GOT22 15 /* 22 bit GOT entry shifted */ |
#define | RZ_SPARC_PC10 16 /* PC relative 10 bit truncated */ |
#define | RZ_SPARC_PC22 17 /* PC relative 22 bit shifted */ |
#define | RZ_SPARC_WPLT30 18 /* 30 bit PC relative PLT address */ |
#define | RZ_SPARC_COPY 19 /* Copy symbol at runtime */ |
#define | RZ_SPARC_GLOB_DAT 20 /* Create GOT entry */ |
#define | RZ_SPARC_JMP_SLOT 21 /* Create PLT entry */ |
#define | RZ_SPARC_RELATIVE 22 /* Adjust by program base */ |
#define | RZ_SPARC_UA32 23 /* Direct 32 bit unaligned */ |
#define | RZ_SPARC_PLT32 24 /* Direct 32 bit ref to PLT entry */ |
#define | RZ_SPARC_HIPLT22 25 /* High 22 bit PLT entry */ |
#define | RZ_SPARC_LOPLT10 26 /* Truncated 10 bit PLT entry */ |
#define | RZ_SPARC_PCPLT32 27 /* PC rel 32 bit ref to PLT entry */ |
#define | RZ_SPARC_PCPLT22 28 /* PC rel high 22 bit PLT entry */ |
#define | RZ_SPARC_PCPLT10 29 /* PC rel trunc 10 bit PLT entry */ |
#define | RZ_SPARC_10 30 /* Direct 10 bit */ |
#define | RZ_SPARC_11 31 /* Direct 11 bit */ |
#define | RZ_SPARC_64 32 /* Direct 64 bit */ |
#define | RZ_SPARC_OLO10 33 /* 10bit with secondary 13bit addend */ |
#define | RZ_SPARC_HH22 34 /* Top 22 bits of direct 64 bit */ |
#define | RZ_SPARC_HM10 35 /* High middle 10 bits of ... */ |
#define | RZ_SPARC_LM22 36 /* Low middle 22 bits of ... */ |
#define | RZ_SPARC_PC_HH22 37 /* Top 22 bits of pc rel 64 bit */ |
#define | RZ_SPARC_PC_HM10 38 /* High middle 10 bit of ... */ |
#define | RZ_SPARC_PC_LM22 39 /* Low miggle 22 bits of ... */ |
#define | RZ_SPARC_WDISP16 40 /* PC relative 16 bit shifted */ |
#define | RZ_SPARC_WDISP19 41 /* PC relative 19 bit shifted */ |
#define | RZ_SPARC_GLOB_JMP 42 /* was part of v9 ABI but was removed */ |
#define | RZ_SPARC_7 43 /* Direct 7 bit */ |
#define | RZ_SPARC_5 44 /* Direct 5 bit */ |
#define | RZ_SPARC_6 45 /* Direct 6 bit */ |
#define | RZ_SPARC_DISP64 46 /* PC relative 64 bit */ |
#define | RZ_SPARC_PLT64 47 /* Direct 64 bit ref to PLT entry */ |
#define | RZ_SPARC_HIX22 48 /* High 22 bit complemented */ |
#define | RZ_SPARC_LOX10 49 /* Truncated 11 bit complemented */ |
#define | RZ_SPARC_H44 50 /* Direct high 12 of 44 bit */ |
#define | RZ_SPARC_M44 51 /* Direct mid 22 of 44 bit */ |
#define | RZ_SPARC_L44 52 /* Direct low 10 of 44 bit */ |
#define | RZ_SPARC_REGISTER 53 /* Global register usage */ |
#define | RZ_SPARC_UA64 54 /* Direct 64 bit unaligned */ |
#define | RZ_SPARC_UA16 55 /* Direct 16 bit unaligned */ |
#define | RZ_SPARC_TLS_GD_HI22 56 |
#define | RZ_SPARC_TLS_GD_LO10 57 |
#define | RZ_SPARC_TLS_GD_ADD 58 |
#define | RZ_SPARC_TLS_GD_CALL 59 |
#define | RZ_SPARC_TLS_LDM_HI22 60 |
#define | RZ_SPARC_TLS_LDM_LO10 61 |
#define | RZ_SPARC_TLS_LDM_ADD 62 |
#define | RZ_SPARC_TLS_LDM_CALL 63 |
#define | RZ_SPARC_TLS_LDO_HIX22 64 |
#define | RZ_SPARC_TLS_LDO_LOX10 65 |
#define | RZ_SPARC_TLS_LDO_ADD 66 |
#define | RZ_SPARC_TLS_IE_HI22 67 |
#define | RZ_SPARC_TLS_IE_LO10 68 |
#define | RZ_SPARC_TLS_IE_LD 69 |
#define | RZ_SPARC_TLS_IE_LDX 70 |
#define | RZ_SPARC_TLS_IE_ADD 71 |
#define | RZ_SPARC_TLS_LE_HIX22 72 |
#define | RZ_SPARC_TLS_LE_LOX10 73 |
#define | RZ_SPARC_TLS_DTPMOD32 74 |
#define | RZ_SPARC_TLS_DTPMOD64 75 |
#define | RZ_SPARC_TLS_DTPOFF32 76 |
#define | RZ_SPARC_TLS_DTPOFF64 77 |
#define | RZ_SPARC_TLS_TPOFF32 78 |
#define | RZ_SPARC_TLS_TPOFF64 79 |
#define | RZ_SPARC_GOTDATA_HIX22 80 |
#define | RZ_SPARC_GOTDATA_LOX10 81 |
#define | RZ_SPARC_GOTDATA_OP_HIX22 82 |
#define | RZ_SPARC_GOTDATA_OP_LOX10 83 |
#define | RZ_SPARC_GOTDATA_OP 84 |
#define | RZ_SPARC_H34 85 |
#define | RZ_SPARC_SIZE32 86 |
#define | RZ_SPARC_SIZE64 87 |
#define | RZ_SPARC_WDISP10 88 |
#define | RZ_SPARC_JMP_IREL 248 |
#define | RZ_SPARC_IRELATIVE 249 |
#define | RZ_SPARC_GNU_VTINHERIT 250 |
#define | RZ_SPARC_GNU_VTENTRY 251 |
#define | RZ_SPARC_REV32 252 |
#define | RZ_SPARC_NUM 253 |
#define | DT_SPARC_REGISTER 0x70000001 |
#define | DT_SPARC_NUM 2 |
#define | EF_MIPS_NOREORDER 1 /* A .noreorder directive was used. */ |
#define | EF_MIPS_PIC 2 /* Contains PIC code. */ |
#define | EF_MIPS_CPIC 4 /* Uses PIC calling sequence. */ |
#define | EF_MIPS_XGOT 8 |
#define | EF_MIPS_64BIT_WHIRL 16 |
#define | EF_MIPS_ABI2 32 |
#define | EF_MIPS_ABI_ON32 64 |
#define | EF_MIPS_FP64 512 /* Uses FP64 (12 callee-saved). */ |
#define | EF_MIPS_NAN2008 1024 /* Uses IEEE 754-2008 NaN encoding. */ |
#define | EF_MIPS_ARCH 0xf0000000 /* MIPS architecture level. */ |
#define | EF_MIPS_ARCH_1 0x00000000 /* -mips1 code. */ |
#define | EF_MIPS_ARCH_2 0x10000000 /* -mips2 code. */ |
#define | EF_MIPS_ARCH_3 0x20000000 /* -mips3 code. */ |
#define | EF_MIPS_ARCH_4 0x30000000 /* -mips4 code. */ |
#define | EF_MIPS_ARCH_5 0x40000000 /* -mips5 code. */ |
#define | EF_MIPS_ARCH_32 0x50000000 /* MIPS32 code. */ |
#define | EF_MIPS_ARCH_64 0x60000000 /* MIPS64 code. */ |
#define | EF_MIPS_ARCH_32R2 0x70000000 /* MIPS32r2 code. */ |
#define | EF_MIPS_ARCH_64R2 0x80000000 /* MIPS64r2 code. */ |
#define | E_MIPS_ARCH_1 EF_MIPS_ARCH_1 |
#define | E_MIPS_ARCH_2 EF_MIPS_ARCH_2 |
#define | E_MIPS_ARCH_3 EF_MIPS_ARCH_3 |
#define | E_MIPS_ARCH_4 EF_MIPS_ARCH_4 |
#define | E_MIPS_ARCH_5 EF_MIPS_ARCH_5 |
#define | E_MIPS_ARCH_32 EF_MIPS_ARCH_32 |
#define | E_MIPS_ARCH_64 EF_MIPS_ARCH_64 |
#define | SHN_MIPS_ACOMMON 0xff00 /* Allocated common symbols. */ |
#define | SHN_MIPS_TEXT 0xff01 /* Allocated test symbols. */ |
#define | SHN_MIPS_DATA 0xff02 /* Allocated data symbols. */ |
#define | SHN_MIPS_SCOMMON 0xff03 /* Small common symbols. */ |
#define | SHN_MIPS_SUNDEFINED 0xff04 /* Small undefined symbols. */ |
#define | SHT_MIPS_LIBLIST 0x70000000 /* Shared objects used in link. */ |
#define | SHT_MIPS_MSYM 0x70000001 |
#define | SHT_MIPS_CONFLICT 0x70000002 /* Conflicting symbols. */ |
#define | SHT_MIPS_GPTAB 0x70000003 /* Global data area sizes. */ |
#define | SHT_MIPS_UCODE 0x70000004 /* Reserved for SGI/MIPS compilers */ |
#define | SHT_MIPS_DEBUG 0x70000005 /* MIPS ECOFF debugging info. */ |
#define | SHT_MIPS_REGINFO 0x70000006 /* Register usage information. */ |
#define | SHT_MIPS_PACKAGE 0x70000007 |
#define | SHT_MIPS_PACKSYM 0x70000008 |
#define | SHT_MIPS_RELD 0x70000009 |
#define | SHT_MIPS_IFACE 0x7000000b |
#define | SHT_MIPS_CONTENT 0x7000000c |
#define | SHT_MIPS_OPTIONS 0x7000000d /* Miscellaneous options. */ |
#define | SHT_MIPS_SHDR 0x70000010 |
#define | SHT_MIPS_FDESC 0x70000011 |
#define | SHT_MIPS_EXTSYM 0x70000012 |
#define | SHT_MIPS_DENSE 0x70000013 |
#define | SHT_MIPS_PDESC 0x70000014 |
#define | SHT_MIPS_LOCSYM 0x70000015 |
#define | SHT_MIPS_AUXSYM 0x70000016 |
#define | SHT_MIPS_OPTSYM 0x70000017 |
#define | SHT_MIPS_LOCSTR 0x70000018 |
#define | SHT_MIPS_LINE 0x70000019 |
#define | SHT_MIPS_RFDESC 0x7000001a |
#define | SHT_MIPS_DELTASYM 0x7000001b |
#define | SHT_MIPS_DELTAINST 0x7000001c |
#define | SHT_MIPS_DELTACLASS 0x7000001d |
#define | SHT_MIPS_DWARF 0x7000001e /* DWARF debugging information. */ |
#define | SHT_MIPS_DELTADECL 0x7000001f |
#define | SHT_MIPS_SYMBOL_LIB 0x70000020 |
#define | SHT_MIPS_EVENTS 0x70000021 /* Event section. */ |
#define | SHT_MIPS_TRANSLATE 0x70000022 |
#define | SHT_MIPS_PIXIE 0x70000023 |
#define | SHT_MIPS_XLATE 0x70000024 |
#define | SHT_MIPS_XLATE_DEBUG 0x70000025 |
#define | SHT_MIPS_WHIRL 0x70000026 |
#define | SHT_MIPS_EH_REGION 0x70000027 |
#define | SHT_MIPS_XLATE_OLD 0x70000028 |
#define | SHT_MIPS_PDR_EXCEPTION 0x70000029 |
#define | SHT_MIPS_XHASH 0x7000002b |
#define | SHF_MIPS_GPREL 0x10000000 /* Must be in global data area. */ |
#define | SHF_MIPS_MERGE 0x20000000 |
#define | SHF_MIPS_ADDR 0x40000000 |
#define | SHF_MIPS_STRINGS 0x80000000 |
#define | SHF_MIPS_NOSTRIP 0x08000000 |
#define | SHF_MIPS_LOCAL 0x04000000 |
#define | SHF_MIPS_NAMES 0x02000000 |
#define | SHF_MIPS_NODUPE 0x01000000 |
#define | STO_MIPS_DEFAULT 0x0 |
#define | STO_MIPS_INTERNAL 0x1 |
#define | STO_MIPS_HIDDEN 0x2 |
#define | STO_MIPS_PROTECTED 0x3 |
#define | STO_MIPS_PLT 0x8 |
#define | STO_MIPS_SC_ALIGN_UNUSED 0xff |
#define | STB_MIPS_SPLIT_COMMON 13 |
#define | ODK_NULL 0 /* Undefined. */ |
#define | ODK_REGINFO 1 /* Register usage information. */ |
#define | ODK_EXCEPTIONS 2 /* Exception processing options. */ |
#define | ODK_PAD 3 /* Section padding options. */ |
#define | ODK_HWPATCH 4 /* Hardware workarounds performed */ |
#define | ODK_FILL 5 /* record the fill value used by the linker. */ |
#define | ODK_TAGS 6 /* reserve space for desktop tools to write. */ |
#define | ODK_HWAND 7 /* HW workarounds. 'AND' bits when merging. */ |
#define | ODK_HWOR 8 /* HW workarounds. 'OR' bits when merging. */ |
#define | OEX_FPU_MIN 0x1f /* FPE's which MUST be enabled. */ |
#define | OEX_FPU_MAX 0x1f00 /* FPE's which MAY be enabled. */ |
#define | OEX_PAGE0 0x10000 /* page zero must be mapped. */ |
#define | OEX_SMM 0x20000 /* Force sequential memory mode? */ |
#define | OEX_FPDBUG 0x40000 /* Force floating point debug mode? */ |
#define | OEX_PRECISEFP OEX_FPDBUG |
#define | OEX_DISMISS 0x80000 /* Dismiss invalid address faults? */ |
#define | OEX_FPU_INVAL 0x10 |
#define | OEX_FPU_DIV0 0x08 |
#define | OEX_FPU_OFLO 0x04 |
#define | OEX_FPU_UFLO 0x02 |
#define | OEX_FPU_INEX 0x01 |
#define | OHW_R4KEOP 0x1 /* R4000 end-of-page patch. */ |
#define | OHW_R8KPFETCH 0x2 /* may need R8000 prefetch patch. */ |
#define | OHW_R5KEOP 0x4 /* R5000 end-of-page patch. */ |
#define | OHW_R5KCVTL 0x8 /* R5000 cvt.[ds].l bug. clean=1. */ |
#define | OPAD_PREFIX 0x1 |
#define | OPAD_POSTFIX 0x2 |
#define | OPAD_SYMBOL 0x4 |
#define | OHWA0_R4KEOP_CHECKED 0x00000001 |
#define | OHWA1_R4KEOP_CLEAN 0x00000002 |
#define | RZ_MIPS_NONE 0 /* No reloc */ |
#define | RZ_MIPS_16 1 /* Direct 16 bit */ |
#define | RZ_MIPS_32 2 /* Direct 32 bit */ |
#define | RZ_MIPS_REL32 3 /* PC relative 32 bit */ |
#define | RZ_MIPS_26 4 /* Direct 26 bit shifted */ |
#define | RZ_MIPS_HI16 5 /* High 16 bit */ |
#define | RZ_MIPS_LO16 6 /* Low 16 bit */ |
#define | RZ_MIPS_GPREL16 7 /* GP relative 16 bit */ |
#define | RZ_MIPS_LITERAL 8 /* 16 bit literal entry */ |
#define | RZ_MIPS_GOT16 9 /* 16 bit GOT entry */ |
#define | RZ_MIPS_PC16 10 /* PC relative 16 bit */ |
#define | RZ_MIPS_CALL16 11 /* 16 bit GOT entry for function */ |
#define | RZ_MIPS_GPREL32 12 /* GP relative 32 bit */ |
#define | RZ_MIPS_SHIFT5 16 |
#define | RZ_MIPS_SHIFT6 17 |
#define | RZ_MIPS_64 18 |
#define | RZ_MIPS_GOT_DISP 19 |
#define | RZ_MIPS_GOT_PAGE 20 |
#define | RZ_MIPS_GOT_OFST 21 |
#define | RZ_MIPS_GOT_HI16 22 |
#define | RZ_MIPS_GOT_LO16 23 |
#define | RZ_MIPS_SUB 24 |
#define | RZ_MIPS_INSERT_A 25 |
#define | RZ_MIPS_INSERT_B 26 |
#define | RZ_MIPS_DELETE 27 |
#define | RZ_MIPS_HIGHER 28 |
#define | RZ_MIPS_HIGHEST 29 |
#define | RZ_MIPS_CALL_HI16 30 |
#define | RZ_MIPS_CALL_LO16 31 |
#define | RZ_MIPS_SCN_DISP 32 |
#define | RZ_MIPS_REL16 33 |
#define | RZ_MIPS_ADD_IMMEDIATE 34 |
#define | RZ_MIPS_PJUMP 35 |
#define | RZ_MIPS_RELGOT 36 |
#define | RZ_MIPS_JALR 37 |
#define | RZ_MIPS_TLS_DTPMOD32 38 /* Module number 32 bit */ |
#define | RZ_MIPS_TLS_DTPREL32 39 /* Module-relative offset 32 bit */ |
#define | RZ_MIPS_TLS_DTPMOD64 40 /* Module number 64 bit */ |
#define | RZ_MIPS_TLS_DTPREL64 41 /* Module-relative offset 64 bit */ |
#define | RZ_MIPS_TLS_GD 42 /* 16 bit GOT offset for GD */ |
#define | RZ_MIPS_TLS_LDM 43 /* 16 bit GOT offset for LDM */ |
#define | RZ_MIPS_TLS_DTPREL_HI16 44 /* Module-relative offset, high 16 bits */ |
#define | RZ_MIPS_TLS_DTPREL_LO16 45 /* Module-relative offset, low 16 bits */ |
#define | RZ_MIPS_TLS_GOTTPREL 46 /* 16 bit GOT offset for IE */ |
#define | RZ_MIPS_TLS_TPREL32 47 /* TP-relative offset, 32 bit */ |
#define | RZ_MIPS_TLS_TPREL64 48 /* TP-relative offset, 64 bit */ |
#define | RZ_MIPS_TLS_TPREL_HI16 49 /* TP-relative offset, high 16 bits */ |
#define | RZ_MIPS_TLS_TPREL_LO16 50 /* TP-relative offset, low 16 bits */ |
#define | RZ_MIPS_GLOB_DAT 51 |
#define | RZ_MIPS_COPY 126 |
#define | RZ_MIPS_JUMP_SLOT 127 |
#define | RZ_MIPS_NUM 128 |
#define | PT_MIPS_REGINFO 0x70000000 /* Register usage information. */ |
#define | PT_MIPS_RTPROC 0x70000001 /* Runtime procedure table. */ |
#define | PT_MIPS_OPTIONS 0x70000002 |
#define | PT_MIPS_ABIFLAGS 0x70000003 /* FP mode requirement. */ |
#define | PF_MIPS_LOCAL 0x10000000 |
#define | DT_MIPS_RLD_VERSION 0x70000001 /* Runtime linker interface version */ |
#define | DT_MIPS_TIME_STAMP 0x70000002 /* Timestamp */ |
#define | DT_MIPS_ICHECKSUM 0x70000003 /* Checksum */ |
#define | DT_MIPS_IVERSION 0x70000004 /* Version string (string tbl index) */ |
#define | DT_MIPS_FLAGS 0x70000005 /* Flags */ |
#define | DT_MIPS_BASE_ADDRESS 0x70000006 /* Base address */ |
#define | DT_MIPS_MSYM 0x70000007 |
#define | DT_MIPS_CONFLICT 0x70000008 /* Address of CONFLICT section */ |
#define | DT_MIPS_LIBLIST 0x70000009 /* Address of LIBLIST section */ |
#define | DT_MIPS_LOCAL_GOTNO 0x7000000a /* Number of local GOT entries */ |
#define | DT_MIPS_CONFLICTNO 0x7000000b /* Number of CONFLICT entries */ |
#define | DT_MIPS_LIBLISTNO 0x70000010 /* Number of LIBLIST entries */ |
#define | DT_MIPS_SYMTABNO 0x70000011 /* Number of DYNSYM entries */ |
#define | DT_MIPS_UNREFEXTNO 0x70000012 /* First external DYNSYM */ |
#define | DT_MIPS_GOTSYM 0x70000013 /* First GOT entry in DYNSYM */ |
#define | DT_MIPS_HIPAGENO 0x70000014 /* Number of GOT page table entries */ |
#define | DT_MIPS_RLD_MAP 0x70000016 /* Address of run time loader map. */ |
#define | DT_MIPS_DELTA_CLASS 0x70000017 /* Delta C++ class definition. */ |
#define | DT_MIPS_DELTA_CLASS_NO |
#define | DT_MIPS_DELTA_INSTANCE 0x70000019 /* Delta C++ class instances. */ |
#define | DT_MIPS_DELTA_INSTANCE_NO |
#define | DT_MIPS_DELTA_RELOC 0x7000001b /* Delta relocations. */ |
#define | DT_MIPS_DELTA_RELOC_NO |
#define | DT_MIPS_DELTA_SYM |
#define | DT_MIPS_DELTA_SYM_NO |
#define | DT_MIPS_DELTA_CLASSSYM |
#define | DT_MIPS_DELTA_CLASSSYM_NO |
#define | DT_MIPS_CXX_FLAGS 0x70000022 /* Flags indicating for C++ flavor. */ |
#define | DT_MIPS_PIXIE_INIT 0x70000023 |
#define | DT_MIPS_SYMBOL_LIB 0x70000024 |
#define | DT_MIPS_LOCALPAGE_GOTIDX 0x70000025 |
#define | DT_MIPS_LOCAL_GOTIDX 0x70000026 |
#define | DT_MIPS_HIDDEN_GOTIDX 0x70000027 |
#define | DT_MIPS_PROTECTED_GOTIDX 0x70000028 |
#define | DT_MIPS_OPTIONS 0x70000029 /* Address of .options. */ |
#define | DT_MIPS_INTERFACE 0x7000002a /* Address of .interface. */ |
#define | DT_MIPS_DYNSTR_ALIGN 0x7000002b |
#define | DT_MIPS_INTERFACE_SIZE 0x7000002c /* Size of the .interface section. */ |
#define | DT_MIPS_RLD_TEXT_RESOLVE_ADDR |
#define | DT_MIPS_PERF_SUFFIX |
#define | DT_MIPS_COMPACT_SIZE 0x7000002f /* (O32)Size of compact rel section. */ |
#define | DT_MIPS_GP_VALUE 0x70000030 /* GP value for aux GOTs. */ |
#define | DT_MIPS_AUX_DYNAMIC 0x70000031 /* Address of aux .dynamic. */ |
#define | DT_MIPS_PLTGOT 0x70000032 |
#define | DT_MIPS_RWPLT 0x70000034 |
#define | DT_MIPS_RLD_MAP_REL 0x70000035 |
#define | DT_MIPS_XHASH 0x70000036 |
#define | DT_MIPS_NUM 0x37 |
#define | RHF_NONE 0 /* No flags */ |
#define | RHF_QUICKSTART (1 << 0) /* Use quickstart */ |
#define | RHF_NOTPOT (1 << 1) /* Hash size not power of 2 */ |
#define | RHF_NO_LIBRARY_REPLACEMENT (1 << 2) /* Ignore LD_LIBRARY_PATH */ |
#define | RHF_NO_MOVE (1 << 3) |
#define | RHF_SGI_ONLY (1 << 4) |
#define | RHF_GUARANTEE_INIT (1 << 5) |
#define | RHF_DELTA_C_PLUS_PLUS (1 << 6) |
#define | RHF_GUARANTEE_START_INIT (1 << 7) |
#define | RHF_PIXIE (1 << 8) |
#define | RHF_DEFAULT_DELAY_LOAD (1 << 9) |
#define | RHF_REQUICKSTART (1 << 10) |
#define | RHF_REQUICKSTARTED (1 << 11) |
#define | RHF_CORD (1 << 12) |
#define | RHF_NO_UNRES_UNDEF (1 << 13) |
#define | RHF_RLD_ORDER_SAFE (1 << 14) |
#define | LL_NONE 0 |
#define | LL_EXACT_MATCH (1 << 0) /* Require exact match */ |
#define | LL_IGNORE_INT_VER (1 << 1) /* Ignore interface version */ |
#define | LL_REQUIRE_MINOR (1 << 2) |
#define | LL_EXPORTS (1 << 3) |
#define | LL_DELAY_LOAD (1 << 4) |
#define | LL_DELTA (1 << 5) |
#define | MIPS_AFL_REG_NONE 0x00 /* No registers. */ |
#define | MIPS_AFL_REG_32 0x01 /* 32-bit registers. */ |
#define | MIPS_AFL_REG_64 0x02 /* 64-bit registers. */ |
#define | MIPS_AFL_REG_128 0x03 /* 128-bit registers. */ |
#define | MIPS_AFL_ASE_DSP 0x00000001 /* DSP ASE. */ |
#define | MIPS_AFL_ASE_DSPR2 0x00000002 /* DSP R2 ASE. */ |
#define | MIPS_AFL_ASE_EVA 0x00000004 /* Enhanced VA Scheme. */ |
#define | MIPS_AFL_ASE_MCU 0x00000008 /* MCU (MicroController) ASE. */ |
#define | MIPS_AFL_ASE_MDMX 0x00000010 /* MDMX ASE. */ |
#define | MIPS_AFL_ASE_MIPS3D 0x00000020 /* MIPS-3D ASE. */ |
#define | MIPS_AFL_ASE_MT 0x00000040 /* MT ASE. */ |
#define | MIPS_AFL_ASE_SMARTMIPS 0x00000080 /* SmartMIPS ASE. */ |
#define | MIPS_AFL_ASE_VIRT 0x00000100 /* VZ ASE. */ |
#define | MIPS_AFL_ASE_MSA 0x00000200 /* MSA ASE. */ |
#define | MIPS_AFL_ASE_MIPS16 0x00000400 /* MIPS16 ASE. */ |
#define | MIPS_AFL_ASE_MICROMIPS 0x00000800 /* MICROMIPS ASE. */ |
#define | MIPS_AFL_ASE_XPA 0x00001000 /* XPA ASE. */ |
#define | MIPS_AFL_ASE_MASK 0x00001fff /* All ASEs. */ |
#define | MIPS_AFL_EXT_XLR 1 /* RMI Xlr instruction. */ |
#define | MIPS_AFL_EXT_OCTEON2 2 /* Cavium Networks Octeon2. */ |
#define | MIPS_AFL_EXT_OCTEONP 3 /* Cavium Networks OcteonP. */ |
#define | MIPS_AFL_EXT_LOONGSON_3A 4 /* Loongson 3A. */ |
#define | MIPS_AFL_EXT_OCTEON 5 /* Cavium Networks Octeon. */ |
#define | MIPS_AFL_EXT_5900 6 /* MIPS R5900 instruction. */ |
#define | MIPS_AFL_EXT_4650 7 /* MIPS R4650 instruction. */ |
#define | MIPS_AFL_EXT_4010 8 /* LSI R4010 instruction. */ |
#define | MIPS_AFL_EXT_4100 9 /* NEC VR4100 instruction. */ |
#define | MIPS_AFL_EXT_3900 10 /* Toshiba R3900 instruction. */ |
#define | MIPS_AFL_EXT_10000 11 /* MIPS R10000 instruction. */ |
#define | MIPS_AFL_EXT_SB1 12 /* Broadcom SB-1 instruction. */ |
#define | MIPS_AFL_EXT_4111 13 /* NEC VR4111/VR4181 instruction. */ |
#define | MIPS_AFL_EXT_4120 14 /* NEC VR4120 instruction. */ |
#define | MIPS_AFL_EXT_5400 15 /* NEC VR5400 instruction. */ |
#define | MIPS_AFL_EXT_5500 16 /* NEC VR5500 instruction. */ |
#define | MIPS_AFL_EXT_LOONGSON_2E 17 /* ST Microelectronics Loongson 2E. */ |
#define | MIPS_AFL_EXT_LOONGSON_2F 18 /* ST Microelectronics Loongson 2F. */ |
#define | MIPS_AFL_FLAGS1_ODDSPREG 1 /* Uses odd single-precision registers. */ |
#define | EF_PARISC_TRAPNIL 0x00010000 /* Trap nil pointer dereference. */ |
#define | EF_PARISC_EXT 0x00020000 /* Program uses arch. extensions. */ |
#define | EF_PARISC_LSB 0x00040000 /* Program expects little endian. */ |
#define | EF_PARISC_WIDE 0x00080000 /* Program expects wide mode. */ |
#define | EF_PARISC_NO_KABP |
#define | EF_PARISC_LAZYSWAP 0x00400000 /* Allow lazy swapping. */ |
#define | EF_PARISC_ARCH 0x0000ffff /* Architecture version. */ |
#define | EFA_PARISC_1_0 0x020b /* PA-RISC 1.0 big-endian. */ |
#define | EFA_PARISC_1_1 0x0210 /* PA-RISC 1.1 big-endian. */ |
#define | EFA_PARISC_2_0 0x0214 /* PA-RISC 2.0 big-endian. */ |
#define | SHN_PARISC_ANSI_COMMON |
#define | SHN_PARISC_HUGE_COMMON 0xff01 /* Common blocks in huge model. */ |
#define | SHT_PARISC_EXT 0x70000000 /* Contains product specific ext. */ |
#define | SHT_PARISC_UNWIND 0x70000001 /* Unwind information. */ |
#define | SHT_PARISC_DOC 0x70000002 /* Debug info for optimized code. */ |
#define | SHF_PARISC_SHORT 0x20000000 /* Section with short addressing. */ |
#define | SHF_PARISC_HUGE 0x40000000 /* Section far from gp. */ |
#define | SHF_PARISC_SBP 0x80000000 /* Static branch prediction code. */ |
#define | STT_PARISC_MILLICODE 13 /* Millicode function entry point. */ |
#define | STT_HP_OPAQUE (STT_LOOS + 0x1) |
#define | STT_HP_STUB (STT_LOOS + 0x2) |
#define | RZ_PARISC_NONE 0 /* No reloc. */ |
#define | RZ_PARISC_DIR32 1 /* Direct 32-bit reference. */ |
#define | RZ_PARISC_DIR21L 2 /* Left 21 bits of eff. address. */ |
#define | RZ_PARISC_DIR17R 3 /* Right 17 bits of eff. address. */ |
#define | RZ_PARISC_DIR17F 4 /* 17 bits of eff. address. */ |
#define | RZ_PARISC_DIR14R 6 /* Right 14 bits of eff. address. */ |
#define | RZ_PARISC_PCREL32 9 /* 32-bit rel. address. */ |
#define | RZ_PARISC_PCREL21L 10 /* Left 21 bits of rel. address. */ |
#define | RZ_PARISC_PCREL17R 11 /* Right 17 bits of rel. address. */ |
#define | RZ_PARISC_PCREL17F 12 /* 17 bits of rel. address. */ |
#define | RZ_PARISC_PCREL14R 14 /* Right 14 bits of rel. address. */ |
#define | RZ_PARISC_DPREL21L 18 /* Left 21 bits of rel. address. */ |
#define | RZ_PARISC_DPREL14R 22 /* Right 14 bits of rel. address. */ |
#define | RZ_PARISC_GPREL21L 26 /* GP-relative, left 21 bits. */ |
#define | RZ_PARISC_GPREL14R 30 /* GP-relative, right 14 bits. */ |
#define | RZ_PARISC_LTOFF21L 34 /* LT-relative, left 21 bits. */ |
#define | RZ_PARISC_LTOFF14R 38 /* LT-relative, right 14 bits. */ |
#define | RZ_PARISC_SECREL32 41 /* 32 bits section rel. address. */ |
#define | RZ_PARISC_SEGBASE 48 /* No relocation, set segment base. */ |
#define | RZ_PARISC_SEGREL32 49 /* 32 bits segment rel. address. */ |
#define | RZ_PARISC_PLTOFF21L 50 /* PLT rel. address, left 21 bits. */ |
#define | RZ_PARISC_PLTOFF14R 54 /* PLT rel. address, right 14 bits. */ |
#define | RZ_PARISC_LTOFF_FPTR32 57 /* 32 bits LT-rel. function pointer. */ |
#define | RZ_PARISC_LTOFF_FPTR21L 58 /* LT-rel. fct ptr, left 21 bits. */ |
#define | RZ_PARISC_LTOFF_FPTR14R 62 /* LT-rel. fct ptr, right 14 bits. */ |
#define | RZ_PARISC_FPTR64 64 /* 64 bits function address. */ |
#define | RZ_PARISC_PLABEL32 65 /* 32 bits function address. */ |
#define | RZ_PARISC_PLABEL21L 66 /* Left 21 bits of fdesc address. */ |
#define | RZ_PARISC_PLABEL14R 70 /* Right 14 bits of fdesc address. */ |
#define | RZ_PARISC_PCREL64 72 /* 64 bits PC-rel. address. */ |
#define | RZ_PARISC_PCREL22F 74 /* 22 bits PC-rel. address. */ |
#define | RZ_PARISC_PCREL14WR 75 /* PC-rel. address, right 14 bits. */ |
#define | RZ_PARISC_PCREL14DR 76 /* PC rel. address, right 14 bits. */ |
#define | RZ_PARISC_PCREL16F 77 /* 16 bits PC-rel. address. */ |
#define | RZ_PARISC_PCREL16WF 78 /* 16 bits PC-rel. address. */ |
#define | RZ_PARISC_PCREL16DF 79 /* 16 bits PC-rel. address. */ |
#define | RZ_PARISC_DIR64 80 /* 64 bits of eff. address. */ |
#define | RZ_PARISC_DIR14WR 83 /* 14 bits of eff. address. */ |
#define | RZ_PARISC_DIR14DR 84 /* 14 bits of eff. address. */ |
#define | RZ_PARISC_DIR16F 85 /* 16 bits of eff. address. */ |
#define | RZ_PARISC_DIR16WF 86 /* 16 bits of eff. address. */ |
#define | RZ_PARISC_DIR16DF 87 /* 16 bits of eff. address. */ |
#define | RZ_PARISC_GPREL64 88 /* 64 bits of GP-rel. address. */ |
#define | RZ_PARISC_GPREL14WR 91 /* GP-rel. address, right 14 bits. */ |
#define | RZ_PARISC_GPREL14DR 92 /* GP-rel. address, right 14 bits. */ |
#define | RZ_PARISC_GPREL16F 93 /* 16 bits GP-rel. address. */ |
#define | RZ_PARISC_GPREL16WF 94 /* 16 bits GP-rel. address. */ |
#define | RZ_PARISC_GPREL16DF 95 /* 16 bits GP-rel. address. */ |
#define | RZ_PARISC_LTOFF64 96 /* 64 bits LT-rel. address. */ |
#define | RZ_PARISC_LTOFF14WR 99 /* LT-rel. address, right 14 bits. */ |
#define | RZ_PARISC_LTOFF14DR 100 /* LT-rel. address, right 14 bits. */ |
#define | RZ_PARISC_LTOFF16F 101 /* 16 bits LT-rel. address. */ |
#define | RZ_PARISC_LTOFF16WF 102 /* 16 bits LT-rel. address. */ |
#define | RZ_PARISC_LTOFF16DF 103 /* 16 bits LT-rel. address. */ |
#define | RZ_PARISC_SECREL64 104 /* 64 bits section rel. address. */ |
#define | RZ_PARISC_SEGREL64 112 /* 64 bits segment rel. address. */ |
#define | RZ_PARISC_PLTOFF14WR 115 /* PLT-rel. address, right 14 bits. */ |
#define | RZ_PARISC_PLTOFF14DR 116 /* PLT-rel. address, right 14 bits. */ |
#define | RZ_PARISC_PLTOFF16F 117 /* 16 bits LT-rel. address. */ |
#define | RZ_PARISC_PLTOFF16WF 118 /* 16 bits PLT-rel. address. */ |
#define | RZ_PARISC_PLTOFF16DF 119 /* 16 bits PLT-rel. address. */ |
#define | RZ_PARISC_LTOFF_FPTR64 120 /* 64 bits LT-rel. function ptr. */ |
#define | RZ_PARISC_LTOFF_FPTR14WR 123 /* LT-rel. fct. ptr., right 14 bits. */ |
#define | RZ_PARISC_LTOFF_FPTR14DR 124 /* LT-rel. fct. ptr., right 14 bits. */ |
#define | RZ_PARISC_LTOFF_FPTR16F 125 /* 16 bits LT-rel. function ptr. */ |
#define | RZ_PARISC_LTOFF_FPTR16WF 126 /* 16 bits LT-rel. function ptr. */ |
#define | RZ_PARISC_LTOFF_FPTR16DF 127 /* 16 bits LT-rel. function ptr. */ |
#define | RZ_PARISC_LORESERVE 128 |
#define | RZ_PARISC_COPY 128 /* Copy relocation. */ |
#define | RZ_PARISC_IPLT 129 /* Dynamic reloc, imported PLT */ |
#define | RZ_PARISC_EPLT 130 /* Dynamic reloc, exported PLT */ |
#define | RZ_PARISC_TPREL32 153 /* 32 bits TP-rel. address. */ |
#define | RZ_PARISC_TPREL21L 154 /* TP-rel. address, left 21 bits. */ |
#define | RZ_PARISC_TPREL14R 158 /* TP-rel. address, right 14 bits. */ |
#define | RZ_PARISC_LTOFF_TP21L 162 /* LT-TP-rel. address, left 21 bits. */ |
#define | RZ_PARISC_LTOFF_TP14R 166 /* LT-TP-rel. address, right 14 bits.*/ |
#define | RZ_PARISC_LTOFF_TP14F 167 /* 14 bits LT-TP-rel. address. */ |
#define | RZ_PARISC_TPREL64 216 /* 64 bits TP-rel. address. */ |
#define | RZ_PARISC_TPREL14WR 219 /* TP-rel. address, right 14 bits. */ |
#define | RZ_PARISC_TPREL14DR 220 /* TP-rel. address, right 14 bits. */ |
#define | RZ_PARISC_TPREL16F 221 /* 16 bits TP-rel. address. */ |
#define | RZ_PARISC_TPREL16WF 222 /* 16 bits TP-rel. address. */ |
#define | RZ_PARISC_TPREL16DF 223 /* 16 bits TP-rel. address. */ |
#define | RZ_PARISC_LTOFF_TP64 224 /* 64 bits LT-TP-rel. address. */ |
#define | RZ_PARISC_LTOFF_TP14WR 227 /* LT-TP-rel. address, right 14 bits.*/ |
#define | RZ_PARISC_LTOFF_TP14DR 228 /* LT-TP-rel. address, right 14 bits.*/ |
#define | RZ_PARISC_LTOFF_TP16F 229 /* 16 bits LT-TP-rel. address. */ |
#define | RZ_PARISC_LTOFF_TP16WF 230 /* 16 bits LT-TP-rel. address. */ |
#define | RZ_PARISC_LTOFF_TP16DF 231 /* 16 bits LT-TP-rel. address. */ |
#define | RZ_PARISC_GNU_VTENTRY 232 |
#define | RZ_PARISC_GNU_VTINHERIT 233 |
#define | RZ_PARISC_TLS_GD21L 234 /* GD 21-bit left. */ |
#define | RZ_PARISC_TLS_GD14R 235 /* GD 14-bit right. */ |
#define | RZ_PARISC_TLS_GDCALL 236 /* GD call to __t_g_a. */ |
#define | RZ_PARISC_TLS_LDM21L 237 /* LD module 21-bit left. */ |
#define | RZ_PARISC_TLS_LDM14R 238 /* LD module 14-bit right. */ |
#define | RZ_PARISC_TLS_LDMCALL 239 /* LD module call to __t_g_a. */ |
#define | RZ_PARISC_TLS_LDO21L 240 /* LD offset 21-bit left. */ |
#define | RZ_PARISC_TLS_LDO14R 241 /* LD offset 14-bit right. */ |
#define | RZ_PARISC_TLS_DTPMOD32 242 /* DTP module 32-bit. */ |
#define | RZ_PARISC_TLS_DTPMOD64 243 /* DTP module 64-bit. */ |
#define | RZ_PARISC_TLS_DTPOFF32 244 /* DTP offset 32-bit. */ |
#define | RZ_PARISC_TLS_DTPOFF64 245 /* DTP offset 32-bit. */ |
#define | RZ_PARISC_TLS_LE21L RZ_PARISC_TPREL21L |
#define | RZ_PARISC_TLS_LE14R RZ_PARISC_TPREL14R |
#define | RZ_PARISC_TLS_IE21L RZ_PARISC_LTOFF_TP21L |
#define | RZ_PARISC_TLS_IE14R RZ_PARISC_LTOFF_TP14R |
#define | RZ_PARISC_TLS_TPREL32 RZ_PARISC_TPREL32 |
#define | RZ_PARISC_TLS_TPREL64 RZ_PARISC_TPREL64 |
#define | RZ_PARISC_HIRESERVE 255 |
#define | PT_HP_TLS (PT_LOOS + 0x0) |
#define | PT_HP_CORE_NONE (PT_LOOS + 0x1) |
#define | PT_HP_CORE_VERSION (PT_LOOS + 0x2) |
#define | PT_HP_CORE_KERNEL (PT_LOOS + 0x3) |
#define | PT_HP_CORE_COMM (PT_LOOS + 0x4) |
#define | PT_HP_CORE_PROC (PT_LOOS + 0x5) |
#define | PT_HP_CORE_LOADABLE (PT_LOOS + 0x6) |
#define | PT_HP_CORE_STACK (PT_LOOS + 0x7) |
#define | PT_HP_CORE_SHM (PT_LOOS + 0x8) |
#define | PT_HP_CORE_MMF (PT_LOOS + 0x9) |
#define | PT_HP_PARALLEL (PT_LOOS + 0x10) |
#define | PT_HP_FASTBIND (PT_LOOS + 0x11) |
#define | PT_HP_OPT_ANNOT (PT_LOOS + 0x12) |
#define | PT_HP_HSL_ANNOT (PT_LOOS + 0x13) |
#define | PT_HP_STACK (PT_LOOS + 0x14) |
#define | PT_PARISC_ARCHEXT 0x70000000 |
#define | PT_PARISC_UNWIND 0x70000001 |
#define | PF_PARISC_SBP 0x08000000 |
#define | PF_HP_PAGE_SIZE 0x00100000 |
#define | PF_HP_FAR_SHARED 0x00200000 |
#define | PF_HP_NEAR_SHARED 0x00400000 |
#define | PF_HP_CODE 0x01000000 |
#define | PF_HP_MODIFY 0x02000000 |
#define | PF_HP_LAZYSWAP 0x04000000 |
#define | PF_HP_SBP 0x08000000 |
#define | EF_ALPHA_32BIT 1 /* All addresses must be < 2GB. */ |
#define | EF_ALPHA_CANRELAX 2 /* Relocations for relaxing exist. */ |
#define | SHT_ALPHA_DEBUG 0x70000001 |
#define | SHT_ALPHA_REGINFO 0x70000002 |
#define | SHF_ALPHA_GPREL 0x10000000 |
#define | STO_ALPHA_NOPV 0x80 /* No PV required. */ |
#define | STO_ALPHA_STD_GPLOAD 0x88 /* PV only used for initial ldgp. */ |
#define | RZ_ALPHA_NONE 0 /* No reloc */ |
#define | RZ_ALPHA_REFLONG 1 /* Direct 32 bit */ |
#define | RZ_ALPHA_REFQUAD 2 /* Direct 64 bit */ |
#define | RZ_ALPHA_GPREL32 3 /* GP relative 32 bit */ |
#define | RZ_ALPHA_LITERAL 4 /* GP relative 16 bit w/optimization */ |
#define | RZ_ALPHA_LITUSE 5 /* Optimization hint for LITERAL */ |
#define | RZ_ALPHA_GPDISP 6 /* Add displacement to GP */ |
#define | RZ_ALPHA_BRADDR 7 /* PC+4 relative 23 bit shifted */ |
#define | RZ_ALPHA_HINT 8 /* PC+4 relative 16 bit shifted */ |
#define | RZ_ALPHA_SREL16 9 /* PC relative 16 bit */ |
#define | RZ_ALPHA_SREL32 10 /* PC relative 32 bit */ |
#define | RZ_ALPHA_SREL64 11 /* PC relative 64 bit */ |
#define | RZ_ALPHA_GPRELHIGH 17 /* GP relative 32 bit, high 16 bits */ |
#define | RZ_ALPHA_GPRELLOW 18 /* GP relative 32 bit, low 16 bits */ |
#define | RZ_ALPHA_GPREL16 19 /* GP relative 16 bit */ |
#define | RZ_ALPHA_COPY 24 /* Copy symbol at runtime */ |
#define | RZ_ALPHA_GLOB_DAT 25 /* Create GOT entry */ |
#define | RZ_ALPHA_JMP_SLOT 26 /* Create PLT entry */ |
#define | RZ_ALPHA_RELATIVE 27 /* Adjust by program base */ |
#define | RZ_ALPHA_TLS_GD_HI 28 |
#define | RZ_ALPHA_TLSGD 29 |
#define | RZ_ALPHA_TLS_LDM 30 |
#define | RZ_ALPHA_DTPMOD64 31 |
#define | RZ_ALPHA_GOTDTPREL 32 |
#define | RZ_ALPHA_DTPREL64 33 |
#define | RZ_ALPHA_DTPRELHI 34 |
#define | RZ_ALPHA_DTPRELLO 35 |
#define | RZ_ALPHA_DTPREL16 36 |
#define | RZ_ALPHA_GOTTPREL 37 |
#define | RZ_ALPHA_TPREL64 38 |
#define | RZ_ALPHA_TPRELHI 39 |
#define | RZ_ALPHA_TPRELLO 40 |
#define | RZ_ALPHA_TPREL16 41 |
#define | RZ_ALPHA_NUM 46 |
#define | LITUSE_ALPHA_ADDR 0 |
#define | LITUSE_ALPHA_BASE 1 |
#define | LITUSE_ALPHA_BYTOFF 2 |
#define | LITUSE_ALPHA_JSR 3 |
#define | LITUSE_ALPHA_TLS_GD 4 |
#define | LITUSE_ALPHA_TLS_LDM 5 |
#define | DT_ALPHA_PLTRO (DT_LOPROC + 0) |
#define | DT_ALPHA_NUM 1 |
#define | EF_PPC_EMB 0x80000000 /* PowerPC embedded flag */ |
#define | EF_PPC_RELOCATABLE 0x00010000 /* PowerPC -mrelocatable flag*/ |
#define | EF_PPC_RELOCATABLE_LIB |
#define | RZ_PPC_NONE 0 |
#define | RZ_PPC_ADDR32 1 /* 32bit absolute address */ |
#define | RZ_PPC_ADDR24 2 /* 26bit address, 2 bits ignored. */ |
#define | RZ_PPC_ADDR16 3 /* 16bit absolute address */ |
#define | RZ_PPC_ADDR16_LO 4 /* lower 16bit of absolute address */ |
#define | RZ_PPC_ADDR16_HI 5 /* high 16bit of absolute address */ |
#define | RZ_PPC_ADDR16_HA 6 /* adjusted high 16bit */ |
#define | RZ_PPC_ADDR14 7 /* 16bit address, 2 bits ignored */ |
#define | RZ_PPC_ADDR14_BRTAKEN 8 |
#define | RZ_PPC_ADDR14_BRNTAKEN 9 |
#define | RZ_PPC_REL24 10 /* PC relative 26 bit */ |
#define | RZ_PPC_REL14 11 /* PC relative 16 bit */ |
#define | RZ_PPC_REL14_BRTAKEN 12 |
#define | RZ_PPC_REL14_BRNTAKEN 13 |
#define | RZ_PPC_GOT16 14 |
#define | RZ_PPC_GOT16_LO 15 |
#define | RZ_PPC_GOT16_HI 16 |
#define | RZ_PPC_GOT16_HA 17 |
#define | RZ_PPC_PLTREL24 18 |
#define | RZ_PPC_COPY 19 |
#define | RZ_PPC_GLOB_DAT 20 |
#define | RZ_PPC_JMP_SLOT 21 |
#define | RZ_PPC_RELATIVE 22 |
#define | RZ_PPC_LOCAL24PC 23 |
#define | RZ_PPC_UADDR32 24 |
#define | RZ_PPC_UADDR16 25 |
#define | RZ_PPC_REL32 26 |
#define | RZ_PPC_PLT32 27 |
#define | RZ_PPC_PLTREL32 28 |
#define | RZ_PPC_PLT16_LO 29 |
#define | RZ_PPC_PLT16_HI 30 |
#define | RZ_PPC_PLT16_HA 31 |
#define | RZ_PPC_SDAREL16 32 |
#define | RZ_PPC_SECTOFF 33 |
#define | RZ_PPC_SECTOFF_LO 34 |
#define | RZ_PPC_SECTOFF_HI 35 |
#define | RZ_PPC_SECTOFF_HA 36 |
#define | RZ_PPC_TLS 67 /* none (sym+add)@tls */ |
#define | RZ_PPC_DTPMOD32 68 /* word32 (sym+add)@dtpmod */ |
#define | RZ_PPC_TPREL16 69 /* half16* (sym+add)@tprel */ |
#define | RZ_PPC_TPREL16_LO 70 /* half16 (sym+add)@tprel@l */ |
#define | RZ_PPC_TPREL16_HI 71 /* half16 (sym+add)@tprel@h */ |
#define | RZ_PPC_TPREL16_HA 72 /* half16 (sym+add)@tprel@ha */ |
#define | RZ_PPC_TPREL32 73 /* word32 (sym+add)@tprel */ |
#define | RZ_PPC_DTPREL16 74 /* half16* (sym+add)@dtprel */ |
#define | RZ_PPC_DTPREL16_LO 75 /* half16 (sym+add)@dtprel@l */ |
#define | RZ_PPC_DTPREL16_HI 76 /* half16 (sym+add)@dtprel@h */ |
#define | RZ_PPC_DTPREL16_HA 77 /* half16 (sym+add)@dtprel@ha */ |
#define | RZ_PPC_DTPREL32 78 /* word32 (sym+add)@dtprel */ |
#define | RZ_PPC_GOT_TLSGD16 79 /* half16* (sym+add)@got@tlsgd */ |
#define | RZ_PPC_GOT_TLSGD16_LO 80 /* half16 (sym+add)@got@tlsgd@l */ |
#define | RZ_PPC_GOT_TLSGD16_HI 81 /* half16 (sym+add)@got@tlsgd@h */ |
#define | RZ_PPC_GOT_TLSGD16_HA 82 /* half16 (sym+add)@got@tlsgd@ha */ |
#define | RZ_PPC_GOT_TLSLD16 83 /* half16* (sym+add)@got@tlsld */ |
#define | RZ_PPC_GOT_TLSLD16_LO 84 /* half16 (sym+add)@got@tlsld@l */ |
#define | RZ_PPC_GOT_TLSLD16_HI 85 /* half16 (sym+add)@got@tlsld@h */ |
#define | RZ_PPC_GOT_TLSLD16_HA 86 /* half16 (sym+add)@got@tlsld@ha */ |
#define | RZ_PPC_GOT_TPREL16 87 /* half16* (sym+add)@got@tprel */ |
#define | RZ_PPC_GOT_TPREL16_LO 88 /* half16 (sym+add)@got@tprel@l */ |
#define | RZ_PPC_GOT_TPREL16_HI 89 /* half16 (sym+add)@got@tprel@h */ |
#define | RZ_PPC_GOT_TPREL16_HA 90 /* half16 (sym+add)@got@tprel@ha */ |
#define | RZ_PPC_GOT_DTPREL16 91 /* half16* (sym+add)@got@dtprel */ |
#define | RZ_PPC_GOT_DTPREL16_LO 92 /* half16* (sym+add)@got@dtprel@l */ |
#define | RZ_PPC_GOT_DTPREL16_HI 93 /* half16* (sym+add)@got@dtprel@h */ |
#define | RZ_PPC_GOT_DTPREL16_HA 94 /* half16* (sym+add)@got@dtprel@ha */ |
#define | RZ_PPC_TLSGD 95 /* none (sym+add)@tlsgd */ |
#define | RZ_PPC_TLSLD 96 /* none (sym+add)@tlsld */ |
#define | RZ_PPC_EMB_NADDR32 101 |
#define | RZ_PPC_EMB_NADDR16 102 |
#define | RZ_PPC_EMB_NADDR16_LO 103 |
#define | RZ_PPC_EMB_NADDR16_HI 104 |
#define | RZ_PPC_EMB_NADDR16_HA 105 |
#define | RZ_PPC_EMB_SDAI16 106 |
#define | RZ_PPC_EMB_SDA2I16 107 |
#define | RZ_PPC_EMB_SDA2REL 108 |
#define | RZ_PPC_EMB_SDA21 109 /* 16 bit offset in SDA */ |
#define | RZ_PPC_EMB_MRKREF 110 |
#define | RZ_PPC_EMB_RELSEC16 111 |
#define | RZ_PPC_EMB_RELST_LO 112 |
#define | RZ_PPC_EMB_RELST_HI 113 |
#define | RZ_PPC_EMB_RELST_HA 114 |
#define | RZ_PPC_EMB_BIT_FLD 115 |
#define | RZ_PPC_EMB_RELSDA 116 /* 16 bit relative offset in SDA */ |
#define | RZ_PPC_DIAB_SDA21_LO 180 /* like EMB_SDA21, but lower 16 bit */ |
#define | RZ_PPC_DIAB_SDA21_HI 181 /* like EMB_SDA21, but high 16 bit */ |
#define | RZ_PPC_DIAB_SDA21_HA 182 /* like EMB_SDA21, adjusted high 16 */ |
#define | RZ_PPC_DIAB_RELSDA_LO 183 /* like EMB_RELSDA, but lower 16 bit */ |
#define | RZ_PPC_DIAB_RELSDA_HI 184 /* like EMB_RELSDA, but high 16 bit */ |
#define | RZ_PPC_DIAB_RELSDA_HA 185 /* like EMB_RELSDA, adjusted high 16 */ |
#define | RZ_PPC_IRELATIVE 248 |
#define | RZ_PPC_REL16 249 /* half16 (sym+add-.) */ |
#define | RZ_PPC_REL16_LO 250 /* half16 (sym+add-.)@l */ |
#define | RZ_PPC_REL16_HI 251 /* half16 (sym+add-.)@h */ |
#define | RZ_PPC_REL16_HA 252 /* half16 (sym+add-.)@ha */ |
#define | RZ_PPC_TOC16 255 |
#define | DT_PPC_GOT (DT_LOPROC + 0) |
#define | DT_PPC_OPT (DT_LOPROC + 1) |
#define | DT_PPC_NUM 2 |
#define | PPC_OPT_TLS 1 |
#define | RZ_PPC64_NONE RZ_PPC_NONE |
#define | RZ_PPC64_ADDR32 RZ_PPC_ADDR32 /* 32bit absolute address */ |
#define | RZ_PPC64_ADDR24 RZ_PPC_ADDR24 /* 24bit address, word aligned */ |
#define | RZ_PPC64_ADDR16 RZ_PPC_ADDR16 /* 16bit absolute address */ |
#define | RZ_PPC64_ADDR16_LO RZ_PPC_ADDR16_LO /* lower 16bits of address */ |
#define | RZ_PPC64_ADDR16_HI RZ_PPC_ADDR16_HI /* high 16bits of address. */ |
#define | RZ_PPC64_ADDR16_HA RZ_PPC_ADDR16_HA /* adjusted high 16bits. */ |
#define | RZ_PPC64_ADDR14 RZ_PPC_ADDR14 /* 16bit address, word aligned */ |
#define | RZ_PPC64_ADDR14_BRTAKEN RZ_PPC_ADDR14_BRTAKEN |
#define | RZ_PPC64_ADDR14_BRNTAKEN RZ_PPC_ADDR14_BRNTAKEN |
#define | RZ_PPC64_REL24 RZ_PPC_REL24 /* PC-rel. 26 bit, word aligned */ |
#define | RZ_PPC64_REL14 RZ_PPC_REL14 /* PC relative 16 bit */ |
#define | RZ_PPC64_REL14_BRTAKEN RZ_PPC_REL14_BRTAKEN |
#define | RZ_PPC64_REL14_BRNTAKEN RZ_PPC_REL14_BRNTAKEN |
#define | RZ_PPC64_GOT16 RZ_PPC_GOT16 |
#define | RZ_PPC64_GOT16_LO RZ_PPC_GOT16_LO |
#define | RZ_PPC64_GOT16_HI RZ_PPC_GOT16_HI |
#define | RZ_PPC64_GOT16_HA RZ_PPC_GOT16_HA |
#define | RZ_PPC64_COPY RZ_PPC_COPY |
#define | RZ_PPC64_GLOB_DAT RZ_PPC_GLOB_DAT |
#define | RZ_PPC64_JMP_SLOT RZ_PPC_JMP_SLOT |
#define | RZ_PPC64_RELATIVE RZ_PPC_RELATIVE |
#define | RZ_PPC64_UADDR32 RZ_PPC_UADDR32 |
#define | RZ_PPC64_UADDR16 RZ_PPC_UADDR16 |
#define | RZ_PPC64_REL32 RZ_PPC_REL32 |
#define | RZ_PPC64_PLT32 RZ_PPC_PLT32 |
#define | RZ_PPC64_PLTREL32 RZ_PPC_PLTREL32 |
#define | RZ_PPC64_PLT16_LO RZ_PPC_PLT16_LO |
#define | RZ_PPC64_PLT16_HI RZ_PPC_PLT16_HI |
#define | RZ_PPC64_PLT16_HA RZ_PPC_PLT16_HA |
#define | RZ_PPC64_SECTOFF RZ_PPC_SECTOFF |
#define | RZ_PPC64_SECTOFF_LO RZ_PPC_SECTOFF_LO |
#define | RZ_PPC64_SECTOFF_HI RZ_PPC_SECTOFF_HI |
#define | RZ_PPC64_SECTOFF_HA RZ_PPC_SECTOFF_HA |
#define | RZ_PPC64_ADDR30 37 /* word30 (S + A - P) >> 2 */ |
#define | RZ_PPC64_ADDR64 38 /* doubleword64 S + A */ |
#define | RZ_PPC64_ADDR16_HIGHER 39 /* half16 #higher(S + A) */ |
#define | RZ_PPC64_ADDR16_HIGHERA 40 /* half16 #highera(S + A) */ |
#define | RZ_PPC64_ADDR16_HIGHEST 41 /* half16 #highest(S + A) */ |
#define | RZ_PPC64_ADDR16_HIGHESTA 42 /* half16 #highesta(S + A) */ |
#define | RZ_PPC64_UADDR64 43 /* doubleword64 S + A */ |
#define | RZ_PPC64_REL64 44 /* doubleword64 S + A - P */ |
#define | RZ_PPC64_PLT64 45 /* doubleword64 L + A */ |
#define | RZ_PPC64_PLTREL64 46 /* doubleword64 L + A - P */ |
#define | RZ_PPC64_TOC16 47 /* half16* S + A - .TOC */ |
#define | RZ_PPC64_TOC16_LO 48 /* half16 #lo(S + A - .TOC.) */ |
#define | RZ_PPC64_TOC16_HI 49 /* half16 #hi(S + A - .TOC.) */ |
#define | RZ_PPC64_TOC16_HA 50 /* half16 #ha(S + A - .TOC.) */ |
#define | RZ_PPC64_TOC 51 /* doubleword64 .TOC */ |
#define | RZ_PPC64_PLTGOT16 52 /* half16* M + A */ |
#define | RZ_PPC64_PLTGOT16_LO 53 /* half16 #lo(M + A) */ |
#define | RZ_PPC64_PLTGOT16_HI 54 /* half16 #hi(M + A) */ |
#define | RZ_PPC64_PLTGOT16_HA 55 /* half16 #ha(M + A) */ |
#define | RZ_PPC64_ADDR16_DS 56 /* half16ds* (S + A) >> 2 */ |
#define | RZ_PPC64_ADDR16_LO_DS 57 /* half16ds #lo(S + A) >> 2 */ |
#define | RZ_PPC64_GOT16_DS 58 /* half16ds* (G + A) >> 2 */ |
#define | RZ_PPC64_GOT16_LO_DS 59 /* half16ds #lo(G + A) >> 2 */ |
#define | RZ_PPC64_PLT16_LO_DS 60 /* half16ds #lo(L + A) >> 2 */ |
#define | RZ_PPC64_SECTOFF_DS 61 /* half16ds* (R + A) >> 2 */ |
#define | RZ_PPC64_SECTOFF_LO_DS 62 /* half16ds #lo(R + A) >> 2 */ |
#define | RZ_PPC64_TOC16_DS 63 /* half16ds* (S + A - .TOC.) >> 2 */ |
#define | RZ_PPC64_TOC16_LO_DS 64 /* half16ds #lo(S + A - .TOC.) >> 2 */ |
#define | RZ_PPC64_PLTGOT16_DS 65 /* half16ds* (M + A) >> 2 */ |
#define | RZ_PPC64_PLTGOT16_LO_DS 66 /* half16ds #lo(M + A) >> 2 */ |
#define | RZ_PPC64_TLS 67 /* none (sym+add)@tls */ |
#define | RZ_PPC64_DTPMOD64 68 /* doubleword64 (sym+add)@dtpmod */ |
#define | RZ_PPC64_TPREL16 69 /* half16* (sym+add)@tprel */ |
#define | RZ_PPC64_TPREL16_LO 70 /* half16 (sym+add)@tprel@l */ |
#define | RZ_PPC64_TPREL16_HI 71 /* half16 (sym+add)@tprel@h */ |
#define | RZ_PPC64_TPREL16_HA 72 /* half16 (sym+add)@tprel@ha */ |
#define | RZ_PPC64_TPREL64 73 /* doubleword64 (sym+add)@tprel */ |
#define | RZ_PPC64_DTPREL16 74 /* half16* (sym+add)@dtprel */ |
#define | RZ_PPC64_DTPREL16_LO 75 /* half16 (sym+add)@dtprel@l */ |
#define | RZ_PPC64_DTPREL16_HI 76 /* half16 (sym+add)@dtprel@h */ |
#define | RZ_PPC64_DTPREL16_HA 77 /* half16 (sym+add)@dtprel@ha */ |
#define | RZ_PPC64_DTPREL64 78 /* doubleword64 (sym+add)@dtprel */ |
#define | RZ_PPC64_GOT_TLSGD16 79 /* half16* (sym+add)@got@tlsgd */ |
#define | RZ_PPC64_GOT_TLSGD16_LO 80 /* half16 (sym+add)@got@tlsgd@l */ |
#define | RZ_PPC64_GOT_TLSGD16_HI 81 /* half16 (sym+add)@got@tlsgd@h */ |
#define | RZ_PPC64_GOT_TLSGD16_HA 82 /* half16 (sym+add)@got@tlsgd@ha */ |
#define | RZ_PPC64_GOT_TLSLD16 83 /* half16* (sym+add)@got@tlsld */ |
#define | RZ_PPC64_GOT_TLSLD16_LO 84 /* half16 (sym+add)@got@tlsld@l */ |
#define | RZ_PPC64_GOT_TLSLD16_HI 85 /* half16 (sym+add)@got@tlsld@h */ |
#define | RZ_PPC64_GOT_TLSLD16_HA 86 /* half16 (sym+add)@got@tlsld@ha */ |
#define | RZ_PPC64_GOT_TPREL16_DS 87 /* half16ds* (sym+add)@got@tprel */ |
#define | RZ_PPC64_GOT_TPREL16_LO_DS 88 /* half16ds (sym+add)@got@tprel@l */ |
#define | RZ_PPC64_GOT_TPREL16_HI 89 /* half16 (sym+add)@got@tprel@h */ |
#define | RZ_PPC64_GOT_TPREL16_HA 90 /* half16 (sym+add)@got@tprel@ha */ |
#define | RZ_PPC64_GOT_DTPREL16_DS 91 /* half16ds* (sym+add)@got@dtprel */ |
#define | RZ_PPC64_GOT_DTPREL16_LO_DS 92 /* half16ds (sym+add)@got@dtprel@l */ |
#define | RZ_PPC64_GOT_DTPREL16_HI 93 /* half16 (sym+add)@got@dtprel@h */ |
#define | RZ_PPC64_GOT_DTPREL16_HA 94 /* half16 (sym+add)@got@dtprel@ha */ |
#define | RZ_PPC64_TPREL16_DS 95 /* half16ds* (sym+add)@tprel */ |
#define | RZ_PPC64_TPREL16_LO_DS 96 /* half16ds (sym+add)@tprel@l */ |
#define | RZ_PPC64_TPREL16_HIGHER 97 /* half16 (sym+add)@tprel@higher */ |
#define | RZ_PPC64_TPREL16_HIGHERA 98 /* half16 (sym+add)@tprel@highera */ |
#define | RZ_PPC64_TPREL16_HIGHEST 99 /* half16 (sym+add)@tprel@highest */ |
#define | RZ_PPC64_TPREL16_HIGHESTA 100 /* half16 (sym+add)@tprel@highesta */ |
#define | RZ_PPC64_DTPREL16_DS 101 /* half16ds* (sym+add)@dtprel */ |
#define | RZ_PPC64_DTPREL16_LO_DS 102 /* half16ds (sym+add)@dtprel@l */ |
#define | RZ_PPC64_DTPREL16_HIGHER 103 /* half16 (sym+add)@dtprel@higher */ |
#define | RZ_PPC64_DTPREL16_HIGHERA 104 /* half16 (sym+add)@dtprel@highera */ |
#define | RZ_PPC64_DTPREL16_HIGHEST 105 /* half16 (sym+add)@dtprel@highest */ |
#define | RZ_PPC64_DTPREL16_HIGHESTA 106 /* half16 (sym+add)@dtprel@highesta */ |
#define | RZ_PPC64_TLSGD 107 /* none (sym+add)@tlsgd */ |
#define | RZ_PPC64_TLSLD 108 /* none (sym+add)@tlsld */ |
#define | RZ_PPC64_TOCSAVE 109 /* none */ |
#define | RZ_PPC64_ADDR16_HIGH 110 |
#define | RZ_PPC64_ADDR16_HIGHA 111 |
#define | RZ_PPC64_TPREL16_HIGH 112 |
#define | RZ_PPC64_TPREL16_HIGHA 113 |
#define | RZ_PPC64_DTPREL16_HIGH 114 |
#define | RZ_PPC64_DTPREL16_HIGHA 115 |
#define | RZ_PPC64_JMP_IREL 247 |
#define | RZ_PPC64_IRELATIVE 248 |
#define | RZ_PPC64_REL16 249 /* half16 (sym+add-.) */ |
#define | RZ_PPC64_REL16_LO 250 /* half16 (sym+add-.)@l */ |
#define | RZ_PPC64_REL16_HI 251 /* half16 (sym+add-.)@h */ |
#define | RZ_PPC64_REL16_HA 252 /* half16 (sym+add-.)@ha */ |
#define | EF_PPC64_ABI 3 |
#define | DT_PPC64_GLINK (DT_LOPROC + 0) |
#define | DT_PPC64_OPD (DT_LOPROC + 1) |
#define | DT_PPC64_OPDSZ (DT_LOPROC + 2) |
#define | DT_PPC64_OPT (DT_LOPROC + 3) |
#define | DT_PPC64_NUM 4 |
#define | PPC64_OPT_TLS 1 |
#define | PPC64_OPT_MULTI_TOC 2 |
#define | PPC64_OPT_LOCALENTRY 4 |
#define | STO_PPC64_LOCAL_BIT 5 |
#define | STO_PPC64_LOCAL_MASK (7 << STO_PPC64_LOCAL_BIT) |
#define | PPC64_LOCAL_ENTRY_OFFSET(other) (((1 << (((other)&STO_PPC64_LOCAL_MASK) >> STO_PPC64_LOCAL_BIT)) >> 2) << 2) |
#define | EF_ARM_RELEXEC 0x01 |
#define | EF_ARM_HASENTRY 0x02 |
#define | EF_ARM_INTERWORK 0x04 |
#define | EF_ARM_APCS_26 0x08 |
#define | EF_ARM_APCS_FLOAT 0x10 |
#define | EF_ARM_PIC 0x20 |
#define | EF_ARM_ALIGN8 0x40 /* 8-bit structure alignment is in use */ |
#define | EF_ARM_NEW_ABI 0x80 |
#define | EF_ARM_OLD_ABI 0x100 |
#define | EF_ARM_SOFT_FLOAT 0x200 |
#define | EF_ARM_VFP_FLOAT 0x400 |
#define | EF_ARM_MAVERICK_FLOAT 0x800 |
#define | EF_ARM_ABI_FLOAT_SOFT 0x200 /* NB conflicts with EF_ARM_SOFT_FLOAT */ |
#define | EF_ARM_ABI_FLOAT_HARD 0x400 /* NB conflicts with EF_ARM_VFP_FLOAT */ |
#define | EF_ARM_SYMSARESORTED 0x04 |
#define | EF_ARM_DYNSYMSUSESEGIDX 0x08 |
#define | EF_ARM_MAPSYMSFIRST 0x10 |
#define | EF_ARM_EABIMASK 0XFF000000 |
#define | EF_ARM_BE8 0x00800000 |
#define | EF_ARM_LE8 0x00400000 |
#define | EF_ARM_EABI_VERSION(flags) ((flags)&EF_ARM_EABIMASK) |
#define | EF_ARM_EABI_UNKNOWN 0x00000000 |
#define | EF_ARM_EABI_VER1 0x01000000 |
#define | EF_ARM_EABI_VER2 0x02000000 |
#define | EF_ARM_EABI_VER3 0x03000000 |
#define | EF_ARM_EABI_VER4 0x04000000 |
#define | EF_ARM_EABI_VER5 0x05000000 |
#define | STT_ARM_TFUNC STT_LOPROC /* A Thumb function. */ |
#define | STT_ARM_16BIT STT_HIPROC /* A Thumb label. */ |
#define | SHF_ARM_ENTRYSECT 0x10000000 /* Section contains an entry point */ |
#define | SHF_ARM_COMDEF |
#define | PF_ARM_SB |
#define | PF_ARM_PI 0x20000000 /* Position-independent segment. */ |
#define | PF_ARM_ABS 0x40000000 /* Absolute segment. */ |
#define | PT_ARM_EXIDX (PT_LOPROC + 1) /* ARM unwind segment. */ |
#define | SHT_ARM_EXIDX (SHT_LOPROC + 1) /* ARM unwind section. */ |
#define | SHT_ARM_PREEMPTMAP (SHT_LOPROC + 2) /* Preemption details. */ |
#define | SHT_ARM_ATTRIBUTES (SHT_LOPROC + 3) /* ARM attributes section. */ |
#define | RZ_AARCH64_NONE 0 /* No relocation. */ |
#define | RZ_AARCH64_P32_ABS32 1 /* Direct 32 bit. */ |
#define | RZ_AARCH64_P32_COPY 180 /* Copy symbol at runtime. */ |
#define | RZ_AARCH64_P32_GLOB_DAT 181 /* Create GOT entry. */ |
#define | RZ_AARCH64_P32_JUMP_SLOT 182 /* Create PLT entry. */ |
#define | RZ_AARCH64_P32_RELATIVE 183 /* Adjust by program base. */ |
#define | RZ_AARCH64_P32_TLS_DTPMOD 184 /* Module number, 32 bit. */ |
#define | RZ_AARCH64_P32_TLS_DTPREL 185 /* Module-relative offset, 32 bit. */ |
#define | RZ_AARCH64_P32_TLS_TPREL 186 /* TP-relative offset, 32 bit. */ |
#define | RZ_AARCH64_P32_TLSDESC 187 /* TLS Descriptor. */ |
#define | RZ_AARCH64_P32_IRELATIVE 188 /* STT_GNU_IFUNC relocation. */ |
#define | RZ_AARCH64_ABS64 257 /* Direct 64 bit. */ |
#define | RZ_AARCH64_ABS32 258 /* Direct 32 bit. */ |
#define | RZ_AARCH64_ABS16 259 /* Direct 16-bit. */ |
#define | RZ_AARCH64_PREL64 260 /* PC-relative 64-bit. */ |
#define | RZ_AARCH64_PREL32 261 /* PC-relative 32-bit. */ |
#define | RZ_AARCH64_PREL16 262 /* PC-relative 16-bit. */ |
#define | RZ_AARCH64_MOVW_UABS_G0 263 /* Dir. MOVZ imm. from bits 15:0. */ |
#define | RZ_AARCH64_MOVW_UABS_G0_NC 264 /* Likewise for MOVK; no check. */ |
#define | RZ_AARCH64_MOVW_UABS_G1 265 /* Dir. MOVZ imm. from bits 31:16. */ |
#define | RZ_AARCH64_MOVW_UABS_G1_NC 266 /* Likewise for MOVK; no check. */ |
#define | RZ_AARCH64_MOVW_UABS_G2 267 /* Dir. MOVZ imm. from bits 47:32. */ |
#define | RZ_AARCH64_MOVW_UABS_G2_NC 268 /* Likewise for MOVK; no check. */ |
#define | RZ_AARCH64_MOVW_UABS_G3 269 /* Dir. MOV{K,Z} imm. from 63:48. */ |
#define | RZ_AARCH64_MOVW_SABS_G0 270 /* Dir. MOV{N,Z} imm. from 15:0. */ |
#define | RZ_AARCH64_MOVW_SABS_G1 271 /* Dir. MOV{N,Z} imm. from 31:16. */ |
#define | RZ_AARCH64_MOVW_SABS_G2 272 /* Dir. MOV{N,Z} imm. from 47:32. */ |
#define | RZ_AARCH64_LD_PREL_LO19 273 /* PC-rel. LD imm. from bits 20:2. */ |
#define | RZ_AARCH64_ADR_PREL_LO21 274 /* PC-rel. ADR imm. from bits 20:0. */ |
#define | RZ_AARCH64_ADR_PREL_PG_HI21 275 /* Page-rel. ADRP imm. from 32:12. */ |
#define | RZ_AARCH64_ADR_PREL_PG_HI21_NC 276 /* Likewise; no overflow check. */ |
#define | RZ_AARCH64_ADD_ABS_LO12_NC 277 /* Dir. ADD imm. from bits 11:0. */ |
#define | RZ_AARCH64_LDST8_ABS_LO12_NC 278 /* Likewise for LD/ST; no check. */ |
#define | RZ_AARCH64_TSTBR14 279 /* PC-rel. TBZ/TBNZ imm. from 15:2. */ |
#define | RZ_AARCH64_CONDBR19 280 /* PC-rel. cond. br. imm. from 20:2. */ |
#define | RZ_AARCH64_JUMP26 282 /* PC-rel. B imm. from bits 27:2. */ |
#define | RZ_AARCH64_CALL26 283 /* Likewise for CALL. */ |
#define | RZ_AARCH64_LDST16_ABS_LO12_NC 284 /* Dir. ADD imm. from bits 11:1. */ |
#define | RZ_AARCH64_LDST32_ABS_LO12_NC 285 /* Likewise for bits 11:2. */ |
#define | RZ_AARCH64_LDST64_ABS_LO12_NC 286 /* Likewise for bits 11:3. */ |
#define | RZ_AARCH64_MOVW_PREL_G0 287 /* PC-rel. MOV{N,Z} imm. from 15:0. */ |
#define | RZ_AARCH64_MOVW_PREL_G0_NC 288 /* Likewise for MOVK; no check. */ |
#define | RZ_AARCH64_MOVW_PREL_G1 289 /* PC-rel. MOV{N,Z} imm. from 31:16. */ |
#define | RZ_AARCH64_MOVW_PREL_G1_NC 290 /* Likewise for MOVK; no check. */ |
#define | RZ_AARCH64_MOVW_PREL_G2 291 /* PC-rel. MOV{N,Z} imm. from 47:32. */ |
#define | RZ_AARCH64_MOVW_PREL_G2_NC 292 /* Likewise for MOVK; no check. */ |
#define | RZ_AARCH64_MOVW_PREL_G3 293 /* PC-rel. MOV{N,Z} imm. from 63:48. */ |
#define | RZ_AARCH64_LDST128_ABS_LO12_NC 299 /* Dir. ADD imm. from bits 11:4. */ |
#define | RZ_AARCH64_MOVW_GOTOFF_G0 300 /* GOT-rel. off. MOV{N,Z} imm. 15:0. */ |
#define | RZ_AARCH64_MOVW_GOTOFF_G0_NC 301 /* Likewise for MOVK; no check. */ |
#define | RZ_AARCH64_MOVW_GOTOFF_G1 302 /* GOT-rel. o. MOV{N,Z} imm. 31:16. */ |
#define | RZ_AARCH64_MOVW_GOTOFF_G1_NC 303 /* Likewise for MOVK; no check. */ |
#define | RZ_AARCH64_MOVW_GOTOFF_G2 304 /* GOT-rel. o. MOV{N,Z} imm. 47:32. */ |
#define | RZ_AARCH64_MOVW_GOTOFF_G2_NC 305 /* Likewise for MOVK; no check. */ |
#define | RZ_AARCH64_MOVW_GOTOFF_G3 306 /* GOT-rel. o. MOV{N,Z} imm. 63:48. */ |
#define | RZ_AARCH64_GOTREL64 307 /* GOT-relative 64-bit. */ |
#define | RZ_AARCH64_GOTREL32 308 /* GOT-relative 32-bit. */ |
#define | RZ_AARCH64_GOT_LD_PREL19 309 /* PC-rel. GOT off. load imm. 20:2. */ |
#define | RZ_AARCH64_LD64_GOTOFF_LO15 310 /* GOT-rel. off. LD/ST imm. 14:3. */ |
#define | RZ_AARCH64_ADR_GOT_PAGE 311 /* P-page-rel. GOT off. ADRP 32:12. */ |
#define | RZ_AARCH64_LD64_GOT_LO12_NC 312 /* Dir. GOT off. LD/ST imm. 11:3. */ |
#define | RZ_AARCH64_LD64_GOTPAGE_LO15 313 /* GOT-page-rel. GOT off. LD/ST 14:3 */ |
#define | RZ_AARCH64_TLSGD_ADR_PREL21 512 /* PC-relative ADR imm. 20:0. */ |
#define | RZ_AARCH64_TLSGD_ADR_PAGE21 513 /* page-rel. ADRP imm. 32:12. */ |
#define | RZ_AARCH64_TLSGD_ADD_LO12_NC 514 /* direct ADD imm. from 11:0. */ |
#define | RZ_AARCH64_TLSGD_MOVW_G1 515 /* GOT-rel. MOV{N,Z} 31:16. */ |
#define | RZ_AARCH64_TLSGD_MOVW_G0_NC 516 /* GOT-rel. MOVK imm. 15:0. */ |
#define | RZ_AARCH64_TLSLD_ADR_PREL21 517 /* Like 512; local dynamic model. */ |
#define | RZ_AARCH64_TLSLD_ADR_PAGE21 518 /* Like 513; local dynamic model. */ |
#define | RZ_AARCH64_TLSLD_ADD_LO12_NC 519 /* Like 514; local dynamic model. */ |
#define | RZ_AARCH64_TLSLD_MOVW_G1 520 /* Like 515; local dynamic model. */ |
#define | RZ_AARCH64_TLSLD_MOVW_G0_NC 521 /* Like 516; local dynamic model. */ |
#define | RZ_AARCH64_TLSLD_LD_PREL19 522 /* TLS PC-rel. load imm. 20:2. */ |
#define | RZ_AARCH64_TLSLD_MOVW_DTPREL_G2 523 /* TLS DTP-rel. MOV{N,Z} 47:32. */ |
#define | RZ_AARCH64_TLSLD_MOVW_DTPREL_G1 524 /* TLS DTP-rel. MOV{N,Z} 31:16. */ |
#define | RZ_AARCH64_TLSLD_MOVW_DTPREL_G1_NC 525 /* Likewise; MOVK; no check. */ |
#define | RZ_AARCH64_TLSLD_MOVW_DTPREL_G0 526 /* TLS DTP-rel. MOV{N,Z} 15:0. */ |
#define | RZ_AARCH64_TLSLD_MOVW_DTPREL_G0_NC 527 /* Likewise; MOVK; no check. */ |
#define | RZ_AARCH64_TLSLD_ADD_DTPREL_HI12 528 /* DTP-rel. ADD imm. from 23:12. */ |
#define | RZ_AARCH64_TLSLD_ADD_DTPREL_LO12 529 /* DTP-rel. ADD imm. from 11:0. */ |
#define | RZ_AARCH64_TLSLD_ADD_DTPREL_LO12_NC 530 /* Likewise; no ovfl. check. */ |
#define | RZ_AARCH64_TLSLD_LDST8_DTPREL_LO12 531 /* DTP-rel. LD/ST imm. 11:0. */ |
#define | RZ_AARCH64_TLSLD_LDST8_DTPREL_LO12_NC 532 /* Likewise; no check. */ |
#define | RZ_AARCH64_TLSLD_LDST16_DTPREL_LO12 533 /* DTP-rel. LD/ST imm. 11:1. */ |
#define | RZ_AARCH64_TLSLD_LDST16_DTPREL_LO12_NC 534 /* Likewise; no check. */ |
#define | RZ_AARCH64_TLSLD_LDST32_DTPREL_LO12 535 /* DTP-rel. LD/ST imm. 11:2. */ |
#define | RZ_AARCH64_TLSLD_LDST32_DTPREL_LO12_NC 536 /* Likewise; no check. */ |
#define | RZ_AARCH64_TLSLD_LDST64_DTPREL_LO12 537 /* DTP-rel. LD/ST imm. 11:3. */ |
#define | RZ_AARCH64_TLSLD_LDST64_DTPREL_LO12_NC 538 /* Likewise; no check. */ |
#define | RZ_AARCH64_TLSIE_MOVW_GOTTPREL_G1 539 /* GOT-rel. MOV{N,Z} 31:16. */ |
#define | RZ_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC 540 /* GOT-rel. MOVK 15:0. */ |
#define | RZ_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21 541 /* Page-rel. ADRP 32:12. */ |
#define | RZ_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC 542 /* Direct LD off. 11:3. */ |
#define | RZ_AARCH64_TLSIE_LD_GOTTPREL_PREL19 543 /* PC-rel. load imm. 20:2. */ |
#define | RZ_AARCH64_TLSLE_MOVW_TPREL_G2 544 /* TLS TP-rel. MOV{N,Z} 47:32. */ |
#define | RZ_AARCH64_TLSLE_MOVW_TPREL_G1 545 /* TLS TP-rel. MOV{N,Z} 31:16. */ |
#define | RZ_AARCH64_TLSLE_MOVW_TPREL_G1_NC 546 /* Likewise; MOVK; no check. */ |
#define | RZ_AARCH64_TLSLE_MOVW_TPREL_G0 547 /* TLS TP-rel. MOV{N,Z} 15:0. */ |
#define | RZ_AARCH64_TLSLE_MOVW_TPREL_G0_NC 548 /* Likewise; MOVK; no check. */ |
#define | RZ_AARCH64_TLSLE_ADD_TPREL_HI12 549 /* TP-rel. ADD imm. 23:12. */ |
#define | RZ_AARCH64_TLSLE_ADD_TPREL_LO12 550 /* TP-rel. ADD imm. 11:0. */ |
#define | RZ_AARCH64_TLSLE_ADD_TPREL_LO12_NC 551 /* Likewise; no ovfl. check. */ |
#define | RZ_AARCH64_TLSLE_LDST8_TPREL_LO12 552 /* TP-rel. LD/ST off. 11:0. */ |
#define | RZ_AARCH64_TLSLE_LDST8_TPREL_LO12_NC 553 /* Likewise; no ovfl. check. */ |
#define | RZ_AARCH64_TLSLE_LDST16_TPREL_LO12 554 /* TP-rel. LD/ST off. 11:1. */ |
#define | RZ_AARCH64_TLSLE_LDST16_TPREL_LO12_NC 555 /* Likewise; no check. */ |
#define | RZ_AARCH64_TLSLE_LDST32_TPREL_LO12 556 /* TP-rel. LD/ST off. 11:2. */ |
#define | RZ_AARCH64_TLSLE_LDST32_TPREL_LO12_NC 557 /* Likewise; no check. */ |
#define | RZ_AARCH64_TLSLE_LDST64_TPREL_LO12 558 /* TP-rel. LD/ST off. 11:3. */ |
#define | RZ_AARCH64_TLSLE_LDST64_TPREL_LO12_NC 559 /* Likewise; no check. */ |
#define | RZ_AARCH64_TLSDESC_LD_PREL19 560 /* PC-rel. load immediate 20:2. */ |
#define | RZ_AARCH64_TLSDESC_ADR_PREL21 561 /* PC-rel. ADR immediate 20:0. */ |
#define | RZ_AARCH64_TLSDESC_ADR_PAGE21 562 /* Page-rel. ADRP imm. 32:12. */ |
#define | RZ_AARCH64_TLSDESC_LD64_LO12 563 /* Direct LD off. from 11:3. */ |
#define | RZ_AARCH64_TLSDESC_ADD_LO12 564 /* Direct ADD imm. from 11:0. */ |
#define | RZ_AARCH64_TLSDESC_OFF_G1 565 /* GOT-rel. MOV{N,Z} imm. 31:16. */ |
#define | RZ_AARCH64_TLSDESC_OFF_G0_NC 566 /* GOT-rel. MOVK imm. 15:0; no ck. */ |
#define | RZ_AARCH64_TLSDESC_LDR 567 /* Relax LDR. */ |
#define | RZ_AARCH64_TLSDESC_ADD 568 /* Relax ADD. */ |
#define | RZ_AARCH64_TLSDESC_CALL 569 /* Relax BLR. */ |
#define | RZ_AARCH64_TLSLE_LDST128_TPREL_LO12 570 /* TP-rel. LD/ST off. 11:4. */ |
#define | RZ_AARCH64_TLSLE_LDST128_TPREL_LO12_NC 571 /* Likewise; no check. */ |
#define | RZ_AARCH64_TLSLD_LDST128_DTPREL_LO12 572 /* DTP-rel. LD/ST imm. 11:4. */ |
#define | RZ_AARCH64_TLSLD_LDST128_DTPREL_LO12_NC 573 /* Likewise; no check. */ |
#define | RZ_AARCH64_COPY 1024 /* Copy symbol at runtime. */ |
#define | RZ_AARCH64_GLOB_DAT 1025 /* Create GOT entry. */ |
#define | RZ_AARCH64_JUMP_SLOT 1026 /* Create PLT entry. */ |
#define | RZ_AARCH64_RELATIVE 1027 /* Adjust by program base. */ |
#define | RZ_AARCH64_TLS_DTPMOD 1028 /* Module number, 64 bit. */ |
#define | RZ_AARCH64_TLS_DTPREL 1029 /* Module-relative offset, 64 bit. */ |
#define | RZ_AARCH64_TLS_TPREL 1030 /* TP-relative offset, 64 bit. */ |
#define | RZ_AARCH64_TLSDESC 1031 /* TLS Descriptor. */ |
#define | RZ_AARCH64_IRELATIVE 1032 /* STT_GNU_IFUNC relocation. */ |
#define | DT_AARCH64_VARIANT_PCS (DT_LOPROC + 5) |
#define | DT_AARCH64_NUM 6 |
#define | STO_AARCH64_VARIANT_PCS 0x80 |
#define | RZ_ARM_NONE 0 /* No reloc */ |
#define | RZ_ARM_PC24 |
#define | RZ_ARM_ABS32 2 /* Direct 32 bit */ |
#define | RZ_ARM_REL32 3 /* PC relative 32 bit */ |
#define | RZ_ARM_PC13 4 |
#define | RZ_ARM_ABS16 5 /* Direct 16 bit */ |
#define | RZ_ARM_ABS12 6 /* Direct 12 bit */ |
#define | RZ_ARM_THM_ABS5 7 /* Direct & 0x7C (LDR, STR). */ |
#define | RZ_ARM_ABS8 8 /* Direct 8 bit */ |
#define | RZ_ARM_SBREL32 9 |
#define | RZ_ARM_THM_PC22 10 /* PC relative 24 bit (Thumb32 BL). */ |
#define | RZ_ARM_THM_PC8 |
#define | RZ_ARM_AMP_VCALL9 12 |
#define | RZ_ARM_SWI24 13 /* Obsolete static relocation. */ |
#define | RZ_ARM_TLS_DESC 13 /* Dynamic relocation. */ |
#define | RZ_ARM_THM_SWI8 14 /* Reserved. */ |
#define | RZ_ARM_XPC25 15 /* Reserved. */ |
#define | RZ_ARM_THM_XPC22 16 /* Reserved. */ |
#define | RZ_ARM_TLS_DTPMOD32 17 /* ID of module containing symbol */ |
#define | RZ_ARM_TLS_DTPOFF32 18 /* Offset in TLS block */ |
#define | RZ_ARM_TLS_TPOFF32 19 /* Offset in static TLS block */ |
#define | RZ_ARM_COPY 20 /* Copy symbol at runtime */ |
#define | RZ_ARM_GLOB_DAT 21 /* Create GOT entry */ |
#define | RZ_ARM_JUMP_SLOT 22 /* Create PLT entry */ |
#define | RZ_ARM_RELATIVE 23 /* Adjust by program base */ |
#define | RZ_ARM_GOTOFF 24 /* 32 bit offset to GOT */ |
#define | RZ_ARM_GOTPC 25 /* 32 bit PC relative offset to GOT */ |
#define | RZ_ARM_GOT32 26 /* 32 bit GOT entry */ |
#define | RZ_ARM_PLT32 27 /* Deprecated, 32 bit PLT address. */ |
#define | RZ_ARM_CALL 28 /* PC relative 24 bit (BL, BLX). */ |
#define | RZ_ARM_JUMP24 |
#define | RZ_ARM_THM_JUMP24 30 /* PC relative 24 bit (Thumb32 B.W). */ |
#define | RZ_ARM_BASE_ABS 31 /* Adjust by program base. */ |
#define | RZ_ARM_ALU_PCREL_7_0 32 /* Obsolete. */ |
#define | RZ_ARM_ALU_PCREL_15_8 33 /* Obsolete. */ |
#define | RZ_ARM_ALU_PCREL_23_15 34 /* Obsolete. */ |
#define | RZ_ARM_LDR_SBREL_11_0 35 /* Deprecated, prog. base relative. */ |
#define | RZ_ARM_ALU_SBREL_19_12 36 /* Deprecated, prog. base relative. */ |
#define | RZ_ARM_ALU_SBREL_27_20 37 /* Deprecated, prog. base relative. */ |
#define | RZ_ARM_TARGET1 38 |
#define | RZ_ARM_SBREL31 39 /* Program base relative. */ |
#define | RZ_ARM_V4BX 40 |
#define | RZ_ARM_TARGET2 41 |
#define | RZ_ARM_PREL31 42 /* 32 bit PC relative. */ |
#define | RZ_ARM_MOVW_ABS_NC 43 /* Direct 16-bit (MOVW). */ |
#define | RZ_ARM_MOVT_ABS 44 /* Direct high 16-bit (MOVT). */ |
#define | RZ_ARM_MOVW_PREL_NC 45 /* PC relative 16-bit (MOVW). */ |
#define | RZ_ARM_MOVT_PREL 46 /* PC relative (MOVT). */ |
#define | RZ_ARM_THM_MOVW_ABS_NC 47 /* Direct 16 bit (Thumb32 MOVW). */ |
#define | RZ_ARM_THM_MOVT_ABS |
#define | RZ_ARM_THM_MOVW_PREL_NC |
#define | RZ_ARM_THM_MOVT_PREL |
#define | RZ_ARM_THM_JUMP19 |
#define | RZ_ARM_THM_JUMP6 |
#define | RZ_ARM_THM_ALU_PREL_11_0 |
#define | RZ_ARM_THM_PC12 |
#define | RZ_ARM_ABS32_NOI 55 /* Direct 32-bit. */ |
#define | RZ_ARM_REL32_NOI 56 /* PC relative 32-bit. */ |
#define | RZ_ARM_ALU_PC_G0_NC 57 /* PC relative (ADD, SUB). */ |
#define | RZ_ARM_ALU_PC_G0 58 /* PC relative (ADD, SUB). */ |
#define | RZ_ARM_ALU_PC_G1_NC 59 /* PC relative (ADD, SUB). */ |
#define | RZ_ARM_ALU_PC_G1 60 /* PC relative (ADD, SUB). */ |
#define | RZ_ARM_ALU_PC_G2 61 /* PC relative (ADD, SUB). */ |
#define | RZ_ARM_LDR_PC_G1 62 /* PC relative (LDR,STR,LDRB,STRB). */ |
#define | RZ_ARM_LDR_PC_G2 63 /* PC relative (LDR,STR,LDRB,STRB). */ |
#define | RZ_ARM_LDRS_PC_G0 |
#define | RZ_ARM_LDRS_PC_G1 |
#define | RZ_ARM_LDRS_PC_G2 |
#define | RZ_ARM_LDC_PC_G0 67 /* PC relative (LDC, STC). */ |
#define | RZ_ARM_LDC_PC_G1 68 /* PC relative (LDC, STC). */ |
#define | RZ_ARM_LDC_PC_G2 69 /* PC relative (LDC, STC). */ |
#define | RZ_ARM_ALU_SB_G0_NC 70 /* Program base relative (ADD,SUB). */ |
#define | RZ_ARM_ALU_SB_G0 71 /* Program base relative (ADD,SUB). */ |
#define | RZ_ARM_ALU_SB_G1_NC 72 /* Program base relative (ADD,SUB). */ |
#define | RZ_ARM_ALU_SB_G1 73 /* Program base relative (ADD,SUB). */ |
#define | RZ_ARM_ALU_SB_G2 74 /* Program base relative (ADD,SUB). */ |
#define | RZ_ARM_LDR_SB_G0 |
#define | RZ_ARM_LDR_SB_G1 |
#define | RZ_ARM_LDR_SB_G2 |
#define | RZ_ARM_LDRS_SB_G0 |
#define | RZ_ARM_LDRS_SB_G1 |
#define | RZ_ARM_LDRS_SB_G2 |
#define | RZ_ARM_LDC_SB_G0 81 /* Program base relative (LDC,STC). */ |
#define | RZ_ARM_LDC_SB_G1 82 /* Program base relative (LDC,STC). */ |
#define | RZ_ARM_LDC_SB_G2 83 /* Program base relative (LDC,STC). */ |
#define | RZ_ARM_MOVW_BREL_NC |
#define | RZ_ARM_MOVT_BREL |
#define | RZ_ARM_MOVW_BREL |
#define | RZ_ARM_THM_MOVW_BREL_NC |
#define | RZ_ARM_THM_MOVT_BREL |
#define | RZ_ARM_THM_MOVW_BREL |
#define | RZ_ARM_TLS_GOTDESC 90 |
#define | RZ_ARM_TLS_CALL 91 |
#define | RZ_ARM_TLS_DESCSEQ 92 /* TLS relaxation. */ |
#define | RZ_ARM_THM_TLS_CALL 93 |
#define | RZ_ARM_PLT32_ABS 94 |
#define | RZ_ARM_GOT_ABS 95 /* GOT entry. */ |
#define | RZ_ARM_GOT_PREL 96 /* PC relative GOT entry. */ |
#define | RZ_ARM_GOT_BREL12 |
#define | RZ_ARM_GOTOFF12 |
#define | RZ_ARM_GOTRELAX 99 |
#define | RZ_ARM_GNU_VTENTRY 100 |
#define | RZ_ARM_GNU_VTINHERIT 101 |
#define | RZ_ARM_THM_PC11 102 /* PC relative & 0xFFE (Thumb16 B). */ |
#define | RZ_ARM_THM_PC9 |
#define | RZ_ARM_TLS_GD32 |
#define | RZ_ARM_TLS_LDM32 |
#define | RZ_ARM_TLS_LDO32 |
#define | RZ_ARM_TLS_IE32 |
#define | RZ_ARM_TLS_LE32 |
#define | RZ_ARM_TLS_LDO12 |
#define | RZ_ARM_TLS_LE12 |
#define | RZ_ARM_TLS_IE12GP |
#define | RZ_ARM_ME_TOO 128 /* Obsolete. */ |
#define | RZ_ARM_THM_TLS_DESCSEQ 129 |
#define | RZ_ARM_THM_TLS_DESCSEQ16 129 |
#define | RZ_ARM_THM_TLS_DESCSEQ32 130 |
#define | RZ_ARM_THM_GOT_BREL12 |
#define | RZ_ARM_IRELATIVE 160 |
#define | RZ_ARM_RXPC25 249 |
#define | RZ_ARM_RSBREL32 250 |
#define | RZ_ARM_THM_RPC22 251 |
#define | RZ_ARM_RREL32 252 |
#define | RZ_ARM_RABS22 253 |
#define | RZ_ARM_RPC24 254 |
#define | RZ_ARM_RBASE 255 |
#define | RZ_ARM_NUM 256 |
#define | RZ_CKCORE_NONE 0 /* no reloc */ |
#define | RZ_CKCORE_ADDR32 1 /* direct 32 bit (S + A) */ |
#define | RZ_CKCORE_PCRELIMM8BY4 2 /* disp ((S + A - P) >> 2) & 0xff */ |
#define | RZ_CKCORE_PCRELIMM11BY2 3 /* disp ((S + A - P) >> 1) & 0x7ff */ |
#define | RZ_CKCORE_PCREL32 5 /* 32-bit rel (S + A - P) */ |
#define | RZ_CKCORE_PCRELJSR_IMM11BY2 6 /* disp ((S + A - P) >>1) & 0x7ff */ |
#define | RZ_CKCORE_RELATIVE 9 /* 32 bit adjust program base(B + A)*/ |
#define | RZ_CKCORE_COPY 10 /* 32 bit adjust by program base */ |
#define | RZ_CKCORE_GLOB_DAT 11 /* off between got and sym (S) */ |
#define | RZ_CKCORE_JUMP_SLOT 12 /* PLT entry (S) */ |
#define | RZ_CKCORE_GOTOFF 13 /* offset to GOT (S + A - GOT) */ |
#define | RZ_CKCORE_GOTPC 14 /* PC offset to GOT (GOT + A - P) */ |
#define | RZ_CKCORE_GOT32 15 /* 32 bit GOT entry (G) */ |
#define | RZ_CKCORE_PLT32 16 /* 32 bit PLT entry (G) */ |
#define | RZ_CKCORE_ADDRGOT 17 /* GOT entry in GLOB_DAT (GOT + G) */ |
#define | RZ_CKCORE_ADDRPLT 18 /* PLT entry in GLOB_DAT (GOT + G) */ |
#define | RZ_CKCORE_PCREL_IMM26BY2 19 /* ((S + A - P) >> 1) & 0x3ffffff */ |
#define | RZ_CKCORE_PCREL_IMM16BY2 20 /* disp ((S + A - P) >> 1) & 0xffff */ |
#define | RZ_CKCORE_PCREL_IMM16BY4 21 /* disp ((S + A - P) >> 2) & 0xffff */ |
#define | RZ_CKCORE_PCREL_IMM10BY2 22 /* disp ((S + A - P) >> 1) & 0x3ff */ |
#define | RZ_CKCORE_PCREL_IMM10BY4 23 /* disp ((S + A - P) >> 2) & 0x3ff */ |
#define | RZ_CKCORE_ADDR_HI16 24 /* high & low 16 bit ADDR */ |
#define | RZ_CKCORE_ADDR_LO16 25 /* (S + A) & 0xffff */ |
#define | RZ_CKCORE_GOTPC_HI16 26 /* high & low 16 bit GOTPC */ |
#define | RZ_CKCORE_GOTPC_LO16 27 /* (GOT + A - P) & 0xffff */ |
#define | RZ_CKCORE_GOTOFF_HI16 28 /* high & low 16 bit GOTOFF */ |
#define | RZ_CKCORE_GOTOFF_LO16 29 /* (S + A - GOT) & 0xffff */ |
#define | RZ_CKCORE_GOT12 30 /* 12 bit disp GOT entry (G) */ |
#define | RZ_CKCORE_GOT_HI16 31 /* high & low 16 bit GOT */ |
#define | RZ_CKCORE_GOT_LO16 32 /* (G & 0xffff) */ |
#define | RZ_CKCORE_PLT12 33 /* 12 bit disp PLT entry (G) */ |
#define | RZ_CKCORE_PLT_HI16 34 /* high & low 16 bit PLT */ |
#define | RZ_CKCORE_PLT_LO16 35 /* G & 0xffff */ |
#define | RZ_CKCORE_ADDRGOT_HI16 36 /* high & low 16 bit ADDRGOT */ |
#define | RZ_CKCORE_ADDRGOT_LO16 37 /* (GOT + G * 4) & 0xffff */ |
#define | RZ_CKCORE_ADDRPLT_HI16 38 /* high & low 16 bit ADDRPLT */ |
#define | RZ_CKCORE_ADDRPLT_LO16 39 /* (GOT+G*4) & 0xffff */ |
#define | RZ_CKCORE_PCREL_JSR_IMM26BY2 40 /* disp ((S+A-P) >>1) & x3ffffff */ |
#define | RZ_CKCORE_TOFFSET_LO16 41 /* (S+A-BTEXT) & 0xffff */ |
#define | RZ_CKCORE_DOFFSET_LO16 42 /* (S+A-BTEXT) & 0xffff */ |
#define | RZ_CKCORE_PCREL_IMM18BY2 43 /* disp ((S+A-P) >>1) & 0x3ffff */ |
#define | RZ_CKCORE_DOFFSET_IMM18 44 /* disp (S+A-BDATA) & 0x3ffff */ |
#define | RZ_CKCORE_DOFFSET_IMM18BY2 45 /* disp ((S+A-BDATA)>>1) & 0x3ffff */ |
#define | RZ_CKCORE_DOFFSET_IMM18BY4 46 /* disp ((S+A-BDATA)>>2) & 0x3ffff */ |
#define | RZ_CKCORE_GOT_IMM18BY4 48 /* disp (G >> 2) */ |
#define | RZ_CKCORE_PLT_IMM18BY4 49 /* disp (G >> 2) */ |
#define | RZ_CKCORE_PCREL_IMM7BY4 50 /* disp ((S+A-P) >>2) & 0x7f */ |
#define | RZ_CKCORE_TLS_LE32 51 /* 32 bit offset to TLS block */ |
#define | RZ_CKCORE_TLS_IE32 52 |
#define | RZ_CKCORE_TLS_GD32 53 |
#define | RZ_CKCORE_TLS_LDM32 54 |
#define | RZ_CKCORE_TLS_LDO32 55 |
#define | RZ_CKCORE_TLS_DTPMOD32 56 |
#define | RZ_CKCORE_TLS_DTPOFF32 57 |
#define | RZ_CKCORE_TLS_TPOFF32 58 |
#define | EF_CSKY_ABIMASK 0XF0000000 |
#define | EF_CSKY_OTHER 0X0FFF0000 |
#define | EF_CSKY_PROCESSOR 0X0000FFFF |
#define | EF_CSKY_ABIV1 0X10000000 |
#define | EF_CSKY_ABIV2 0X20000000 |
#define | SHT_CSKY_ATTRIBUTES (SHT_LOPROC + 1) |
#define | EF_IA_64_MASKOS 0x0000000f /* os-specific flags */ |
#define | EF_IA_64_ABI64 0x00000010 /* 64-bit ABI */ |
#define | EF_IA_64_ARCH 0xff000000 /* arch. version mask */ |
#define | PT_IA_64_ARCHEXT (PT_LOPROC + 0) /* arch extension bits */ |
#define | PT_IA_64_UNWIND (PT_LOPROC + 1) /* ia64 unwind bits */ |
#define | PT_IA_64_HP_OPT_ANOT (PT_LOOS + 0x12) |
#define | PT_IA_64_HP_HSL_ANOT (PT_LOOS + 0x13) |
#define | PT_IA_64_HP_STACK (PT_LOOS + 0x14) |
#define | PF_IA_64_NORECOV 0x80000000 /* spec insns w/o recovery */ |
#define | SHT_IA_64_EXT (SHT_LOPROC + 0) /* extension bits */ |
#define | SHT_IA_64_UNWIND (SHT_LOPROC + 1) /* unwind bits */ |
#define | SHF_IA_64_SHORT 0x10000000 /* section near gp */ |
#define | SHF_IA_64_NORECOV 0x20000000 /* spec insns w/o recovery */ |
#define | DT_IA_64_PLT_RESERVE (DT_LOPROC + 0) |
#define | DT_IA_64_NUM 1 |
#define | RZ_IA64_NONE 0x00 /* none */ |
#define | RZ_IA64_IMM14 0x21 /* symbol + addend, add imm14 */ |
#define | RZ_IA64_IMM22 0x22 /* symbol + addend, add imm22 */ |
#define | RZ_IA64_IMM64 0x23 /* symbol + addend, mov imm64 */ |
#define | RZ_IA64_DIR32MSB 0x24 /* symbol + addend, data4 MSB */ |
#define | RZ_IA64_DIR32LSB 0x25 /* symbol + addend, data4 LSB */ |
#define | RZ_IA64_DIR64MSB 0x26 /* symbol + addend, data8 MSB */ |
#define | RZ_IA64_DIR64LSB 0x27 /* symbol + addend, data8 LSB */ |
#define | RZ_IA64_GPREL22 0x2a /* @gprel(sym + add), add imm22 */ |
#define | RZ_IA64_GPREL64I 0x2b /* @gprel(sym + add), mov imm64 */ |
#define | RZ_IA64_GPREL32MSB 0x2c /* @gprel(sym + add), data4 MSB */ |
#define | RZ_IA64_GPREL32LSB 0x2d /* @gprel(sym + add), data4 LSB */ |
#define | RZ_IA64_GPREL64MSB 0x2e /* @gprel(sym + add), data8 MSB */ |
#define | RZ_IA64_GPREL64LSB 0x2f /* @gprel(sym + add), data8 LSB */ |
#define | RZ_IA64_LTOFF22 0x32 /* @ltoff(sym + add), add imm22 */ |
#define | RZ_IA64_LTOFF64I 0x33 /* @ltoff(sym + add), mov imm64 */ |
#define | RZ_IA64_PLTOFF22 0x3a /* @pltoff(sym + add), add imm22 */ |
#define | RZ_IA64_PLTOFF64I 0x3b /* @pltoff(sym + add), mov imm64 */ |
#define | RZ_IA64_PLTOFF64MSB 0x3e /* @pltoff(sym + add), data8 MSB */ |
#define | RZ_IA64_PLTOFF64LSB 0x3f /* @pltoff(sym + add), data8 LSB */ |
#define | RZ_IA64_FPTR64I 0x43 /* @fptr(sym + add), mov imm64 */ |
#define | RZ_IA64_FPTR32MSB 0x44 /* @fptr(sym + add), data4 MSB */ |
#define | RZ_IA64_FPTR32LSB 0x45 /* @fptr(sym + add), data4 LSB */ |
#define | RZ_IA64_FPTR64MSB 0x46 /* @fptr(sym + add), data8 MSB */ |
#define | RZ_IA64_FPTR64LSB 0x47 /* @fptr(sym + add), data8 LSB */ |
#define | RZ_IA64_PCREL60B 0x48 /* @pcrel(sym + add), brl */ |
#define | RZ_IA64_PCREL21B 0x49 /* @pcrel(sym + add), ptb, call */ |
#define | RZ_IA64_PCREL21M 0x4a /* @pcrel(sym + add), chk.s */ |
#define | RZ_IA64_PCREL21F 0x4b /* @pcrel(sym + add), fchkf */ |
#define | RZ_IA64_PCREL32MSB 0x4c /* @pcrel(sym + add), data4 MSB */ |
#define | RZ_IA64_PCREL32LSB 0x4d /* @pcrel(sym + add), data4 LSB */ |
#define | RZ_IA64_PCREL64MSB 0x4e /* @pcrel(sym + add), data8 MSB */ |
#define | RZ_IA64_PCREL64LSB 0x4f /* @pcrel(sym + add), data8 LSB */ |
#define | RZ_IA64_LTOFF_FPTR22 0x52 /* @ltoff(@fptr(s+a)), imm22 */ |
#define | RZ_IA64_LTOFF_FPTR64I 0x53 /* @ltoff(@fptr(s+a)), imm64 */ |
#define | RZ_IA64_LTOFF_FPTR32MSB 0x54 /* @ltoff(@fptr(s+a)), data4 MSB */ |
#define | RZ_IA64_LTOFF_FPTR32LSB 0x55 /* @ltoff(@fptr(s+a)), data4 LSB */ |
#define | RZ_IA64_LTOFF_FPTR64MSB 0x56 /* @ltoff(@fptr(s+a)), data8 MSB */ |
#define | RZ_IA64_LTOFF_FPTR64LSB 0x57 /* @ltoff(@fptr(s+a)), data8 LSB */ |
#define | RZ_IA64_SEGREL32MSB 0x5c /* @segrel(sym + add), data4 MSB */ |
#define | RZ_IA64_SEGREL32LSB 0x5d /* @segrel(sym + add), data4 LSB */ |
#define | RZ_IA64_SEGREL64MSB 0x5e /* @segrel(sym + add), data8 MSB */ |
#define | RZ_IA64_SEGREL64LSB 0x5f /* @segrel(sym + add), data8 LSB */ |
#define | RZ_IA64_SECREL32MSB 0x64 /* @secrel(sym + add), data4 MSB */ |
#define | RZ_IA64_SECREL32LSB 0x65 /* @secrel(sym + add), data4 LSB */ |
#define | RZ_IA64_SECREL64MSB 0x66 /* @secrel(sym + add), data8 MSB */ |
#define | RZ_IA64_SECREL64LSB 0x67 /* @secrel(sym + add), data8 LSB */ |
#define | RZ_IA64_REL32MSB 0x6c /* data 4 + REL */ |
#define | RZ_IA64_REL32LSB 0x6d /* data 4 + REL */ |
#define | RZ_IA64_REL64MSB 0x6e /* data 8 + REL */ |
#define | RZ_IA64_REL64LSB 0x6f /* data 8 + REL */ |
#define | RZ_IA64_LTV32MSB 0x74 /* symbol + addend, data4 MSB */ |
#define | RZ_IA64_LTV32LSB 0x75 /* symbol + addend, data4 LSB */ |
#define | RZ_IA64_LTV64MSB 0x76 /* symbol + addend, data8 MSB */ |
#define | RZ_IA64_LTV64LSB 0x77 /* symbol + addend, data8 LSB */ |
#define | RZ_IA64_PCREL21BI 0x79 /* @pcrel(sym + add), 21bit inst */ |
#define | RZ_IA64_PCREL22 0x7a /* @pcrel(sym + add), 22bit inst */ |
#define | RZ_IA64_PCREL64I 0x7b /* @pcrel(sym + add), 64bit inst */ |
#define | RZ_IA64_IPLTMSB 0x80 /* dynamic reloc, imported PLT, MSB */ |
#define | RZ_IA64_IPLTLSB 0x81 /* dynamic reloc, imported PLT, LSB */ |
#define | RZ_IA64_COPY 0x84 /* copy relocation */ |
#define | RZ_IA64_SUB 0x85 /* Addend and symbol difference */ |
#define | RZ_IA64_LTOFF22X 0x86 /* LTOFF22, relaxable. */ |
#define | RZ_IA64_LDXMOV 0x87 /* Use of LTOFF22X. */ |
#define | RZ_IA64_TPREL14 0x91 /* @tprel(sym + add), imm14 */ |
#define | RZ_IA64_TPREL22 0x92 /* @tprel(sym + add), imm22 */ |
#define | RZ_IA64_TPREL64I 0x93 /* @tprel(sym + add), imm64 */ |
#define | RZ_IA64_TPREL64MSB 0x96 /* @tprel(sym + add), data8 MSB */ |
#define | RZ_IA64_TPREL64LSB 0x97 /* @tprel(sym + add), data8 LSB */ |
#define | RZ_IA64_LTOFF_TPREL22 0x9a /* @ltoff(@tprel(s+a)), imm2 */ |
#define | RZ_IA64_DTPMOD64MSB 0xa6 /* @dtpmod(sym + add), data8 MSB */ |
#define | RZ_IA64_DTPMOD64LSB 0xa7 /* @dtpmod(sym + add), data8 LSB */ |
#define | RZ_IA64_LTOFF_DTPMOD22 0xaa /* @ltoff(@dtpmod(sym + add)), imm22 */ |
#define | RZ_IA64_DTPREL14 0xb1 /* @dtprel(sym + add), imm14 */ |
#define | RZ_IA64_DTPREL22 0xb2 /* @dtprel(sym + add), imm22 */ |
#define | RZ_IA64_DTPREL64I 0xb3 /* @dtprel(sym + add), imm64 */ |
#define | RZ_IA64_DTPREL32MSB 0xb4 /* @dtprel(sym + add), data4 MSB */ |
#define | RZ_IA64_DTPREL32LSB 0xb5 /* @dtprel(sym + add), data4 LSB */ |
#define | RZ_IA64_DTPREL64MSB 0xb6 /* @dtprel(sym + add), data8 MSB */ |
#define | RZ_IA64_DTPREL64LSB 0xb7 /* @dtprel(sym + add), data8 LSB */ |
#define | RZ_IA64_LTOFF_DTPREL22 0xba /* @ltoff(@dtprel(s+a)), imm22 */ |
#define | EF_SH_MACH_MASK 0x1f |
#define | EF_SH_UNKNOWN 0x0 |
#define | EF_SH1 0x1 |
#define | EF_SH2 0x2 |
#define | EF_SH3 0x3 |
#define | EF_SH_DSP 0x4 |
#define | EF_SH3_DSP 0x5 |
#define | EF_SH4AL_DSP 0x6 |
#define | EF_SH3E 0x8 |
#define | EF_SH4 0x9 |
#define | EF_SH2E 0xb |
#define | EF_SH4A 0xc |
#define | EF_SH2A 0xd |
#define | EF_SH4_NOFPU 0x10 |
#define | EF_SH4A_NOFPU 0x11 |
#define | EF_SH4_NOMMU_NOFPU 0x12 |
#define | EF_SH2A_NOFPU 0x13 |
#define | EF_SH3_NOMMU 0x14 |
#define | EF_SH2A_SH4_NOFPU 0x15 |
#define | EF_SH2A_SH3_NOFPU 0x16 |
#define | EF_SH2A_SH4 0x17 |
#define | EF_SH2A_SH3E 0x18 |
#define | RZ_SH_NONE 0 |
#define | RZ_SH_DIR32 1 |
#define | RZ_SH_REL32 2 |
#define | RZ_SH_DIR8WPN 3 |
#define | RZ_SH_IND12W 4 |
#define | RZ_SH_DIR8WPL 5 |
#define | RZ_SH_DIR8WPZ 6 |
#define | RZ_SH_DIR8BP 7 |
#define | RZ_SH_DIR8W 8 |
#define | RZ_SH_DIR8L 9 |
#define | RZ_SH_SWITCH16 25 |
#define | RZ_SH_SWITCH32 26 |
#define | RZ_SH_USES 27 |
#define | RZ_SH_COUNT 28 |
#define | RZ_SH_ALIGN 29 |
#define | RZ_SH_CODE 30 |
#define | RZ_SH_DATA 31 |
#define | RZ_SH_LABEL 32 |
#define | RZ_SH_SWITCH8 33 |
#define | RZ_SH_GNU_VTINHERIT 34 |
#define | RZ_SH_GNU_VTENTRY 35 |
#define | RZ_SH_TLS_GD_32 144 |
#define | RZ_SH_TLS_LD_32 145 |
#define | RZ_SH_TLS_LDO_32 146 |
#define | RZ_SH_TLS_IE_32 147 |
#define | RZ_SH_TLS_LE_32 148 |
#define | RZ_SH_TLS_DTPMOD32 149 |
#define | RZ_SH_TLS_DTPOFF32 150 |
#define | RZ_SH_TLS_TPOFF32 151 |
#define | RZ_SH_GOT32 160 |
#define | RZ_SH_PLT32 161 |
#define | RZ_SH_COPY 162 |
#define | RZ_SH_GLOB_DAT 163 |
#define | RZ_SH_JMP_SLOT 164 |
#define | RZ_SH_RELATIVE 165 |
#define | RZ_SH_GOTOFF 166 |
#define | RZ_SH_GOTPC 167 |
#define | RZ_SH_NUM 256 |
#define | EF_S390_HIGH_GPRS 0x00000001 /* High GPRs kernel facility needed. */ |
#define | RZ_390_NONE 0 /* No reloc. */ |
#define | RZ_390_8 1 /* Direct 8 bit. */ |
#define | RZ_390_12 2 /* Direct 12 bit. */ |
#define | RZ_390_16 3 /* Direct 16 bit. */ |
#define | RZ_390_32 4 /* Direct 32 bit. */ |
#define | RZ_390_PC32 5 /* PC relative 32 bit. */ |
#define | RZ_390_GOT12 6 /* 12 bit GOT offset. */ |
#define | RZ_390_GOT32 7 /* 32 bit GOT offset. */ |
#define | RZ_390_PLT32 8 /* 32 bit PC relative PLT address. */ |
#define | RZ_390_COPY 9 /* Copy symbol at runtime. */ |
#define | RZ_390_GLOB_DAT 10 /* Create GOT entry. */ |
#define | RZ_390_JMP_SLOT 11 /* Create PLT entry. */ |
#define | RZ_390_RELATIVE 12 /* Adjust by program base. */ |
#define | RZ_390_GOTOFF32 13 /* 32 bit offset to GOT. */ |
#define | RZ_390_GOTPC 14 /* 32 bit PC relative offset to GOT. */ |
#define | RZ_390_GOT16 15 /* 16 bit GOT offset. */ |
#define | RZ_390_PC16 16 /* PC relative 16 bit. */ |
#define | RZ_390_PC16DBL 17 /* PC relative 16 bit shifted by 1. */ |
#define | RZ_390_PLT16DBL 18 /* 16 bit PC rel. PLT shifted by 1. */ |
#define | RZ_390_PC32DBL 19 /* PC relative 32 bit shifted by 1. */ |
#define | RZ_390_PLT32DBL 20 /* 32 bit PC rel. PLT shifted by 1. */ |
#define | RZ_390_GOTPCDBL 21 /* 32 bit PC rel. GOT shifted by 1. */ |
#define | RZ_390_64 22 /* Direct 64 bit. */ |
#define | RZ_390_PC64 23 /* PC relative 64 bit. */ |
#define | RZ_390_GOT64 24 /* 64 bit GOT offset. */ |
#define | RZ_390_PLT64 25 /* 64 bit PC relative PLT address. */ |
#define | RZ_390_GOTENT 26 /* 32 bit PC rel. to GOT entry >> 1. */ |
#define | RZ_390_GOTOFF16 27 /* 16 bit offset to GOT. */ |
#define | RZ_390_GOTOFF64 28 /* 64 bit offset to GOT. */ |
#define | RZ_390_GOTPLT12 29 /* 12 bit offset to jump slot. */ |
#define | RZ_390_GOTPLT16 30 /* 16 bit offset to jump slot. */ |
#define | RZ_390_GOTPLT32 31 /* 32 bit offset to jump slot. */ |
#define | RZ_390_GOTPLT64 32 /* 64 bit offset to jump slot. */ |
#define | RZ_390_GOTPLTENT 33 /* 32 bit rel. offset to jump slot. */ |
#define | RZ_390_PLTOFF16 34 /* 16 bit offset from GOT to PLT. */ |
#define | RZ_390_PLTOFF32 35 /* 32 bit offset from GOT to PLT. */ |
#define | RZ_390_PLTOFF64 36 /* 16 bit offset from GOT to PLT. */ |
#define | RZ_390_TLS_LOAD 37 /* Tag for load insn in TLS code. */ |
#define | RZ_390_TLS_GDCALL |
#define | RZ_390_TLS_LDCALL |
#define | RZ_390_TLS_GD32 |
#define | RZ_390_TLS_GD64 |
#define | RZ_390_TLS_GOTIE12 |
#define | RZ_390_TLS_GOTIE32 |
#define | RZ_390_TLS_GOTIE64 |
#define | RZ_390_TLS_LDM32 |
#define | RZ_390_TLS_LDM64 |
#define | RZ_390_TLS_IE32 |
#define | RZ_390_TLS_IE64 |
#define | RZ_390_TLS_IEENT |
#define | RZ_390_TLS_LE32 |
#define | RZ_390_TLS_LE64 |
#define | RZ_390_TLS_LDO32 |
#define | RZ_390_TLS_LDO64 |
#define | RZ_390_TLS_DTPMOD 54 /* ID of module containing symbol. */ |
#define | RZ_390_TLS_DTPOFF 55 /* Offset in TLS block. */ |
#define | RZ_390_TLS_TPOFF |
#define | RZ_390_20 57 /* Direct 20 bit. */ |
#define | RZ_390_GOT20 58 /* 20 bit GOT offset. */ |
#define | RZ_390_GOTPLT20 59 /* 20 bit offset to jump slot. */ |
#define | RZ_390_TLS_GOTIE20 |
#define | RZ_390_IRELATIVE 61 /* STT_GNU_IFUNC relocation. */ |
#define | RZ_390_NUM 62 |
#define | RZ_CRIS_NONE 0 |
#define | RZ_CRIS_8 1 |
#define | RZ_CRIS_16 2 |
#define | RZ_CRIS_32 3 |
#define | RZ_CRIS_8_PCREL 4 |
#define | RZ_CRIS_16_PCREL 5 |
#define | RZ_CRIS_32_PCREL 6 |
#define | RZ_CRIS_GNU_VTINHERIT 7 |
#define | RZ_CRIS_GNU_VTENTRY 8 |
#define | RZ_CRIS_COPY 9 |
#define | RZ_CRIS_GLOB_DAT 10 |
#define | RZ_CRIS_JUMP_SLOT 11 |
#define | RZ_CRIS_RELATIVE 12 |
#define | RZ_CRIS_16_GOT 13 |
#define | RZ_CRIS_32_GOT 14 |
#define | RZ_CRIS_16_GOTPLT 15 |
#define | RZ_CRIS_32_GOTPLT 16 |
#define | RZ_CRIS_32_GOTREL 17 |
#define | RZ_CRIS_32_PLT_GOTREL 18 |
#define | RZ_CRIS_32_PLT_PCREL 19 |
#define | RZ_CRIS_NUM 20 |
#define | RZ_X86_64_NONE 0 /* No reloc */ |
#define | RZ_X86_64_64 1 /* Direct 64 bit */ |
#define | RZ_X86_64_PC32 2 /* PC relative 32 bit signed */ |
#define | RZ_X86_64_GOT32 3 /* 32 bit GOT entry */ |
#define | RZ_X86_64_PLT32 4 /* 32 bit PLT address */ |
#define | RZ_X86_64_COPY 5 /* Copy symbol at runtime */ |
#define | RZ_X86_64_GLOB_DAT 6 /* Create GOT entry */ |
#define | RZ_X86_64_JUMP_SLOT 7 /* Create PLT entry */ |
#define | RZ_X86_64_RELATIVE 8 /* Adjust by program base */ |
#define | RZ_X86_64_GOTPCREL |
#define | RZ_X86_64_32 10 /* Direct 32 bit zero extended */ |
#define | RZ_X86_64_32S 11 /* Direct 32 bit sign extended */ |
#define | RZ_X86_64_16 12 /* Direct 16 bit zero extended */ |
#define | RZ_X86_64_PC16 13 /* 16 bit sign extended pc relative */ |
#define | RZ_X86_64_8 14 /* Direct 8 bit sign extended */ |
#define | RZ_X86_64_PC8 15 /* 8 bit sign extended pc relative */ |
#define | RZ_X86_64_DTPMOD64 16 /* ID of module containing symbol */ |
#define | RZ_X86_64_DTPOFF64 17 /* Offset in module's TLS block */ |
#define | RZ_X86_64_TPOFF64 18 /* Offset in initial TLS block */ |
#define | RZ_X86_64_TLSGD |
#define | RZ_X86_64_TLSLD |
#define | RZ_X86_64_DTPOFF32 21 /* Offset in TLS block */ |
#define | RZ_X86_64_GOTTPOFF |
#define | RZ_X86_64_TPOFF32 23 /* Offset in initial TLS block */ |
#define | RZ_X86_64_PC64 24 /* PC relative 64 bit */ |
#define | RZ_X86_64_GOTOFF64 25 /* 64 bit offset to GOT */ |
#define | RZ_X86_64_GOTPC32 |
#define | RZ_X86_64_GOT64 27 /* 64-bit GOT entry offset */ |
#define | RZ_X86_64_GOTPCREL64 |
#define | RZ_X86_64_GOTPC64 29 /* 64-bit PC relative offset to GOT */ |
#define | RZ_X86_64_GOTPLT64 30 /* like GOT64, says PLT entry needed */ |
#define | RZ_X86_64_PLTOFF64 |
#define | RZ_X86_64_SIZE32 32 /* Size of symbol plus 32-bit addend */ |
#define | RZ_X86_64_SIZE64 33 /* Size of symbol plus 64-bit addend */ |
#define | RZ_X86_64_GOTPC32_TLSDESC 34 /* GOT offset for TLS descriptor. */ |
#define | RZ_X86_64_TLSDESC_CALL |
#define | RZ_X86_64_TLSDESC 36 /* TLS descriptor. */ |
#define | RZ_X86_64_IRELATIVE 37 /* Adjust indirectly by program base */ |
#define | RZ_X86_64_RELATIVE64 38 /* 64-bit adjust by program base */ |
#define | RZ_X86_64_GOTPCRELX |
#define | RZ_X86_64_REX_GOTPCRELX |
#define | RZ_X86_64_NUM 43 |
#define | SHT_X86_64_UNWIND 0x70000001 /* Unwind information. */ |
#define | RZ_MN10300_NONE 0 /* No reloc. */ |
#define | RZ_MN10300_32 1 /* Direct 32 bit. */ |
#define | RZ_MN10300_16 2 /* Direct 16 bit. */ |
#define | RZ_MN10300_8 3 /* Direct 8 bit. */ |
#define | RZ_MN10300_PCREL32 4 /* PC-relative 32-bit. */ |
#define | RZ_MN10300_PCREL16 5 /* PC-relative 16-bit signed. */ |
#define | RZ_MN10300_PCREL8 6 /* PC-relative 8-bit signed. */ |
#define | RZ_MN10300_GNU_VTINHERIT 7 /* Ancient C++ vtable garbage... */ |
#define | RZ_MN10300_GNU_VTENTRY 8 /* ... collection annotation. */ |
#define | RZ_MN10300_24 9 /* Direct 24 bit. */ |
#define | RZ_MN10300_GOTPC32 10 /* 32-bit PCrel offset to GOT. */ |
#define | RZ_MN10300_GOTPC16 11 /* 16-bit PCrel offset to GOT. */ |
#define | RZ_MN10300_GOTOFF32 12 /* 32-bit offset from GOT. */ |
#define | RZ_MN10300_GOTOFF24 13 /* 24-bit offset from GOT. */ |
#define | RZ_MN10300_GOTOFF16 14 /* 16-bit offset from GOT. */ |
#define | RZ_MN10300_PLT32 15 /* 32-bit PCrel to PLT entry. */ |
#define | RZ_MN10300_PLT16 16 /* 16-bit PCrel to PLT entry. */ |
#define | RZ_MN10300_GOT32 17 /* 32-bit offset to GOT entry. */ |
#define | RZ_MN10300_GOT24 18 /* 24-bit offset to GOT entry. */ |
#define | RZ_MN10300_GOT16 19 /* 16-bit offset to GOT entry. */ |
#define | RZ_MN10300_COPY 20 /* Copy symbol at runtime. */ |
#define | RZ_MN10300_GLOB_DAT 21 /* Create GOT entry. */ |
#define | RZ_MN10300_JMP_SLOT 22 /* Create PLT entry. */ |
#define | RZ_MN10300_RELATIVE 23 /* Adjust by program base. */ |
#define | RZ_MN10300_TLS_GD 24 /* 32-bit offset for global dynamic. */ |
#define | RZ_MN10300_TLS_LD 25 /* 32-bit offset for local dynamic. */ |
#define | RZ_MN10300_TLS_LDO 26 /* Module-relative offset. */ |
#define | RZ_MN10300_TLS_GOTIE |
#define | RZ_MN10300_TLS_IE |
#define | RZ_MN10300_TLS_LE |
#define | RZ_MN10300_TLS_DTPMOD 30 /* ID of module containing symbol. */ |
#define | RZ_MN10300_TLS_DTPOFF 31 /* Offset in module TLS block. */ |
#define | RZ_MN10300_TLS_TPOFF 32 /* Offset in static TLS block. */ |
#define | RZ_MN10300_SYM_DIFF |
#define | RZ_MN10300_ALIGN |
#define | RZ_MN10300_NUM 35 |
#define | RZ_M32R_NONE 0 /* No reloc. */ |
#define | RZ_M32R_16 1 /* Direct 16 bit. */ |
#define | RZ_M32R_32 2 /* Direct 32 bit. */ |
#define | RZ_M32R_24 3 /* Direct 24 bit. */ |
#define | RZ_M32R_10_PCREL 4 /* PC relative 10 bit shifted. */ |
#define | RZ_M32R_18_PCREL 5 /* PC relative 18 bit shifted. */ |
#define | RZ_M32R_26_PCREL 6 /* PC relative 26 bit shifted. */ |
#define | RZ_M32R_HI16_ULO 7 /* High 16 bit with unsigned low. */ |
#define | RZ_M32R_HI16_SLO 8 /* High 16 bit with signed low. */ |
#define | RZ_M32R_LO16 9 /* Low 16 bit. */ |
#define | RZ_M32R_SDA16 10 /* 16 bit offset in SDA. */ |
#define | RZ_M32R_GNU_VTINHERIT 11 |
#define | RZ_M32R_GNU_VTENTRY 12 |
#define | RZ_M32R_16_RELA 33 /* Direct 16 bit. */ |
#define | RZ_M32R_32_RELA 34 /* Direct 32 bit. */ |
#define | RZ_M32R_24_RELA 35 /* Direct 24 bit. */ |
#define | RZ_M32R_10_PCREL_RELA 36 /* PC relative 10 bit shifted. */ |
#define | RZ_M32R_18_PCREL_RELA 37 /* PC relative 18 bit shifted. */ |
#define | RZ_M32R_26_PCREL_RELA 38 /* PC relative 26 bit shifted. */ |
#define | RZ_M32R_HI16_ULO_RELA 39 /* High 16 bit with unsigned low */ |
#define | RZ_M32R_HI16_SLO_RELA 40 /* High 16 bit with signed low */ |
#define | RZ_M32R_LO16_RELA 41 /* Low 16 bit */ |
#define | RZ_M32R_SDA16_RELA 42 /* 16 bit offset in SDA */ |
#define | RZ_M32R_RELA_GNU_VTINHERIT 43 |
#define | RZ_M32R_RELA_GNU_VTENTRY 44 |
#define | RZ_M32R_REL32 45 /* PC relative 32 bit. */ |
#define | RZ_M32R_GOT24 48 /* 24 bit GOT entry */ |
#define | RZ_M32R_26_PLTREL 49 /* 26 bit PC relative to PLT shifted */ |
#define | RZ_M32R_COPY 50 /* Copy symbol at runtime */ |
#define | RZ_M32R_GLOB_DAT 51 /* Create GOT entry */ |
#define | RZ_M32R_JMP_SLOT 52 /* Create PLT entry */ |
#define | RZ_M32R_RELATIVE 53 /* Adjust by program base */ |
#define | RZ_M32R_GOTOFF 54 /* 24 bit offset to GOT */ |
#define | RZ_M32R_GOTPC24 55 /* 24 bit PC relative offset to GOT */ |
#define | RZ_M32R_GOT16_HI_ULO |
#define | RZ_M32R_GOT16_HI_SLO |
#define | RZ_M32R_GOT16_LO 58 /* Low 16 bit GOT entry */ |
#define | RZ_M32R_GOTPC_HI_ULO |
#define | RZ_M32R_GOTPC_HI_SLO |
#define | RZ_M32R_GOTPC_LO |
#define | RZ_M32R_GOTOFF_HI_ULO |
#define | RZ_M32R_GOTOFF_HI_SLO |
#define | RZ_M32R_GOTOFF_LO 64 /* Low 16 bit offset to GOT */ |
#define | RZ_M32R_NUM 256 /* Keep this the last entry. */ |
#define | RZ_MICROBLAZE_NONE 0 /* No reloc. */ |
#define | RZ_MICROBLAZE_32 1 /* Direct 32 bit. */ |
#define | RZ_MICROBLAZE_32_PCREL 2 /* PC relative 32 bit. */ |
#define | RZ_MICROBLAZE_64_PCREL 3 /* PC relative 64 bit. */ |
#define | RZ_MICROBLAZE_32_PCREL_LO 4 /* Low 16 bits of PCREL32. */ |
#define | RZ_MICROBLAZE_64 5 /* Direct 64 bit. */ |
#define | RZ_MICROBLAZE_32_LO 6 /* Low 16 bit. */ |
#define | RZ_MICROBLAZE_SRO32 7 /* Read-only small data area. */ |
#define | RZ_MICROBLAZE_SRW32 8 /* Read-write small data area. */ |
#define | RZ_MICROBLAZE_64_NONE 9 /* No reloc. */ |
#define | RZ_MICROBLAZE_32_SYM_OP_SYM 10 /* Symbol Op Symbol relocation. */ |
#define | RZ_MICROBLAZE_GNU_VTINHERIT 11 /* GNU C++ vtable hierarchy. */ |
#define | RZ_MICROBLAZE_GNU_VTENTRY 12 /* GNU C++ vtable member usage. */ |
#define | RZ_MICROBLAZE_GOTPC_64 13 /* PC-relative GOT offset. */ |
#define | RZ_MICROBLAZE_GOT_64 14 /* GOT entry offset. */ |
#define | RZ_MICROBLAZE_PLT_64 15 /* PLT offset (PC-relative). */ |
#define | RZ_MICROBLAZE_REL 16 /* Adjust by program base. */ |
#define | RZ_MICROBLAZE_JUMP_SLOT 17 /* Create PLT entry. */ |
#define | RZ_MICROBLAZE_GLOB_DAT 18 /* Create GOT entry. */ |
#define | RZ_MICROBLAZE_GOTOFF_64 19 /* 64 bit offset to GOT. */ |
#define | RZ_MICROBLAZE_GOTOFF_32 20 /* 32 bit offset to GOT. */ |
#define | RZ_MICROBLAZE_COPY 21 /* Runtime copy. */ |
#define | RZ_MICROBLAZE_TLS 22 /* TLS Reloc. */ |
#define | RZ_MICROBLAZE_TLSGD 23 /* TLS General Dynamic. */ |
#define | RZ_MICROBLAZE_TLSLD 24 /* TLS Local Dynamic. */ |
#define | RZ_MICROBLAZE_TLSDTPMOD32 25 /* TLS Module ID. */ |
#define | RZ_MICROBLAZE_TLSDTPREL32 26 /* TLS Offset Within TLS Block. */ |
#define | RZ_MICROBLAZE_TLSDTPREL64 27 /* TLS Offset Within TLS Block. */ |
#define | RZ_MICROBLAZE_TLSGOTTPREL32 28 /* TLS Offset From Thread Pointer. */ |
#define | RZ_MICROBLAZE_TLSTPREL32 29 /* TLS Offset From Thread Pointer. */ |
#define | DT_NIOS2_GP 0x70000002 /* Address of _gp. */ |
#define | RZ_NIOS2_NONE 0 /* No reloc. */ |
#define | RZ_NIOS2_S16 1 /* Direct signed 16 bit. */ |
#define | RZ_NIOS2_U16 2 /* Direct unsigned 16 bit. */ |
#define | RZ_NIOS2_PCREL16 3 /* PC relative 16 bit. */ |
#define | RZ_NIOS2_CALL26 4 /* Direct call. */ |
#define | RZ_NIOS2_IMM5 5 /* 5 bit constant expression. */ |
#define | RZ_NIOS2_CACHE_OPX 6 /* 5 bit expression, shift 22. */ |
#define | RZ_NIOS2_IMM6 7 /* 6 bit constant expression. */ |
#define | RZ_NIOS2_IMM8 8 /* 8 bit constant expression. */ |
#define | RZ_NIOS2_HI16 9 /* High 16 bit. */ |
#define | RZ_NIOS2_LO16 10 /* Low 16 bit. */ |
#define | RZ_NIOS2_HIADJ16 11 /* High 16 bit, adjusted. */ |
#define | RZ_NIOS2_BFD_RELOC_32 12 /* 32 bit symbol value + addend. */ |
#define | RZ_NIOS2_BFD_RELOC_16 13 /* 16 bit symbol value + addend. */ |
#define | RZ_NIOS2_BFD_RELOC_8 14 /* 8 bit symbol value + addend. */ |
#define | RZ_NIOS2_GPREL 15 /* 16 bit GP pointer offset. */ |
#define | RZ_NIOS2_GNU_VTINHERIT 16 /* GNU C++ vtable hierarchy. */ |
#define | RZ_NIOS2_GNU_VTENTRY 17 /* GNU C++ vtable member usage. */ |
#define | RZ_NIOS2_UJMP 18 /* Unconditional branch. */ |
#define | RZ_NIOS2_CJMP 19 /* Conditional branch. */ |
#define | RZ_NIOS2_CALLR 20 /* Indirect call through register. */ |
#define | RZ_NIOS2_ALIGN |
#define | RZ_NIOS2_GOT16 22 /* 16 bit GOT entry. */ |
#define | RZ_NIOS2_CALL16 23 /* 16 bit GOT entry for function. */ |
#define | RZ_NIOS2_GOTOFF_LO 24 /* %lo of offset to GOT pointer. */ |
#define | RZ_NIOS2_GOTOFF_HA 25 /* %hiadj of offset to GOT pointer. */ |
#define | RZ_NIOS2_PCREL_LO 26 /* %lo of PC relative offset. */ |
#define | RZ_NIOS2_PCREL_HA 27 /* %hiadj of PC relative offset. */ |
#define | RZ_NIOS2_TLS_GD16 28 /* 16 bit GOT offset for TLS GD. */ |
#define | RZ_NIOS2_TLS_LDM16 29 /* 16 bit GOT offset for TLS LDM. */ |
#define | RZ_NIOS2_TLS_LDO16 30 /* 16 bit module relative offset. */ |
#define | RZ_NIOS2_TLS_IE16 31 /* 16 bit GOT offset for TLS IE. */ |
#define | RZ_NIOS2_TLS_LE16 32 /* 16 bit LE TP-relative offset. */ |
#define | RZ_NIOS2_TLS_DTPMOD 33 /* Module number. */ |
#define | RZ_NIOS2_TLS_DTPREL 34 /* Module-relative offset. */ |
#define | RZ_NIOS2_TLS_TPREL 35 /* TP-relative offset. */ |
#define | RZ_NIOS2_COPY 36 /* Copy symbol at runtime. */ |
#define | RZ_NIOS2_GLOB_DAT 37 /* Create GOT entry. */ |
#define | RZ_NIOS2_JUMP_SLOT 38 /* Create PLT entry. */ |
#define | RZ_NIOS2_RELATIVE 39 /* Adjust by program base. */ |
#define | RZ_NIOS2_GOTOFF 40 /* 16 bit offset to GOT pointer. */ |
#define | RZ_NIOS2_CALL26_NOAT 41 /* Direct call in .noat section. */ |
#define | RZ_NIOS2_GOT_LO 42 /* %lo() of GOT entry. */ |
#define | RZ_NIOS2_GOT_HA 43 /* %hiadj() of GOT entry. */ |
#define | RZ_NIOS2_CALL_LO 44 /* %lo() of function GOT entry. */ |
#define | RZ_NIOS2_CALL_HA 45 /* %hiadj() of function GOT entry. */ |
#define | RZ_TILEPRO_NONE 0 /* No reloc */ |
#define | RZ_TILEPRO_32 1 /* Direct 32 bit */ |
#define | RZ_TILEPRO_16 2 /* Direct 16 bit */ |
#define | RZ_TILEPRO_8 3 /* Direct 8 bit */ |
#define | RZ_TILEPRO_32_PCREL 4 /* PC relative 32 bit */ |
#define | RZ_TILEPRO_16_PCREL 5 /* PC relative 16 bit */ |
#define | RZ_TILEPRO_8_PCREL 6 /* PC relative 8 bit */ |
#define | RZ_TILEPRO_LO16 7 /* Low 16 bit */ |
#define | RZ_TILEPRO_HI16 8 /* High 16 bit */ |
#define | RZ_TILEPRO_HA16 9 /* High 16 bit, adjusted */ |
#define | RZ_TILEPRO_COPY 10 /* Copy relocation */ |
#define | RZ_TILEPRO_GLOB_DAT 11 /* Create GOT entry */ |
#define | RZ_TILEPRO_JMP_SLOT 12 /* Create PLT entry */ |
#define | RZ_TILEPRO_RELATIVE 13 /* Adjust by program base */ |
#define | RZ_TILEPRO_BROFF_X1 14 /* X1 pipe branch offset */ |
#define | RZ_TILEPRO_JOFFLONG_X1 15 /* X1 pipe jump offset */ |
#define | RZ_TILEPRO_JOFFLONG_X1_PLT 16 /* X1 pipe jump offset to PLT */ |
#define | RZ_TILEPRO_IMM8_X0 17 /* X0 pipe 8-bit */ |
#define | RZ_TILEPRO_IMM8_Y0 18 /* Y0 pipe 8-bit */ |
#define | RZ_TILEPRO_IMM8_X1 19 /* X1 pipe 8-bit */ |
#define | RZ_TILEPRO_IMM8_Y1 20 /* Y1 pipe 8-bit */ |
#define | RZ_TILEPRO_MT_IMM15_X1 21 /* X1 pipe mtspr */ |
#define | RZ_TILEPRO_MF_IMM15_X1 22 /* X1 pipe mfspr */ |
#define | RZ_TILEPRO_IMM16_X0 23 /* X0 pipe 16-bit */ |
#define | RZ_TILEPRO_IMM16_X1 24 /* X1 pipe 16-bit */ |
#define | RZ_TILEPRO_IMM16_X0_LO 25 /* X0 pipe low 16-bit */ |
#define | RZ_TILEPRO_IMM16_X1_LO 26 /* X1 pipe low 16-bit */ |
#define | RZ_TILEPRO_IMM16_X0_HI 27 /* X0 pipe high 16-bit */ |
#define | RZ_TILEPRO_IMM16_X1_HI 28 /* X1 pipe high 16-bit */ |
#define | RZ_TILEPRO_IMM16_X0_HA 29 /* X0 pipe high 16-bit, adjusted */ |
#define | RZ_TILEPRO_IMM16_X1_HA 30 /* X1 pipe high 16-bit, adjusted */ |
#define | RZ_TILEPRO_IMM16_X0_PCREL 31 /* X0 pipe PC relative 16 bit */ |
#define | RZ_TILEPRO_IMM16_X1_PCREL 32 /* X1 pipe PC relative 16 bit */ |
#define | RZ_TILEPRO_IMM16_X0_LO_PCREL 33 /* X0 pipe PC relative low 16 bit */ |
#define | RZ_TILEPRO_IMM16_X1_LO_PCREL 34 /* X1 pipe PC relative low 16 bit */ |
#define | RZ_TILEPRO_IMM16_X0_HI_PCREL 35 /* X0 pipe PC relative high 16 bit */ |
#define | RZ_TILEPRO_IMM16_X1_HI_PCREL 36 /* X1 pipe PC relative high 16 bit */ |
#define | RZ_TILEPRO_IMM16_X0_HA_PCREL 37 /* X0 pipe PC relative ha() 16 bit */ |
#define | RZ_TILEPRO_IMM16_X1_HA_PCREL 38 /* X1 pipe PC relative ha() 16 bit */ |
#define | RZ_TILEPRO_IMM16_X0_GOT 39 /* X0 pipe 16-bit GOT offset */ |
#define | RZ_TILEPRO_IMM16_X1_GOT 40 /* X1 pipe 16-bit GOT offset */ |
#define | RZ_TILEPRO_IMM16_X0_GOT_LO 41 /* X0 pipe low 16-bit GOT offset */ |
#define | RZ_TILEPRO_IMM16_X1_GOT_LO 42 /* X1 pipe low 16-bit GOT offset */ |
#define | RZ_TILEPRO_IMM16_X0_GOT_HI 43 /* X0 pipe high 16-bit GOT offset */ |
#define | RZ_TILEPRO_IMM16_X1_GOT_HI 44 /* X1 pipe high 16-bit GOT offset */ |
#define | RZ_TILEPRO_IMM16_X0_GOT_HA 45 /* X0 pipe ha() 16-bit GOT offset */ |
#define | RZ_TILEPRO_IMM16_X1_GOT_HA 46 /* X1 pipe ha() 16-bit GOT offset */ |
#define | RZ_TILEPRO_MMSTART_X0 47 /* X0 pipe mm "start" */ |
#define | RZ_TILEPRO_MMEND_X0 48 /* X0 pipe mm "end" */ |
#define | RZ_TILEPRO_MMSTART_X1 49 /* X1 pipe mm "start" */ |
#define | RZ_TILEPRO_MMEND_X1 50 /* X1 pipe mm "end" */ |
#define | RZ_TILEPRO_SHAMT_X0 51 /* X0 pipe shift amount */ |
#define | RZ_TILEPRO_SHAMT_X1 52 /* X1 pipe shift amount */ |
#define | RZ_TILEPRO_SHAMT_Y0 53 /* Y0 pipe shift amount */ |
#define | RZ_TILEPRO_SHAMT_Y1 54 /* Y1 pipe shift amount */ |
#define | RZ_TILEPRO_DEST_IMM8_X1 55 /* X1 pipe destination 8-bit */ |
#define | RZ_TILEPRO_TLS_GD_CALL 60 /* "jal" for TLS GD */ |
#define | RZ_TILEPRO_IMM8_X0_TLS_GD_ADD 61 /* X0 pipe "addi" for TLS GD */ |
#define | RZ_TILEPRO_IMM8_X1_TLS_GD_ADD 62 /* X1 pipe "addi" for TLS GD */ |
#define | RZ_TILEPRO_IMM8_Y0_TLS_GD_ADD 63 /* Y0 pipe "addi" for TLS GD */ |
#define | RZ_TILEPRO_IMM8_Y1_TLS_GD_ADD 64 /* Y1 pipe "addi" for TLS GD */ |
#define | RZ_TILEPRO_TLS_IE_LOAD 65 /* "lw_tls" for TLS IE */ |
#define | RZ_TILEPRO_IMM16_X0_TLS_GD 66 /* X0 pipe 16-bit TLS GD offset */ |
#define | RZ_TILEPRO_IMM16_X1_TLS_GD 67 /* X1 pipe 16-bit TLS GD offset */ |
#define | RZ_TILEPRO_IMM16_X0_TLS_GD_LO 68 /* X0 pipe low 16-bit TLS GD offset */ |
#define | RZ_TILEPRO_IMM16_X1_TLS_GD_LO 69 /* X1 pipe low 16-bit TLS GD offset */ |
#define | RZ_TILEPRO_IMM16_X0_TLS_GD_HI 70 /* X0 pipe high 16-bit TLS GD offset */ |
#define | RZ_TILEPRO_IMM16_X1_TLS_GD_HI 71 /* X1 pipe high 16-bit TLS GD offset */ |
#define | RZ_TILEPRO_IMM16_X0_TLS_GD_HA 72 /* X0 pipe ha() 16-bit TLS GD offset */ |
#define | RZ_TILEPRO_IMM16_X1_TLS_GD_HA 73 /* X1 pipe ha() 16-bit TLS GD offset */ |
#define | RZ_TILEPRO_IMM16_X0_TLS_IE 74 /* X0 pipe 16-bit TLS IE offset */ |
#define | RZ_TILEPRO_IMM16_X1_TLS_IE 75 /* X1 pipe 16-bit TLS IE offset */ |
#define | RZ_TILEPRO_IMM16_X0_TLS_IE_LO 76 /* X0 pipe low 16-bit TLS IE offset */ |
#define | RZ_TILEPRO_IMM16_X1_TLS_IE_LO 77 /* X1 pipe low 16-bit TLS IE offset */ |
#define | RZ_TILEPRO_IMM16_X0_TLS_IE_HI 78 /* X0 pipe high 16-bit TLS IE offset */ |
#define | RZ_TILEPRO_IMM16_X1_TLS_IE_HI 79 /* X1 pipe high 16-bit TLS IE offset */ |
#define | RZ_TILEPRO_IMM16_X0_TLS_IE_HA 80 /* X0 pipe ha() 16-bit TLS IE offset */ |
#define | RZ_TILEPRO_IMM16_X1_TLS_IE_HA 81 /* X1 pipe ha() 16-bit TLS IE offset */ |
#define | RZ_TILEPRO_TLS_DTPMOD32 82 /* ID of module containing symbol */ |
#define | RZ_TILEPRO_TLS_DTPOFF32 83 /* Offset in TLS block */ |
#define | RZ_TILEPRO_TLS_TPOFF32 84 /* Offset in static TLS block */ |
#define | RZ_TILEPRO_IMM16_X0_TLS_LE 85 /* X0 pipe 16-bit TLS LE offset */ |
#define | RZ_TILEPRO_IMM16_X1_TLS_LE 86 /* X1 pipe 16-bit TLS LE offset */ |
#define | RZ_TILEPRO_IMM16_X0_TLS_LE_LO 87 /* X0 pipe low 16-bit TLS LE offset */ |
#define | RZ_TILEPRO_IMM16_X1_TLS_LE_LO 88 /* X1 pipe low 16-bit TLS LE offset */ |
#define | RZ_TILEPRO_IMM16_X0_TLS_LE_HI 89 /* X0 pipe high 16-bit TLS LE offset */ |
#define | RZ_TILEPRO_IMM16_X1_TLS_LE_HI 90 /* X1 pipe high 16-bit TLS LE offset */ |
#define | RZ_TILEPRO_IMM16_X0_TLS_LE_HA 91 /* X0 pipe ha() 16-bit TLS LE offset */ |
#define | RZ_TILEPRO_IMM16_X1_TLS_LE_HA 92 /* X1 pipe ha() 16-bit TLS LE offset */ |
#define | RZ_TILEPRO_GNU_VTINHERIT 128 /* GNU C++ vtable hierarchy */ |
#define | RZ_TILEPRO_GNU_VTENTRY 129 /* GNU C++ vtable member usage */ |
#define | RZ_TILEPRO_NUM 130 |
#define | RZ_TILEGX_NONE 0 /* No reloc */ |
#define | RZ_TILEGX_64 1 /* Direct 64 bit */ |
#define | RZ_TILEGX_32 2 /* Direct 32 bit */ |
#define | RZ_TILEGX_16 3 /* Direct 16 bit */ |
#define | RZ_TILEGX_8 4 /* Direct 8 bit */ |
#define | RZ_TILEGX_64_PCREL 5 /* PC relative 64 bit */ |
#define | RZ_TILEGX_32_PCREL 6 /* PC relative 32 bit */ |
#define | RZ_TILEGX_16_PCREL 7 /* PC relative 16 bit */ |
#define | RZ_TILEGX_8_PCREL 8 /* PC relative 8 bit */ |
#define | RZ_TILEGX_HW0 9 /* hword 0 16-bit */ |
#define | RZ_TILEGX_HW1 10 /* hword 1 16-bit */ |
#define | RZ_TILEGX_HW2 11 /* hword 2 16-bit */ |
#define | RZ_TILEGX_HW3 12 /* hword 3 16-bit */ |
#define | RZ_TILEGX_HW0_LAST 13 /* last hword 0 16-bit */ |
#define | RZ_TILEGX_HW1_LAST 14 /* last hword 1 16-bit */ |
#define | RZ_TILEGX_HW2_LAST 15 /* last hword 2 16-bit */ |
#define | RZ_TILEGX_COPY 16 /* Copy relocation */ |
#define | RZ_TILEGX_GLOB_DAT 17 /* Create GOT entry */ |
#define | RZ_TILEGX_JMP_SLOT 18 /* Create PLT entry */ |
#define | RZ_TILEGX_RELATIVE 19 /* Adjust by program base */ |
#define | RZ_TILEGX_BROFF_X1 20 /* X1 pipe branch offset */ |
#define | RZ_TILEGX_JUMPOFF_X1 21 /* X1 pipe jump offset */ |
#define | RZ_TILEGX_JUMPOFF_X1_PLT 22 /* X1 pipe jump offset to PLT */ |
#define | RZ_TILEGX_IMM8_X0 23 /* X0 pipe 8-bit */ |
#define | RZ_TILEGX_IMM8_Y0 24 /* Y0 pipe 8-bit */ |
#define | RZ_TILEGX_IMM8_X1 25 /* X1 pipe 8-bit */ |
#define | RZ_TILEGX_IMM8_Y1 26 /* Y1 pipe 8-bit */ |
#define | RZ_TILEGX_DEST_IMM8_X1 27 /* X1 pipe destination 8-bit */ |
#define | RZ_TILEGX_MT_IMM14_X1 28 /* X1 pipe mtspr */ |
#define | RZ_TILEGX_MF_IMM14_X1 29 /* X1 pipe mfspr */ |
#define | RZ_TILEGX_MMSTART_X0 30 /* X0 pipe mm "start" */ |
#define | RZ_TILEGX_MMEND_X0 31 /* X0 pipe mm "end" */ |
#define | RZ_TILEGX_SHAMT_X0 32 /* X0 pipe shift amount */ |
#define | RZ_TILEGX_SHAMT_X1 33 /* X1 pipe shift amount */ |
#define | RZ_TILEGX_SHAMT_Y0 34 /* Y0 pipe shift amount */ |
#define | RZ_TILEGX_SHAMT_Y1 35 /* Y1 pipe shift amount */ |
#define | RZ_TILEGX_IMM16_X0_HW0 36 /* X0 pipe hword 0 */ |
#define | RZ_TILEGX_IMM16_X1_HW0 37 /* X1 pipe hword 0 */ |
#define | RZ_TILEGX_IMM16_X0_HW1 38 /* X0 pipe hword 1 */ |
#define | RZ_TILEGX_IMM16_X1_HW1 39 /* X1 pipe hword 1 */ |
#define | RZ_TILEGX_IMM16_X0_HW2 40 /* X0 pipe hword 2 */ |
#define | RZ_TILEGX_IMM16_X1_HW2 41 /* X1 pipe hword 2 */ |
#define | RZ_TILEGX_IMM16_X0_HW3 42 /* X0 pipe hword 3 */ |
#define | RZ_TILEGX_IMM16_X1_HW3 43 /* X1 pipe hword 3 */ |
#define | RZ_TILEGX_IMM16_X0_HW0_LAST 44 /* X0 pipe last hword 0 */ |
#define | RZ_TILEGX_IMM16_X1_HW0_LAST 45 /* X1 pipe last hword 0 */ |
#define | RZ_TILEGX_IMM16_X0_HW1_LAST 46 /* X0 pipe last hword 1 */ |
#define | RZ_TILEGX_IMM16_X1_HW1_LAST 47 /* X1 pipe last hword 1 */ |
#define | RZ_TILEGX_IMM16_X0_HW2_LAST 48 /* X0 pipe last hword 2 */ |
#define | RZ_TILEGX_IMM16_X1_HW2_LAST 49 /* X1 pipe last hword 2 */ |
#define | RZ_TILEGX_IMM16_X0_HW0_PCREL 50 /* X0 pipe PC relative hword 0 */ |
#define | RZ_TILEGX_IMM16_X1_HW0_PCREL 51 /* X1 pipe PC relative hword 0 */ |
#define | RZ_TILEGX_IMM16_X0_HW1_PCREL 52 /* X0 pipe PC relative hword 1 */ |
#define | RZ_TILEGX_IMM16_X1_HW1_PCREL 53 /* X1 pipe PC relative hword 1 */ |
#define | RZ_TILEGX_IMM16_X0_HW2_PCREL 54 /* X0 pipe PC relative hword 2 */ |
#define | RZ_TILEGX_IMM16_X1_HW2_PCREL 55 /* X1 pipe PC relative hword 2 */ |
#define | RZ_TILEGX_IMM16_X0_HW3_PCREL 56 /* X0 pipe PC relative hword 3 */ |
#define | RZ_TILEGX_IMM16_X1_HW3_PCREL 57 /* X1 pipe PC relative hword 3 */ |
#define | RZ_TILEGX_IMM16_X0_HW0_LAST_PCREL 58 /* X0 pipe PC-rel last hword 0 */ |
#define | RZ_TILEGX_IMM16_X1_HW0_LAST_PCREL 59 /* X1 pipe PC-rel last hword 0 */ |
#define | RZ_TILEGX_IMM16_X0_HW1_LAST_PCREL 60 /* X0 pipe PC-rel last hword 1 */ |
#define | RZ_TILEGX_IMM16_X1_HW1_LAST_PCREL 61 /* X1 pipe PC-rel last hword 1 */ |
#define | RZ_TILEGX_IMM16_X0_HW2_LAST_PCREL 62 /* X0 pipe PC-rel last hword 2 */ |
#define | RZ_TILEGX_IMM16_X1_HW2_LAST_PCREL 63 /* X1 pipe PC-rel last hword 2 */ |
#define | RZ_TILEGX_IMM16_X0_HW0_GOT 64 /* X0 pipe hword 0 GOT offset */ |
#define | RZ_TILEGX_IMM16_X1_HW0_GOT 65 /* X1 pipe hword 0 GOT offset */ |
#define | RZ_TILEGX_IMM16_X0_HW0_PLT_PCREL 66 /* X0 pipe PC-rel PLT hword 0 */ |
#define | RZ_TILEGX_IMM16_X1_HW0_PLT_PCREL 67 /* X1 pipe PC-rel PLT hword 0 */ |
#define | RZ_TILEGX_IMM16_X0_HW1_PLT_PCREL 68 /* X0 pipe PC-rel PLT hword 1 */ |
#define | RZ_TILEGX_IMM16_X1_HW1_PLT_PCREL 69 /* X1 pipe PC-rel PLT hword 1 */ |
#define | RZ_TILEGX_IMM16_X0_HW2_PLT_PCREL 70 /* X0 pipe PC-rel PLT hword 2 */ |
#define | RZ_TILEGX_IMM16_X1_HW2_PLT_PCREL 71 /* X1 pipe PC-rel PLT hword 2 */ |
#define | RZ_TILEGX_IMM16_X0_HW0_LAST_GOT 72 /* X0 pipe last hword 0 GOT offset */ |
#define | RZ_TILEGX_IMM16_X1_HW0_LAST_GOT 73 /* X1 pipe last hword 0 GOT offset */ |
#define | RZ_TILEGX_IMM16_X0_HW1_LAST_GOT 74 /* X0 pipe last hword 1 GOT offset */ |
#define | RZ_TILEGX_IMM16_X1_HW1_LAST_GOT 75 /* X1 pipe last hword 1 GOT offset */ |
#define | RZ_TILEGX_IMM16_X0_HW3_PLT_PCREL 76 /* X0 pipe PC-rel PLT hword 3 */ |
#define | RZ_TILEGX_IMM16_X1_HW3_PLT_PCREL 77 /* X1 pipe PC-rel PLT hword 3 */ |
#define | RZ_TILEGX_IMM16_X0_HW0_TLS_GD 78 /* X0 pipe hword 0 TLS GD offset */ |
#define | RZ_TILEGX_IMM16_X1_HW0_TLS_GD 79 /* X1 pipe hword 0 TLS GD offset */ |
#define | RZ_TILEGX_IMM16_X0_HW0_TLS_LE 80 /* X0 pipe hword 0 TLS LE offset */ |
#define | RZ_TILEGX_IMM16_X1_HW0_TLS_LE 81 /* X1 pipe hword 0 TLS LE offset */ |
#define | RZ_TILEGX_IMM16_X0_HW0_LAST_TLS_LE 82 /* X0 pipe last hword 0 LE off */ |
#define | RZ_TILEGX_IMM16_X1_HW0_LAST_TLS_LE 83 /* X1 pipe last hword 0 LE off */ |
#define | RZ_TILEGX_IMM16_X0_HW1_LAST_TLS_LE 84 /* X0 pipe last hword 1 LE off */ |
#define | RZ_TILEGX_IMM16_X1_HW1_LAST_TLS_LE 85 /* X1 pipe last hword 1 LE off */ |
#define | RZ_TILEGX_IMM16_X0_HW0_LAST_TLS_GD 86 /* X0 pipe last hword 0 GD off */ |
#define | RZ_TILEGX_IMM16_X1_HW0_LAST_TLS_GD 87 /* X1 pipe last hword 0 GD off */ |
#define | RZ_TILEGX_IMM16_X0_HW1_LAST_TLS_GD 88 /* X0 pipe last hword 1 GD off */ |
#define | RZ_TILEGX_IMM16_X1_HW1_LAST_TLS_GD 89 /* X1 pipe last hword 1 GD off */ |
#define | RZ_TILEGX_IMM16_X0_HW0_TLS_IE 92 /* X0 pipe hword 0 TLS IE offset */ |
#define | RZ_TILEGX_IMM16_X1_HW0_TLS_IE 93 /* X1 pipe hword 0 TLS IE offset */ |
#define | RZ_TILEGX_IMM16_X0_HW0_LAST_PLT_PCREL 94 /* X0 pipe PC-rel PLT last hword 0 */ |
#define | RZ_TILEGX_IMM16_X1_HW0_LAST_PLT_PCREL 95 /* X1 pipe PC-rel PLT last hword 0 */ |
#define | RZ_TILEGX_IMM16_X0_HW1_LAST_PLT_PCREL 96 /* X0 pipe PC-rel PLT last hword 1 */ |
#define | RZ_TILEGX_IMM16_X1_HW1_LAST_PLT_PCREL 97 /* X1 pipe PC-rel PLT last hword 1 */ |
#define | RZ_TILEGX_IMM16_X0_HW2_LAST_PLT_PCREL 98 /* X0 pipe PC-rel PLT last hword 2 */ |
#define | RZ_TILEGX_IMM16_X1_HW2_LAST_PLT_PCREL 99 /* X1 pipe PC-rel PLT last hword 2 */ |
#define | RZ_TILEGX_IMM16_X0_HW0_LAST_TLS_IE 100 /* X0 pipe last hword 0 IE off */ |
#define | RZ_TILEGX_IMM16_X1_HW0_LAST_TLS_IE 101 /* X1 pipe last hword 0 IE off */ |
#define | RZ_TILEGX_IMM16_X0_HW1_LAST_TLS_IE 102 /* X0 pipe last hword 1 IE off */ |
#define | RZ_TILEGX_IMM16_X1_HW1_LAST_TLS_IE 103 /* X1 pipe last hword 1 IE off */ |
#define | RZ_TILEGX_TLS_DTPMOD64 106 /* 64-bit ID of symbol's module */ |
#define | RZ_TILEGX_TLS_DTPOFF64 107 /* 64-bit offset in TLS block */ |
#define | RZ_TILEGX_TLS_TPOFF64 108 /* 64-bit offset in static TLS block */ |
#define | RZ_TILEGX_TLS_DTPMOD32 109 /* 32-bit ID of symbol's module */ |
#define | RZ_TILEGX_TLS_DTPOFF32 110 /* 32-bit offset in TLS block */ |
#define | RZ_TILEGX_TLS_TPOFF32 111 /* 32-bit offset in static TLS block */ |
#define | RZ_TILEGX_TLS_GD_CALL 112 /* "jal" for TLS GD */ |
#define | RZ_TILEGX_IMM8_X0_TLS_GD_ADD 113 /* X0 pipe "addi" for TLS GD */ |
#define | RZ_TILEGX_IMM8_X1_TLS_GD_ADD 114 /* X1 pipe "addi" for TLS GD */ |
#define | RZ_TILEGX_IMM8_Y0_TLS_GD_ADD 115 /* Y0 pipe "addi" for TLS GD */ |
#define | RZ_TILEGX_IMM8_Y1_TLS_GD_ADD 116 /* Y1 pipe "addi" for TLS GD */ |
#define | RZ_TILEGX_TLS_IE_LOAD 117 /* "ld_tls" for TLS IE */ |
#define | RZ_TILEGX_IMM8_X0_TLS_ADD 118 /* X0 pipe "addi" for TLS GD/IE */ |
#define | RZ_TILEGX_IMM8_X1_TLS_ADD 119 /* X1 pipe "addi" for TLS GD/IE */ |
#define | RZ_TILEGX_IMM8_Y0_TLS_ADD 120 /* Y0 pipe "addi" for TLS GD/IE */ |
#define | RZ_TILEGX_IMM8_Y1_TLS_ADD 121 /* Y1 pipe "addi" for TLS GD/IE */ |
#define | RZ_TILEGX_GNU_VTINHERIT 128 /* GNU C++ vtable hierarchy */ |
#define | RZ_TILEGX_GNU_VTENTRY 129 /* GNU C++ vtable member usage */ |
#define | RZ_TILEGX_NUM 130 |
#define | EF_RISCV_RVC 0x0001 |
#define | EF_RISCV_FLOAT_ABI 0x0006 |
#define | EF_RISCV_FLOAT_ABI_SOFT 0x0000 |
#define | EF_RISCV_FLOAT_ABI_SINGLE 0x0002 |
#define | EF_RISCV_FLOAT_ABI_DOUBLE 0x0004 |
#define | EF_RISCV_FLOAT_ABI_QUAD 0x0006 |
#define | RZ_RISCV_NONE 0 |
#define | RZ_RISCV_32 1 |
#define | RZ_RISCV_64 2 |
#define | RZ_RISCV_RELATIVE 3 |
#define | RZ_RISCV_COPY 4 |
#define | RZ_RISCV_JUMP_SLOT 5 |
#define | RZ_RISCV_TLS_DTPMOD32 6 |
#define | RZ_RISCV_TLS_DTPMOD64 7 |
#define | RZ_RISCV_TLS_DTPREL32 8 |
#define | RZ_RISCV_TLS_DTPREL64 9 |
#define | RZ_RISCV_TLS_TPREL32 10 |
#define | RZ_RISCV_TLS_TPREL64 11 |
#define | RZ_RISCV_BRANCH 16 |
#define | RZ_RISCV_JAL 17 |
#define | RZ_RISCV_CALL 18 |
#define | RZ_RISCV_CALL_PLT 19 |
#define | RZ_RISCV_GOT_HI20 20 |
#define | RZ_RISCV_TLS_GOT_HI20 21 |
#define | RZ_RISCV_TLS_GD_HI20 22 |
#define | RZ_RISCV_PCREL_HI20 23 |
#define | RZ_RISCV_PCREL_LO12_I 24 |
#define | RZ_RISCV_PCREL_LO12_S 25 |
#define | RZ_RISCV_HI20 26 |
#define | RZ_RISCV_LO12_I 27 |
#define | RZ_RISCV_LO12_S 28 |
#define | RZ_RISCV_TPREL_HI20 29 |
#define | RZ_RISCV_TPREL_LO12_I 30 |
#define | RZ_RISCV_TPREL_LO12_S 31 |
#define | RZ_RISCV_TPREL_ADD 32 |
#define | RZ_RISCV_ADD8 33 |
#define | RZ_RISCV_ADD16 34 |
#define | RZ_RISCV_ADD32 35 |
#define | RZ_RISCV_ADD64 36 |
#define | RZ_RISCV_SUB8 37 |
#define | RZ_RISCV_SUB16 38 |
#define | RZ_RISCV_SUB32 39 |
#define | RZ_RISCV_SUB64 40 |
#define | RZ_RISCV_GNU_VTINHERIT 41 |
#define | RZ_RISCV_GNU_VTENTRY 42 |
#define | RZ_RISCV_ALIGN 43 |
#define | RZ_RISCV_RVC_BRANCH 44 |
#define | RZ_RISCV_RVC_JUMP 45 |
#define | RZ_RISCV_RVC_LUI 46 |
#define | RZ_RISCV_GPREL_I 47 |
#define | RZ_RISCV_GPREL_S 48 |
#define | RZ_RISCV_TPREL_I 49 |
#define | RZ_RISCV_TPREL_S 50 |
#define | RZ_RISCV_RELAX 51 |
#define | RZ_RISCV_SUB6 52 |
#define | RZ_RISCV_SET6 53 |
#define | RZ_RISCV_SET8 54 |
#define | RZ_RISCV_SET16 55 |
#define | RZ_RISCV_SET32 56 |
#define | RZ_RISCV_32_PCREL 57 |
#define | RZ_RISCV_IRELATIVE 58 |
#define | RZ_RISCV_NUM 59 |
#define | RZ_BPF_NONE 0 /* No reloc */ |
#define | RZ_BPF_64_64 1 |
#define | RZ_BPF_64_32 10 |
#define | RZ_METAG_HIADDR16 0 |
#define | RZ_METAG_LOADDR16 1 |
#define | RZ_METAG_ADDR32 2 /* 32bit absolute address */ |
#define | RZ_METAG_NONE 3 /* No reloc */ |
#define | RZ_METAG_RELBRANCH 4 |
#define | RZ_METAG_GETSETOFF 5 |
#define | RZ_METAG_REG32OP1 6 |
#define | RZ_METAG_REG32OP2 7 |
#define | RZ_METAG_REG32OP3 8 |
#define | RZ_METAG_REG16OP1 9 |
#define | RZ_METAG_REG16OP2 10 |
#define | RZ_METAG_REG16OP3 11 |
#define | RZ_METAG_REG32OP4 12 |
#define | RZ_METAG_HIOG 13 |
#define | RZ_METAG_LOOG 14 |
#define | RZ_METAG_REL8 15 |
#define | RZ_METAG_REL16 16 |
#define | RZ_METAG_GNU_VTINHERIT 30 |
#define | RZ_METAG_GNU_VTENTRY 31 |
#define | RZ_METAG_HI16_GOTOFF 32 |
#define | RZ_METAG_LO16_GOTOFF 33 |
#define | RZ_METAG_GETSET_GOTOFF 34 |
#define | RZ_METAG_GETSET_GOT 35 |
#define | RZ_METAG_HI16_GOTPC 36 |
#define | RZ_METAG_LO16_GOTPC 37 |
#define | RZ_METAG_HI16_PLT 38 |
#define | RZ_METAG_LO16_PLT 39 |
#define | RZ_METAG_RELBRANCH_PLT 40 |
#define | RZ_METAG_GOTOFF 41 |
#define | RZ_METAG_PLT 42 |
#define | RZ_METAG_COPY 43 |
#define | RZ_METAG_JMP_SLOT 44 |
#define | RZ_METAG_RELATIVE 45 |
#define | RZ_METAG_GLOB_DAT 46 |
#define | RZ_METAG_TLS_GD 47 |
#define | RZ_METAG_TLS_LDM 48 |
#define | RZ_METAG_TLS_LDO_HI16 49 |
#define | RZ_METAG_TLS_LDO_LO16 50 |
#define | RZ_METAG_TLS_LDO 51 |
#define | RZ_METAG_TLS_IE 52 |
#define | RZ_METAG_TLS_IENONPIC 53 |
#define | RZ_METAG_TLS_IENONPIC_HI16 54 |
#define | RZ_METAG_TLS_IENONPIC_LO16 55 |
#define | RZ_METAG_TLS_TPOFF 56 |
#define | RZ_METAG_TLS_DTPMOD 57 |
#define | RZ_METAG_TLS_DTPOFF 58 |
#define | RZ_METAG_TLS_LE 59 |
#define | RZ_METAG_TLS_LE_HI16 60 |
#define | RZ_METAG_TLS_LE_LO16 61 |
#define | RZ_NDS32_NONE 0 |
#define | RZ_NDS32_32_RELA 20 |
#define | RZ_NDS32_COPY 39 |
#define | RZ_NDS32_GLOB_DAT 40 |
#define | RZ_NDS32_JMP_SLOT 41 |
#define | RZ_NDS32_RELATIVE 42 |
#define | RZ_NDS32_TLS_TPOFF 102 |
#define | RZ_NDS32_TLS_DESC 119 |
#define | RZ_ARC_NONE 0x0 |
#define | RZ_ARC_8 0x1 |
#define | RZ_ARC_16 0x2 |
#define | RZ_ARC_24 0x3 |
#define | RZ_ARC_32 0x4 |
#define | RZ_ARC_B26 0x5 |
#define | RZ_ARC_B22_PCREL 0x6 |
#define | RZ_ARC_H30 0x7 |
#define | RZ_ARC_N8 0x8 |
#define | RZ_ARC_N16 0x9 |
#define | RZ_ARC_N24 0xA |
#define | RZ_ARC_N32 0xB |
#define | RZ_ARC_SDA 0xC |
#define | RZ_ARC_SECTOFF 0xD |
#define | RZ_ARC_S21H_PCREL 0xE |
#define | RZ_ARC_S21W_PCREL 0xF |
#define | RZ_ARC_S25H_PCREL 0x10 |
#define | RZ_ARC_S25W_PCREL 0x11 |
#define | RZ_ARC_SDA32 0x12 |
#define | RZ_ARC_SDA_LDST 0x13 |
#define | RZ_ARC_SDA_LDST1 0x14 |
#define | RZ_ARC_SDA_LDST2 0x15 |
#define | RZ_ARC_SDA16_LD 0x16 |
#define | RZ_ARC_SDA16_LD1 0x17 |
#define | RZ_ARC_SDA16_LD2 0x18 |
#define | RZ_ARC_S13_PCREL 0x19 |
#define | RZ_ARC_W 0x1A |
#define | RZ_ARC_32_ME 0x1B |
#define | RZ_ARC_N32_ME 0x1C |
#define | RZ_ARC_SECTOFF_ME 0x1D |
#define | RZ_ARC_SDA32_ME 0x1E |
#define | RZ_ARC_W_ME 0x1F |
#define | RZ_ARC_H30_ME 0x20 |
#define | RZ_ARC_SECTOFF_U8 0x21 |
#define | RZ_ARC_SECTOFF_S9 0x22 |
#define | RZ_AC_SECTOFF_U8 0x23 |
#define | RZ_AC_SECTOFF_U8_1 0x24 |
#define | RZ_AC_SECTOFF_U8_2 0x25 |
#define | RZ_AC_SECTOFF_S9 0x26 |
#define | RZ_AC_SECTOFF_S9_1 0x27 |
#define | RZ_AC_SECTOFF_S9_2 0x28 |
#define | RZ_ARC_SECTOFF_ME_1 0x29 |
#define | RZ_ARC_SECTOFF_ME_2 0x2A |
#define | RZ_ARC_SECTOFF_1 0x2B |
#define | RZ_ARC_SECTOFF_2 0x2C |
#define | RZ_ARC_PC32 0x32 |
#define | RZ_ARC_GOTPC32 0x33 |
#define | RZ_ARC_PLT32 0x34 |
#define | RZ_ARC_COPY 0x35 |
#define | RZ_ARC_GLOB_DAT 0x36 |
#define | RZ_ARC_JUMP_SLOT 0x37 |
#define | RZ_ARC_RELATIVE 0x38 |
#define | RZ_ARC_GOTOFF 0x39 |
#define | RZ_ARC_GOTPC 0x3A |
#define | RZ_ARC_GOT32 0x3B |
#define | RZ_ARC_TLS_DTPMOD 0x42 |
#define | RZ_ARC_TLS_DTPOFF 0x43 |
#define | RZ_ARC_TLS_TPOFF 0x44 |
#define | RZ_ARC_TLS_GD_GOT 0x45 |
#define | RZ_ARC_TLS_GD_LD 0x46 |
#define | RZ_ARC_TLS_GD_CALL 0x47 |
#define | RZ_ARC_TLS_IE_GOT 0x48 |
#define | RZ_ARC_TLS_DTPOFF_S9 0x4a |
#define | RZ_ARC_TLS_LE_S9 0x4a |
#define | RZ_ARC_TLS_LE_32 0x4b |
#define | ET_HEXAGON_IR 0xff00 |
#define | EF_HEXAGON_MACH_V2 0x1 |
#define | EF_HEXAGON_MACH_V3 0x2 |
#define | EF_HEXAGON_MACH_V4 0x3 |
#define | EF_HEXAGON_MACH_V5 0x4 |
#define | EF_HEXAGON_MACH_V55 0x5 |
#define | EF_HEXAGON_MACH_V60 0x60 |
#define | EF_HEXAGON_MACH_V61 0x61 |
#define | EF_HEXAGON_MACH_V62 0x62 |
#define | EF_HEXAGON_MACH_V65 0x65 |
#define | EF_HEXAGON_MACH_V66 0x66 |
#define | EF_HEXAGON_MACH_V67 0x67 |
#define | EF_HEXAGON_MACH_V67T 0x8067 /* Hexagon V67 Small Core (V67t) */ |
#define | EF_HEXAGON_MACH_V68 = 0x68 |
#define | EF_HEXAGON_ISA_MACH 0x0 /* Same as specified in bits[11:0] of e_flags */ |
#define | EF_HEXAGON_ISA_V2 0x10 |
#define | EF_HEXAGON_ISA_V3 0x20 |
#define | EF_HEXAGON_ISA_V4 0x30 |
#define | EF_HEXAGON_ISA_V5 0x40 |
#define | EF_HEXAGON_ISA_V55 0x50 |
#define | EF_HEXAGON_ISA_V60 0x60 |
#define | EF_HEXAGON_ISA_V62 0x62 |
#define | EF_HEXAGON_ISA_V65 0x65 |
#define | EF_HEXAGON_ISA_V66 0x66 |
#define | EF_HEXAGON_ISA_V67 0x67 |
#define | EF_HEXAGON_ISA_V68 0x68 |
#define | SHN_HEXAGON_SCOMMON 0xff00 /* Other access sizes */ |
#define | SHN_HEXAGON_SCOMMON_1 0xff01 /* Byte-sized access */ |
#define | SHN_HEXAGON_SCOMMON_2 0xff02 /* Half-word-sized access */ |
#define | SHN_HEXAGON_SCOMMON_4 0xff03 /* Word-size access */ |
#define | SHN_HEXAGON_SCOMMON_8 0xff04 /* Double-word-size access */ |
#define | SHF_HEXAGON_GPREL 0x10000000 /* Section resides in the small data area */ |
#define | SHT_HEX_ORDERED 0x70000000 /* Link editor is to sort the entries in this section based on their sizes. */ |
#define | R_HEX_NONE 0 /* None None None None */ |
#define | R_HEX_B22_PCREL 1 /* Word32_B22 (S + A - P) >> 2 Signed Verify */ |
#define | R_HEX_B15_PCREL 2 /* Word32_B15 (S + A - P) >> 2 Signed Verify */ |
#define | R_HEX_B7_PCREL 3 /* Word32_B7 (S + A - P) >> 2 Signed Verify */ |
#define | R_HEX_LO16 4 /* Word32_LO (S + A) Unsigned Truncate */ |
#define | R_HEX_HI16 5 /* Word32_LO (S + A) >> 16 Unsigned Truncate */ |
#define | R_HEX_32 6 /* Word32 (S + A) Unsigned Truncate */ |
#define | R_HEX_16 7 /* Word16 (S + A) Unsigned Truncate */ |
#define | R_HEX_8 8 /* Word8 (S + A) Unsigned Truncate */ |
#define | R_HEX_GPREL16_0 9 /* Word32_GP (S + A - GP) Unsigned Verify */ |
#define | R_HEX_GPREL16_1 10 /* Word32_GP (S + A - GP) >> 1 Unsigned Verify */ |
#define | R_HEX_GPREL16_2 11 /* Word32_GP (S + A - GP) >> 2 Unsigned Verify */ |
#define | R_HEX_GPREL16_3 12 /* Word32_GP (S + A - GP) >> 3 Unsigned Verify */ |
#define | R_HEX_HL16 13 /* Word32_HL (S + A)>>16 & (S + A) Unsigned Truncate */ |
#define | R_HEX_B13_PCREL 14 /* Word32_B13 (S + A - P) >> 2 Signed Verify */ |
#define | R_HEX_B9_PCREL 15 /* Word32_B9 (S + A - P) >> 2 Signed Verify */ |
#define | R_HEX_B32_PCREL_X 16 /* Word32_X26 (S + A - P) >> 6 Signed Truncate */ |
#define | R_HEX_32_6_X 17 /* Word32_X26 (S + A) >> 6 Unsigned Verify */ |
#define | R_HEX_B22_PCREL_X 18 /* Word32_B22 (S + A - P) & 0x3f Signed Verify */ |
#define | R_HEX_B15_PCREL_X 19 /* Word32_B15 (S + A - P) & 0x3f Signed Verify */ |
#define | R_HEX_B13_PCREL_X 20 /* Word32_B13 (S + A - P) & 0x3f Signed Verify */ |
#define | R_HEX_B9_PCREL_X 21 /* Word32_B9 (S + A - P) & 0x3f Signed Verify */ |
#define | R_HEX_B7_PCREL_X 22 /* Word32_B7 (S + A - P) & 0x3f Signed Verify */ |
#define | R_HEX_16_X 23 /* Word32_U6 (S + A) Unsigned Truncate */ |
#define | R_HEX_12_X 24 /* Word32_R6 (S + A) Unsigned Truncate */ |
#define | R_HEX_11_X 25 /* Word32_U6 (S + A) Unsigned Truncate */ |
#define | R_HEX_10_X 26 /* Word32_U6 (S + A) Unsigned Truncate */ |
#define | R_HEX_9_X 27 /* Word32_U6 (S + A) Unsigned Truncate */ |
#define | R_HEX_8_X 28 /* Word32_U6 (S + A) Unsigned Truncate */ |
#define | R_HEX_7_X 29 /* Word32_U6 (S + A) Unsigned Truncate */ |
#define | R_HEX_6_X 30 /* Word32_U6 (S + A) Unsigned Truncate */ |
#define | R_HEX_32_PCREL 31 /* Word32 (S + A - P) Signed Verify */ |
#define | R_HEX_COPY 32 /* Word32 (See ABI docs) */ |
#define | R_HEX_GLOB_DAT 33 /* Word32 (S + A) (See ABI docs)Unsigned Truncate */ |
#define | R_HEX_JMP_SLOT 34 /* Word32 (S + A) (see ABI docs)Unsigned Truncate */ |
#define | R_HEX_RELATIVE 35 /* Word32 (B + A) (see ABI docs)Unsigned Truncate */ |
#define | R_HEX_PLT_B22_PCREL 36 /* Word32_B22 (L + A - P) >> 2 Signed Verify */ |
#define | R_HEX_GOTREL_LO16 37 /* Word32_LO (S + A - GOT) Signed Truncate */ |
#define | R_HEX_GOTREL_HI16 38 /* Word32_LO (S + A - GOT) >> 16 Signed Truncate */ |
#define | R_HEX_GOTREL_32 39 /* Word32 (S + A - GOT) Signed Truncate */ |
#define | R_HEX_GOT_LO16 40 /* Word32_LO (G) Signed Truncate */ |
#define | R_HEX_GOT_HI16 41 /* Word32_LO (G) >> 16 Signed Truncate */ |
#define | R_HEX_GOT_32 42 /* Word32 (G) Signed Truncate */ |
#define | R_HEX_GOT_16 43 /* Word32_U16 (G) Signed Verify */ |
#define | R_HEX_DTPMOD_32 44 /* Word32 */ |
#define | R_HEX_DTPREL_LO16 45 /* Word32_LO (S + A - T) Signed Truncate */ |
#define | R_HEX_DTPREL_HI16 46 /* Word32_LO (S + A - T) >> 16 Signed Truncate */ |
#define | R_HEX_DTPREL_32 47 /* Word32 (S + A - T) Signed Truncate */ |
#define | R_HEX_DTPREL_16 48 /* Word32_U16 (S + A - T) Signed Verify */ |
#define | R_HEX_GD_PLT_B22_PCREL 49 /* Word32_B22 (L + A - P) >> 2 Signed Verify */ |
#define | R_HEX_GD_GOT_LO16 50 /* Word32_LO (G) Signed Truncate */ |
#define | R_HEX_GD_GOT_HI16 51 /* Word32_LO (G) >> 16 Signed Truncate */ |
#define | R_HEX_GD_GOT_32 52 /* Word32 (G) Signed Truncate */ |
#define | R_HEX_GD_GOT_16 53 /* Word32_U16 (G) Signed Verify */ |
#define | R_HEX_IE_LO16 54 /* Word32_LO (G + GOT) Signed Truncate */ |
#define | R_HEX_IE_HI16 55 /* Word32_LO (G + GOT) >> 16 Signed Truncate */ |
#define | R_HEX_IE_32 56 /* Word32 (G + GOT) Signed Truncate */ |
#define | R_HEX_IE_GOT_LO16 57 /* Word32_LO (G) Signed Truncate */ |
#define | R_HEX_IE_GOT_HI16 58 /* Word32_LO (G) >> 16 Signed Truncate */ |
#define | R_HEX_IE_GOT_32 59 /* Word32 (G) Signed Truncate */ |
#define | R_HEX_IE_GOT_16 60 /* Word32_U16 (G) Signed Verify */ |
#define | R_HEX_TPREL_LO16 61 /* Word32_LO (TLS - S - A) Signed Truncate */ |
#define | R_HEX_TPREL_HI16 62 /* Word32_LO (TLS - S - A) >> 16 Signed Truncate */ |
#define | R_HEX_TPREL_32 63 /* Word32 (TLS - S - A) Signed Truncate */ |
#define | R_HEX_TPREL_16 64 /* Word32_U16 (TLS - S - A) Signed Verify */ |
#define | R_HEX_6_PCREL_X 65 /* Word32_U6 (S + A - P) Unsigned Truncate */ |
#define | R_HEX_GOTREL_32_6_X 66 /* Word32_X26 (S + A - GOT) >> 6 Signed Truncate */ |
#define | R_HEX_GOTREL_16_X 67 /* Word32_U6 (S + A - GOT) Unsigned Truncate */ |
#define | R_HEX_GOTREL_11_X 68 /* Word32_U6 (S + A - GOT) Unsigned Truncate */ |
#define | R_HEX_GOT_32_6_X 69 /* Word32_X26 (G) >> 6 Signed Truncate */ |
#define | R_HEX_GOT_16_X 70 /* Word32_U6 (G) Signed Truncate */ |
#define | R_HEX_GOT_11_X 71 /* Word32_U6 (G) Unsigned Truncate */ |
#define | R_HEX_DTPREL_32_6_X 72 /* Word32_X26 (S + A - T) >> 6 Signed Truncate */ |
#define | R_HEX_DTPREL_16_X 73 /* Word32_U6 (S + A - T) Unsigned Truncate */ |
#define | R_HEX_DTPREL_11_X 74 /* Word32_U6 (S + A - T) Unsigned Truncate */ |
#define | R_HEX_GD_GOT_32_6_X 75 /* Word32_X26 (G) >> 6 Signed Truncate */ |
#define | R_HEX_GD_GOT_16_X 76 /* Word32_U6 (G) Unsigned Truncate */ |
#define | R_HEX_GD_GOT_11_X 77 /* Word32_U6 (G) Unsigned Truncate */ |
#define | R_HEX_IE_32_6_X 78 /* Word32_X26 (G + GOT) >> 6 Signed Truncate */ |
#define | R_HEX_IE_16_X 79 /* Word32_U6 (G + GOT) Unsigned Truncate */ |
#define | R_HEX_IE_GOT_32_6_X 80 /* Word32_X26 (G) >> 6 Signed Truncate */ |
#define | R_HEX_IE_GOT_16_X 81 /* Word32_U6 (G) Unsigned Truncate */ |
#define | R_HEX_IE_GOT_11_X 82 /* Word32_U6 (G) Unsigned Truncate */ |
#define | R_HEX_TPREL_32_6_X 83 /* Word32_X26 (TLS - S - A) >> 6 Signed Truncate */ |
#define | R_HEX_TPREL_16_X 84 /* Word32_U6 (TLS - S - A) Unsigned Truncate */ |
#define | R_HEX_TPREL_11_X 85 /* Word32_U6 (TLS - S - A) Unsigned Truncate */ |
#define | R_HEX_LD_PLT_B22_PCREL 86 /* Word32_B22 (L + A - P) >> 2 Signed Verify */ |
#define | R_HEX_LD_GOT_LO16 87 /* Word32_LO (G) Signed Truncate */ |
#define | R_HEX_LD_GOT_HI16 88 /* Word32_LO (G) >> 16 Signed Truncate */ |
#define | R_HEX_LD_GOT_32 89 /* Word32 (G) Signed Truncate */ |
#define | R_HEX_LD_GOT_16 90 /* Word32_R16 (G) Signed Verify */ |
#define | R_HEX_LD_GOT_32_6_X 91 /* Word32_X26 (G) >> 6 Signed Truncate */ |
#define | R_HEX_LD_GOT_16_X 92 /* Word32_U6 (G) Unsigned Truncate */ |
#define | R_HEX_LD_GOT_11_X 93 /* Word32_U6 (G) Unsigned Truncate */ |
#define | R_HEX_23_REG 94 /* Word32_B21 (S + A - MB) >> 2 Unsigned Verify */ |
#define | R_HEX_GD_PLT_B22_PCREL_X 95 /* Word32_B22 (S + A - P) & 0x3f Signed Truncate */ |
#define | R_HEX_GD_PLT_B32_PCREL_X 96 /* Word32_X26 (S + A - P) >> 6 Signed Truncate */ |
#define | R_HEX_LD_PLT_B22_PCREL_X 97 /* Word32_B22 (S + A - P) & 0x3f Signed Truncate */ |
#define | R_HEX_LD_PLT_B32_PCREL_X 98 /* Word32_X26 (S + A - P) >> 6 Signed Truncate */ |
#define | R_HEX_27_REG 99 /* Word32_M25 (S + A - MB) >> 2 Unsigned Verify */ |
#define | R_HEX_BITMASK_WORD8 0xff |
#define | R_HEX_BITMASK_WORD16 0xffff |
#define | R_HEX_BITMASK_WORD32 0xffffffff |
#define | R_HEX_BITMASK_WORD32_LO 0x00c03fff |
#define | R_HEX_BITMASK_WORD32_HL 0x00c03fff |
#define | R_HEX_BITMASK_WORD32_B7 0x00001f18 |
#define | R_HEX_BITMASK_WORD32_B9 0x003000fe |
#define | R_HEX_BITMASK_WORD32_B13 0x00202ffe |
#define | R_HEX_BITMASK_WORD32_B15 0x00df20fe |
#define | R_HEX_BITMASK_WORD32_B22 0x01ff3ffe |
#define | R_HEX_BITMASK_WORD32_M21 0x0fff3fe0 |
#define | R_HEX_BITMASK_WORD32_M25 0x0fff3fef |
#define | R_HEX_BITMASK_WORD32_R6 0x000007e0 |
#define | R_HEX_BITMASK_WORD32_X26 0x0fff3fff |
#define | DT_HEXAGON_SYMSZ 0x70000000 |
#define | DT_HEXAGON_VER 0x70000001 |
#define | DT_HEXAGON_PLT 0x70000002 |
Typedefs | |
typedef uint16_t | Elf64_Half |
typedef uint32_t | Elf32_Word |
typedef int32_t | Elf32_Sword |
typedef uint32_t | Elf64_Word |
typedef int32_t | Elf64_Sword |
typedef uint64_t | Elf32_Xword |
typedef int64_t | Elf32_Sxword |
typedef uint64_t | Elf64_Xword |
typedef int64_t | Elf64_Sxword |
typedef uint32_t | Elf32_Addr |
typedef uint64_t | Elf64_Addr |
typedef uint32_t | Elf32_Off |
typedef uint64_t | Elf64_Off |
typedef uint16_t | Elf32_Section |
typedef uint16_t | Elf64_Section |
typedef Elf32_Half | Elf32_Versym |
typedef Elf64_Half | Elf64_Versym |
typedef Elf32_Addr | Elf32_Conflict |
Enumerations | |
enum | { Val_GNU_MIPS_ABI_FP_ANY = 0 , Val_GNU_MIPS_ABI_FP_DOUBLE = 1 , Val_GNU_MIPS_ABI_FP_SINGLE = 2 , Val_GNU_MIPS_ABI_FP_SOFT = 3 , Val_GNU_MIPS_ABI_FP_OLD_64 = 4 , Val_GNU_MIPS_ABI_FP_XX = 5 , Val_GNU_MIPS_ABI_FP_64 = 6 , Val_GNU_MIPS_ABI_FP_64A = 7 , Val_GNU_MIPS_ABI_FP_MAX = 7 } |
Variables | |
__BEGIN_DECLS typedef uint16_t | Elf32_Half |
#define AT_BASE 7 /* Base address of interpreter */ |
Definition at line 1133 of file glibc_elf.h.
#define AT_BASE_PLATFORM 24 /* String identifying real platforms.*/ |
Definition at line 1162 of file glibc_elf.h.
#define AT_CLKTCK 17 /* Frequency of times() */ |
Definition at line 1141 of file glibc_elf.h.
#define AT_DCACHEBSIZE 19 /* Data cache block size. */ |
Definition at line 1152 of file glibc_elf.h.
#define AT_EGID 14 /* Effective gid */ |
Definition at line 1140 of file glibc_elf.h.
#define AT_ENTRY 9 /* Entry point of program */ |
Definition at line 1135 of file glibc_elf.h.
#define AT_EUID 12 /* Effective uid */ |
Definition at line 1138 of file glibc_elf.h.
#define AT_EXECFD 2 /* File descriptor of program */ |
Definition at line 1128 of file glibc_elf.h.
#define AT_EXECFN 31 /* Filename of executable. */ |
Definition at line 1168 of file glibc_elf.h.
#define AT_FLAGS 8 /* Flags */ |
Definition at line 1134 of file glibc_elf.h.
#define AT_FPUCW 18 /* Used FPU control word. */ |
Definition at line 1149 of file glibc_elf.h.
#define AT_GID 13 /* Real gid */ |
Definition at line 1139 of file glibc_elf.h.
#define AT_HWCAP |
Definition at line 1145 of file glibc_elf.h.
#define AT_HWCAP2 |
Definition at line 1166 of file glibc_elf.h.
#define AT_ICACHEBSIZE 20 /* Instruction cache block size. */ |
Definition at line 1153 of file glibc_elf.h.
#define AT_IGNORE 1 /* Entry should be ignored */ |
Definition at line 1127 of file glibc_elf.h.
#define AT_IGNOREPPC 22 /* Entry should be ignored. */ |
Definition at line 1158 of file glibc_elf.h.
#define AT_L1D_CACHEGEOMETRY 43 |
Definition at line 1188 of file glibc_elf.h.
#define AT_L1D_CACHESHAPE 35 |
Definition at line 1178 of file glibc_elf.h.
#define AT_L1D_CACHESIZE 42 |
Definition at line 1187 of file glibc_elf.h.
#define AT_L1I_CACHEGEOMETRY 41 |
Definition at line 1186 of file glibc_elf.h.
#define AT_L1I_CACHESHAPE 34 |
Definition at line 1177 of file glibc_elf.h.
#define AT_L1I_CACHESIZE 40 |
Definition at line 1185 of file glibc_elf.h.
#define AT_L2_CACHEGEOMETRY 45 |
Definition at line 1190 of file glibc_elf.h.
#define AT_L2_CACHESHAPE 36 |
Definition at line 1179 of file glibc_elf.h.
#define AT_L2_CACHESIZE 44 |
Definition at line 1189 of file glibc_elf.h.
#define AT_L3_CACHEGEOMETRY 47 |
Definition at line 1192 of file glibc_elf.h.
#define AT_L3_CACHESHAPE 37 |
Definition at line 1180 of file glibc_elf.h.
#define AT_L3_CACHESIZE 46 |
Definition at line 1191 of file glibc_elf.h.
#define AT_MINSIGSTKSZ |
Definition at line 1194 of file glibc_elf.h.
#define AT_NOTELF 10 /* Program is not ELF */ |
Definition at line 1136 of file glibc_elf.h.
#define AT_NULL 0 /* End of vector */ |
Definition at line 1126 of file glibc_elf.h.
#define AT_PAGESZ 6 /* System page size */ |
Definition at line 1132 of file glibc_elf.h.
#define AT_PHDR 3 /* Program headers for program */ |
Definition at line 1129 of file glibc_elf.h.
Definition at line 1130 of file glibc_elf.h.
#define AT_PHNUM 5 /* Number of program headers */ |
Definition at line 1131 of file glibc_elf.h.
#define AT_PLATFORM 15 /* String identifying platform. */ |
Definition at line 1144 of file glibc_elf.h.
#define AT_RANDOM 25 /* Address of 16 random bytes. */ |
Definition at line 1164 of file glibc_elf.h.
#define AT_SECURE 23 /* Boolean, was exec setuid-like? */ |
Definition at line 1160 of file glibc_elf.h.
#define AT_SYSINFO 32 |
Definition at line 1172 of file glibc_elf.h.
#define AT_SYSINFO_EHDR 33 |
Definition at line 1173 of file glibc_elf.h.
#define AT_UCACHEBSIZE 21 /* Unified cache block size. */ |
Definition at line 1154 of file glibc_elf.h.
#define AT_UID 11 /* Real uid */ |
Definition at line 1137 of file glibc_elf.h.
#define DF_1_CONFALT 0x00002000 /* Configuration alternative created.*/ |
Definition at line 955 of file glibc_elf.h.
#define DF_1_DIRECT 0x00000100 /* Direct binding enabled. */ |
Definition at line 950 of file glibc_elf.h.
#define DF_1_DISPRELDNE 0x00008000 /* Disp reloc applied at build time. */ |
Definition at line 957 of file glibc_elf.h.
#define DF_1_DISPRELPND 0x00010000 /* Disp reloc applied at run-time. */ |
Definition at line 958 of file glibc_elf.h.
#define DF_1_EDITED 0x00200000 /* Object is modified after built. */ |
Definition at line 963 of file glibc_elf.h.
#define DF_1_ENDFILTEE 0x00004000 /* Filtee terminates filters search. */ |
Definition at line 956 of file glibc_elf.h.
#define DF_1_GLOBAL 0x00000002 /* Set RTLD_GLOBAL for this object. */ |
Definition at line 943 of file glibc_elf.h.
#define DF_1_GLOBAUDIT 0x01000000 /* Global auditing required. */ |
Definition at line 966 of file glibc_elf.h.
#define DF_1_GROUP 0x00000004 /* Set RTLD_GROUP for this object. */ |
Definition at line 944 of file glibc_elf.h.
#define DF_1_IGNMULDEF 0x00040000 |
Definition at line 960 of file glibc_elf.h.
#define DF_1_INITFIRST 0x00000020 /* Set RTLD_INITFIRST for this object*/ |
Definition at line 947 of file glibc_elf.h.
#define DF_1_INTERPOSE 0x00000400 /* Object is used to interpose. */ |
Definition at line 952 of file glibc_elf.h.
#define DF_1_KMOD 0x10000000 |
Definition at line 970 of file glibc_elf.h.
#define DF_1_LOADFLTR 0x00000010 /* Trigger filtee loading at runtime.*/ |
Definition at line 946 of file glibc_elf.h.
#define DF_1_NOCOMMON 0x40000000 |
Definition at line 972 of file glibc_elf.h.
#define DF_1_NODEFLIB 0x00000800 /* Ignore default lib search path. */ |
Definition at line 953 of file glibc_elf.h.
#define DF_1_NODELETE 0x00000008 /* Set RTLD_NODELETE for this object.*/ |
Definition at line 945 of file glibc_elf.h.
#define DF_1_NODIRECT 0x00020000 /* Object has no-direct binding. */ |
Definition at line 959 of file glibc_elf.h.
#define DF_1_NODUMP 0x00001000 /* Object can't be dldump'ed. */ |
Definition at line 954 of file glibc_elf.h.
#define DF_1_NOHDR 0x00100000 |
Definition at line 962 of file glibc_elf.h.
#define DF_1_NOKSYMS 0x00080000 |
Definition at line 961 of file glibc_elf.h.
#define DF_1_NOOPEN 0x00000040 /* Set RTLD_NOOPEN for this object. */ |
Definition at line 948 of file glibc_elf.h.
#define DF_1_NORELOC 0x00400000 |
Definition at line 964 of file glibc_elf.h.
#define DF_1_NOW 0x00000001 /* Set RTLD_NOW for this object. */ |
Definition at line 942 of file glibc_elf.h.
#define DF_1_ORIGIN 0x00000080 /* $ORIGIN must be handled. */ |
Definition at line 949 of file glibc_elf.h.
#define DF_1_PIE 0x08000000 |
Definition at line 969 of file glibc_elf.h.
#define DF_1_SINGLETON 0x02000000 /* Singleton symbols are used. */ |
Definition at line 967 of file glibc_elf.h.
#define DF_1_STUB 0x04000000 |
Definition at line 968 of file glibc_elf.h.
#define DF_1_SYMINTPOSE 0x00800000 /* Object has individual interposers. */ |
Definition at line 965 of file glibc_elf.h.
#define DF_1_TRANS 0x00000200 |
Definition at line 951 of file glibc_elf.h.
#define DF_1_WEAKFILTER 0x20000000 |
Definition at line 971 of file glibc_elf.h.
#define DF_BIND_NOW 0x00000008 /* No lazy binding for this object */ |
Definition at line 937 of file glibc_elf.h.
#define DF_ORIGIN 0x00000001 /* Object may use DF_ORIGIN */ |
Definition at line 934 of file glibc_elf.h.
#define DF_P1_GROUPPERM |
Definition at line 980 of file glibc_elf.h.
#define DF_P1_LAZYLOAD 0x00000001 /* Lazyload following object. */ |
Definition at line 979 of file glibc_elf.h.
#define DF_STATIC_TLS 0x00000010 /* Module uses the static TLS model */ |
Definition at line 938 of file glibc_elf.h.
#define DF_SYMBOLIC 0x00000002 /* Symbol resolutions starts here */ |
Definition at line 935 of file glibc_elf.h.
#define DF_TEXTREL 0x00000004 /* Object contains text relocations */ |
Definition at line 936 of file glibc_elf.h.
#define DT_AARCH64_NUM 6 |
Definition at line 2794 of file glibc_elf.h.
#define DT_AARCH64_VARIANT_PCS (DT_LOPROC + 5) |
Definition at line 2793 of file glibc_elf.h.
#define DT_ADDRNUM 11 |
Definition at line 908 of file glibc_elf.h.
#define DT_ADDRRNGHI 0x6ffffeff |
Definition at line 906 of file glibc_elf.h.
#define DT_ADDRRNGLO 0x6ffffe00 |
Definition at line 894 of file glibc_elf.h.
#define DT_ADDRTAGIDX | ( | tag | ) | (DT_ADDRRNGHI - (tag)) /* Reverse order! */ |
Definition at line 907 of file glibc_elf.h.
#define DT_ALPHA_NUM 1 |
Definition at line 2308 of file glibc_elf.h.
#define DT_ALPHA_PLTRO (DT_LOPROC + 0) |
Definition at line 2307 of file glibc_elf.h.
#define DT_AUDIT 0x6ffffefc /* Object auditing. */ |
Definition at line 902 of file glibc_elf.h.
Definition at line 928 of file glibc_elf.h.
#define DT_BIND_NOW 24 /* Process relocations of object */ |
Definition at line 852 of file glibc_elf.h.
#define DT_CHECKSUM 0x6ffffdf8 |
Definition at line 877 of file glibc_elf.h.
#define DT_CONFIG 0x6ffffefa /* Configuration information. */ |
Definition at line 900 of file glibc_elf.h.
#define DT_DEBUG 21 /* For debugging; unspecified */ |
Definition at line 849 of file glibc_elf.h.
#define DT_DEPAUDIT 0x6ffffefb /* Dependency auditing. */ |
Definition at line 901 of file glibc_elf.h.
#define DT_ENCODING 32 /* Start of encoded range */ |
Definition at line 859 of file glibc_elf.h.
#define DT_EXTRANUM 3 |
Definition at line 931 of file glibc_elf.h.
#define DT_EXTRATAGIDX | ( | tag | ) | ((Elf32_Word) - ((Elf32_Sword)(tag) << 1 >> 1) - 1) |
Definition at line 930 of file glibc_elf.h.
#define DT_FEATURE_1 0x6ffffdfc /* Feature selection (DTF_*). */ |
Definition at line 881 of file glibc_elf.h.
Definition at line 929 of file glibc_elf.h.
#define DT_FINI 13 /* Address of termination function */ |
Definition at line 841 of file glibc_elf.h.
Definition at line 854 of file glibc_elf.h.
#define DT_FINI_ARRAYSZ 28 /* Size in bytes of DT_FINI_ARRAY */ |
Definition at line 856 of file glibc_elf.h.
#define DT_FLAGS 30 /* Flags for the object being loaded */ |
Definition at line 858 of file glibc_elf.h.
#define DT_FLAGS_1 0x6ffffffb /* State flags, see DF_1_* below. */ |
Definition at line 918 of file glibc_elf.h.
#define DT_GNU_CONFLICT 0x6ffffef8 /* Start of conflict section */ |
Definition at line 898 of file glibc_elf.h.
#define DT_GNU_CONFLICTSZ 0x6ffffdf6 /* Size of conflict section */ |
Definition at line 875 of file glibc_elf.h.
#define DT_GNU_HASH 0x6ffffef5 /* GNU-style hash table. */ |
Definition at line 895 of file glibc_elf.h.
#define DT_GNU_LIBLIST 0x6ffffef9 /* Library list */ |
Definition at line 899 of file glibc_elf.h.
#define DT_GNU_LIBLISTSZ 0x6ffffdf7 /* Size of library list */ |
Definition at line 876 of file glibc_elf.h.
#define DT_GNU_PRELINKED 0x6ffffdf5 /* Prelinking timestamp */ |
Definition at line 874 of file glibc_elf.h.
#define DT_HASH 4 /* Address of symbol hash table */ |
Definition at line 832 of file glibc_elf.h.
#define DT_HEXAGON_PLT 0x70000002 |
Definition at line 4106 of file glibc_elf.h.
#define DT_HEXAGON_SYMSZ 0x70000000 |
Definition at line 4104 of file glibc_elf.h.
#define DT_HEXAGON_VER 0x70000001 |
Definition at line 4105 of file glibc_elf.h.
#define DT_HIOS 0x6ffff000 /* End of OS-specific */ |
Definition at line 865 of file glibc_elf.h.
#define DT_HIPROC 0x7fffffff /* End of processor-specific */ |
Definition at line 867 of file glibc_elf.h.
#define DT_IA_64_NUM 1 |
Definition at line 3032 of file glibc_elf.h.
#define DT_IA_64_PLT_RESERVE (DT_LOPROC + 0) |
Definition at line 3031 of file glibc_elf.h.
#define DT_INIT 12 /* Address of init function */ |
Definition at line 840 of file glibc_elf.h.
Definition at line 853 of file glibc_elf.h.
#define DT_INIT_ARRAYSZ 27 /* Size in bytes of DT_INIT_ARRAY */ |
Definition at line 855 of file glibc_elf.h.
#define DT_JMPREL 23 /* Address of PLT relocs */ |
Definition at line 851 of file glibc_elf.h.
#define DT_LOOS 0x6000000d /* Start of OS-specific */ |
Definition at line 864 of file glibc_elf.h.
#define DT_LOPROC 0x70000000 /* Start of processor-specific */ |
Definition at line 866 of file glibc_elf.h.
#define DT_MIPS_AUX_DYNAMIC 0x70000031 /* Address of aux .dynamic. */ |
Definition at line 1888 of file glibc_elf.h.
#define DT_MIPS_BASE_ADDRESS 0x70000006 /* Base address */ |
Definition at line 1851 of file glibc_elf.h.
#define DT_MIPS_COMPACT_SIZE 0x7000002f /* (O32)Size of compact rel section. */ |
Definition at line 1886 of file glibc_elf.h.
#define DT_MIPS_CONFLICT 0x70000008 /* Address of CONFLICT section */ |
Definition at line 1853 of file glibc_elf.h.
#define DT_MIPS_CONFLICTNO 0x7000000b /* Number of CONFLICT entries */ |
Definition at line 1856 of file glibc_elf.h.
#define DT_MIPS_CXX_FLAGS 0x70000022 /* Flags indicating for C++ flavor. */ |
Definition at line 1873 of file glibc_elf.h.
#define DT_MIPS_DELTA_CLASS 0x70000017 /* Delta C++ class definition. */ |
Definition at line 1863 of file glibc_elf.h.
#define DT_MIPS_DELTA_CLASS_NO |
Definition at line 1864 of file glibc_elf.h.
#define DT_MIPS_DELTA_CLASSSYM |
Definition at line 1871 of file glibc_elf.h.
#define DT_MIPS_DELTA_CLASSSYM_NO |
Definition at line 1872 of file glibc_elf.h.
#define DT_MIPS_DELTA_INSTANCE 0x70000019 /* Delta C++ class instances. */ |
Definition at line 1865 of file glibc_elf.h.
#define DT_MIPS_DELTA_INSTANCE_NO |
Definition at line 1866 of file glibc_elf.h.
#define DT_MIPS_DELTA_RELOC 0x7000001b /* Delta relocations. */ |
Definition at line 1867 of file glibc_elf.h.
#define DT_MIPS_DELTA_RELOC_NO |
Definition at line 1868 of file glibc_elf.h.
#define DT_MIPS_DELTA_SYM |
Definition at line 1869 of file glibc_elf.h.
#define DT_MIPS_DELTA_SYM_NO |
Definition at line 1870 of file glibc_elf.h.
#define DT_MIPS_DYNSTR_ALIGN 0x7000002b |
Definition at line 1882 of file glibc_elf.h.
#define DT_MIPS_FLAGS 0x70000005 /* Flags */ |
Definition at line 1850 of file glibc_elf.h.
Definition at line 1860 of file glibc_elf.h.
#define DT_MIPS_GP_VALUE 0x70000030 /* GP value for aux GOTs. */ |
Definition at line 1887 of file glibc_elf.h.
#define DT_MIPS_HIDDEN_GOTIDX 0x70000027 |
Definition at line 1878 of file glibc_elf.h.
#define DT_MIPS_HIPAGENO 0x70000014 /* Number of GOT page table entries */ |
Definition at line 1861 of file glibc_elf.h.
#define DT_MIPS_ICHECKSUM 0x70000003 /* Checksum */ |
Definition at line 1848 of file glibc_elf.h.
#define DT_MIPS_INTERFACE 0x7000002a /* Address of .interface. */ |
Definition at line 1881 of file glibc_elf.h.
#define DT_MIPS_INTERFACE_SIZE 0x7000002c /* Size of the .interface section. */ |
Definition at line 1883 of file glibc_elf.h.
#define DT_MIPS_IVERSION 0x70000004 /* Version string (string tbl index) */ |
Definition at line 1849 of file glibc_elf.h.
#define DT_MIPS_LIBLIST 0x70000009 /* Address of LIBLIST section */ |
Definition at line 1854 of file glibc_elf.h.
#define DT_MIPS_LIBLISTNO 0x70000010 /* Number of LIBLIST entries */ |
Definition at line 1857 of file glibc_elf.h.
#define DT_MIPS_LOCAL_GOTIDX 0x70000026 |
Definition at line 1877 of file glibc_elf.h.
Definition at line 1855 of file glibc_elf.h.
#define DT_MIPS_LOCALPAGE_GOTIDX 0x70000025 |
Definition at line 1876 of file glibc_elf.h.
#define DT_MIPS_MSYM 0x70000007 |
Definition at line 1852 of file glibc_elf.h.
#define DT_MIPS_NUM 0x37 |
Definition at line 1901 of file glibc_elf.h.
#define DT_MIPS_OPTIONS 0x70000029 /* Address of .options. */ |
Definition at line 1880 of file glibc_elf.h.
#define DT_MIPS_PERF_SUFFIX |
Definition at line 1885 of file glibc_elf.h.
#define DT_MIPS_PIXIE_INIT 0x70000023 |
Definition at line 1874 of file glibc_elf.h.
#define DT_MIPS_PLTGOT 0x70000032 |
Definition at line 1890 of file glibc_elf.h.
#define DT_MIPS_PROTECTED_GOTIDX 0x70000028 |
Definition at line 1879 of file glibc_elf.h.
Definition at line 1862 of file glibc_elf.h.
#define DT_MIPS_RLD_MAP_REL 0x70000035 |
Definition at line 1898 of file glibc_elf.h.
#define DT_MIPS_RLD_TEXT_RESOLVE_ADDR |
Definition at line 1884 of file glibc_elf.h.
#define DT_MIPS_RLD_VERSION 0x70000001 /* Runtime linker interface version */ |
Definition at line 1846 of file glibc_elf.h.
#define DT_MIPS_RWPLT 0x70000034 |
Definition at line 1894 of file glibc_elf.h.
#define DT_MIPS_SYMBOL_LIB 0x70000024 |
Definition at line 1875 of file glibc_elf.h.
#define DT_MIPS_SYMTABNO 0x70000011 /* Number of DYNSYM entries */ |
Definition at line 1858 of file glibc_elf.h.
#define DT_MIPS_TIME_STAMP 0x70000002 /* Timestamp */ |
Definition at line 1847 of file glibc_elf.h.
#define DT_MIPS_UNREFEXTNO 0x70000012 /* First external DYNSYM */ |
Definition at line 1859 of file glibc_elf.h.
#define DT_MIPS_XHASH 0x70000036 |
Definition at line 1900 of file glibc_elf.h.
#define DT_MOVEENT 0x6ffffdfa |
Definition at line 879 of file glibc_elf.h.
#define DT_MOVESZ 0x6ffffdfb |
Definition at line 880 of file glibc_elf.h.
#define DT_MOVETAB 0x6ffffefe /* Move table. */ |
Definition at line 904 of file glibc_elf.h.
#define DT_NEEDED 1 /* Name of needed library */ |
Definition at line 829 of file glibc_elf.h.
#define DT_NIOS2_GP 0x70000002 /* Address of _gp. */ |
Definition at line 3449 of file glibc_elf.h.
Definition at line 828 of file glibc_elf.h.
#define DT_NUM 35 /* Number used */ |
Definition at line 863 of file glibc_elf.h.
#define DT_PLTGOT 3 /* Processor defined value */ |
Definition at line 831 of file glibc_elf.h.
#define DT_PLTPAD 0x6ffffefd /* PLT padding. */ |
Definition at line 903 of file glibc_elf.h.
#define DT_PLTPADSZ 0x6ffffdf9 |
Definition at line 878 of file glibc_elf.h.
Definition at line 848 of file glibc_elf.h.
Definition at line 830 of file glibc_elf.h.
#define DT_POSFLAG_1 |
Definition at line 882 of file glibc_elf.h.
#define DT_PPC64_GLINK (DT_LOPROC + 0) |
Definition at line 2576 of file glibc_elf.h.
#define DT_PPC64_NUM 4 |
Definition at line 2580 of file glibc_elf.h.
#define DT_PPC64_OPD (DT_LOPROC + 1) |
Definition at line 2577 of file glibc_elf.h.
#define DT_PPC64_OPDSZ (DT_LOPROC + 2) |
Definition at line 2578 of file glibc_elf.h.
#define DT_PPC64_OPT (DT_LOPROC + 3) |
Definition at line 2579 of file glibc_elf.h.
#define DT_PPC_GOT (DT_LOPROC + 0) |
Definition at line 2431 of file glibc_elf.h.
#define DT_PPC_NUM 2 |
Definition at line 2433 of file glibc_elf.h.
#define DT_PPC_OPT (DT_LOPROC + 1) |
Definition at line 2432 of file glibc_elf.h.
#define DT_PREINIT_ARRAY 32 /* Array with addresses of preinit fct*/ |
Definition at line 860 of file glibc_elf.h.
#define DT_PREINIT_ARRAYSZ 33 /* size in bytes of DT_PREINIT_ARRAY */ |
Definition at line 861 of file glibc_elf.h.
#define DT_PROCNUM DT_MIPS_NUM /* Most used by any processor */ |
Definition at line 868 of file glibc_elf.h.
#define DT_REL 17 /* Address of Rel relocs */ |
Definition at line 845 of file glibc_elf.h.
#define DT_RELA 7 /* Address of Rela relocs */ |
Definition at line 835 of file glibc_elf.h.
#define DT_RELACOUNT 0x6ffffff9 |
Definition at line 914 of file glibc_elf.h.
#define DT_RELAENT 9 /* Size of one Rela reloc */ |
Definition at line 837 of file glibc_elf.h.
Definition at line 836 of file glibc_elf.h.
#define DT_RELCOUNT 0x6ffffffa |
Definition at line 915 of file glibc_elf.h.
#define DT_RELENT 19 /* Size of one Rel reloc */ |
Definition at line 847 of file glibc_elf.h.
Definition at line 846 of file glibc_elf.h.
Definition at line 843 of file glibc_elf.h.
Definition at line 857 of file glibc_elf.h.
#define DT_SONAME 14 /* Name of shared object */ |
Definition at line 842 of file glibc_elf.h.
#define DT_SPARC_NUM 2 |
Definition at line 1574 of file glibc_elf.h.
#define DT_SPARC_REGISTER 0x70000001 |
Definition at line 1573 of file glibc_elf.h.
#define DT_STRSZ 10 /* Size of string table */ |
Definition at line 838 of file glibc_elf.h.
#define DT_STRTAB 5 /* Address of string table */ |
Definition at line 833 of file glibc_elf.h.
#define DT_SYMBOLIC 16 /* Start symbol search here */ |
Definition at line 844 of file glibc_elf.h.
#define DT_SYMENT 11 /* Size of one symbol table entry */ |
Definition at line 839 of file glibc_elf.h.
#define DT_SYMINENT 0x6ffffdff /* Entry size of syminfo */ |
Definition at line 884 of file glibc_elf.h.
#define DT_SYMINFO 0x6ffffeff /* Syminfo table. */ |
Definition at line 905 of file glibc_elf.h.
Definition at line 883 of file glibc_elf.h.
#define DT_SYMTAB 6 /* Address of symbol table */ |
Definition at line 834 of file glibc_elf.h.
#define DT_SYMTAB_SHNDX 34 /* Address of SYMTAB_SHNDX section */ |
Definition at line 862 of file glibc_elf.h.
#define DT_TEXTREL 22 /* Reloc might modify .text */ |
Definition at line 850 of file glibc_elf.h.
#define DT_TLSDESC_GOT 0x6ffffef7 |
Definition at line 897 of file glibc_elf.h.
#define DT_TLSDESC_PLT 0x6ffffef6 |
Definition at line 896 of file glibc_elf.h.
#define DT_VALNUM 12 |
Definition at line 887 of file glibc_elf.h.
#define DT_VALRNGHI 0x6ffffdff |
Definition at line 885 of file glibc_elf.h.
#define DT_VALRNGLO 0x6ffffd00 |
Definition at line 873 of file glibc_elf.h.
#define DT_VALTAGIDX | ( | tag | ) | (DT_VALRNGHI - (tag)) /* Reverse order! */ |
Definition at line 886 of file glibc_elf.h.
#define DT_VERDEF |
Definition at line 919 of file glibc_elf.h.
#define DT_VERDEFNUM 0x6ffffffd /* Number of version definitions */ |
Definition at line 920 of file glibc_elf.h.
#define DT_VERNEED |
Definition at line 921 of file glibc_elf.h.
#define DT_VERNEEDNUM 0x6fffffff /* Number of needed versions */ |
Definition at line 922 of file glibc_elf.h.
#define DT_VERSIONTAGIDX | ( | tag | ) | (DT_VERNEEDNUM - (tag)) /* Reverse order! */ |
Definition at line 923 of file glibc_elf.h.
#define DT_VERSIONTAGNUM 16 |
Definition at line 924 of file glibc_elf.h.
#define DT_VERSYM 0x6ffffff0 |
Definition at line 912 of file glibc_elf.h.
#define DTF_1_CONFEXP 0x00000002 |
Definition at line 976 of file glibc_elf.h.
#define DTF_1_PARINIT 0x00000001 |
Definition at line 975 of file glibc_elf.h.
#define E_MIPS_ARCH_1 EF_MIPS_ARCH_1 |
Definition at line 1605 of file glibc_elf.h.
#define E_MIPS_ARCH_2 EF_MIPS_ARCH_2 |
Definition at line 1606 of file glibc_elf.h.
#define E_MIPS_ARCH_3 EF_MIPS_ARCH_3 |
Definition at line 1607 of file glibc_elf.h.
#define E_MIPS_ARCH_32 EF_MIPS_ARCH_32 |
Definition at line 1610 of file glibc_elf.h.
#define E_MIPS_ARCH_4 EF_MIPS_ARCH_4 |
Definition at line 1608 of file glibc_elf.h.
#define E_MIPS_ARCH_5 EF_MIPS_ARCH_5 |
Definition at line 1609 of file glibc_elf.h.
#define E_MIPS_ARCH_64 EF_MIPS_ARCH_64 |
Definition at line 1611 of file glibc_elf.h.
#define EF_ALPHA_32BIT 1 /* All addresses must be < 2GB. */ |
Definition at line 2243 of file glibc_elf.h.
#define EF_ALPHA_CANRELAX 2 /* Relocations for relaxing exist. */ |
Definition at line 2244 of file glibc_elf.h.
#define EF_ARM_ABI_FLOAT_HARD 0x400 /* NB conflicts with EF_ARM_VFP_FLOAT */ |
Definition at line 2610 of file glibc_elf.h.
#define EF_ARM_ABI_FLOAT_SOFT 0x200 /* NB conflicts with EF_ARM_SOFT_FLOAT */ |
Definition at line 2609 of file glibc_elf.h.
Definition at line 2602 of file glibc_elf.h.
#define EF_ARM_APCS_26 0x08 |
Definition at line 2599 of file glibc_elf.h.
#define EF_ARM_APCS_FLOAT 0x10 |
Definition at line 2600 of file glibc_elf.h.
#define EF_ARM_BE8 0x00800000 |
Definition at line 2620 of file glibc_elf.h.
#define EF_ARM_DYNSYMSUSESEGIDX 0x08 |
Definition at line 2615 of file glibc_elf.h.
#define EF_ARM_EABI_UNKNOWN 0x00000000 |
Definition at line 2624 of file glibc_elf.h.
#define EF_ARM_EABI_VER1 0x01000000 |
Definition at line 2625 of file glibc_elf.h.
#define EF_ARM_EABI_VER2 0x02000000 |
Definition at line 2626 of file glibc_elf.h.
#define EF_ARM_EABI_VER3 0x03000000 |
Definition at line 2627 of file glibc_elf.h.
#define EF_ARM_EABI_VER4 0x04000000 |
Definition at line 2628 of file glibc_elf.h.
#define EF_ARM_EABI_VER5 0x05000000 |
Definition at line 2629 of file glibc_elf.h.
#define EF_ARM_EABI_VERSION | ( | flags | ) | ((flags)&EF_ARM_EABIMASK) |
Definition at line 2623 of file glibc_elf.h.
#define EF_ARM_EABIMASK 0XFF000000 |
Definition at line 2617 of file glibc_elf.h.
#define EF_ARM_HASENTRY 0x02 |
Definition at line 2597 of file glibc_elf.h.
#define EF_ARM_INTERWORK 0x04 |
Definition at line 2598 of file glibc_elf.h.
#define EF_ARM_LE8 0x00400000 |
Definition at line 2621 of file glibc_elf.h.
#define EF_ARM_MAPSYMSFIRST 0x10 |
Definition at line 2616 of file glibc_elf.h.
#define EF_ARM_MAVERICK_FLOAT 0x800 |
Definition at line 2607 of file glibc_elf.h.
#define EF_ARM_NEW_ABI 0x80 |
Definition at line 2603 of file glibc_elf.h.
#define EF_ARM_OLD_ABI 0x100 |
Definition at line 2604 of file glibc_elf.h.
#define EF_ARM_PIC 0x20 |
Definition at line 2601 of file glibc_elf.h.
#define EF_ARM_RELEXEC 0x01 |
Definition at line 2596 of file glibc_elf.h.
#define EF_ARM_SOFT_FLOAT 0x200 |
Definition at line 2605 of file glibc_elf.h.
#define EF_ARM_SYMSARESORTED 0x04 |
Definition at line 2614 of file glibc_elf.h.
#define EF_ARM_VFP_FLOAT 0x400 |
Definition at line 2606 of file glibc_elf.h.
#define EF_CPU32 0x00810000 |
Definition at line 1353 of file glibc_elf.h.
#define EF_CSKY_ABIMASK 0XF0000000 |
Definition at line 2995 of file glibc_elf.h.
#define EF_CSKY_ABIV1 0X10000000 |
Definition at line 2999 of file glibc_elf.h.
#define EF_CSKY_ABIV2 0X20000000 |
Definition at line 3000 of file glibc_elf.h.
#define EF_CSKY_OTHER 0X0FFF0000 |
Definition at line 2996 of file glibc_elf.h.
#define EF_CSKY_PROCESSOR 0X0000FFFF |
Definition at line 2997 of file glibc_elf.h.
Definition at line 3958 of file glibc_elf.h.
#define EF_HEXAGON_ISA_V2 0x10 |
Definition at line 3959 of file glibc_elf.h.
#define EF_HEXAGON_ISA_V3 0x20 |
Definition at line 3960 of file glibc_elf.h.
#define EF_HEXAGON_ISA_V4 0x30 |
Definition at line 3961 of file glibc_elf.h.
#define EF_HEXAGON_ISA_V5 0x40 |
Definition at line 3962 of file glibc_elf.h.
#define EF_HEXAGON_ISA_V55 0x50 |
Definition at line 3963 of file glibc_elf.h.
#define EF_HEXAGON_ISA_V60 0x60 |
Definition at line 3964 of file glibc_elf.h.
#define EF_HEXAGON_ISA_V62 0x62 |
Definition at line 3965 of file glibc_elf.h.
#define EF_HEXAGON_ISA_V65 0x65 |
Definition at line 3966 of file glibc_elf.h.
#define EF_HEXAGON_ISA_V66 0x66 |
Definition at line 3967 of file glibc_elf.h.
#define EF_HEXAGON_ISA_V67 0x67 |
Definition at line 3968 of file glibc_elf.h.
#define EF_HEXAGON_ISA_V68 0x68 |
Definition at line 3969 of file glibc_elf.h.
#define EF_HEXAGON_MACH_V2 0x1 |
Definition at line 3943 of file glibc_elf.h.
#define EF_HEXAGON_MACH_V3 0x2 |
Definition at line 3944 of file glibc_elf.h.
#define EF_HEXAGON_MACH_V4 0x3 |
Definition at line 3945 of file glibc_elf.h.
#define EF_HEXAGON_MACH_V5 0x4 |
Definition at line 3946 of file glibc_elf.h.
#define EF_HEXAGON_MACH_V55 0x5 |
Definition at line 3947 of file glibc_elf.h.
#define EF_HEXAGON_MACH_V60 0x60 |
Definition at line 3948 of file glibc_elf.h.
#define EF_HEXAGON_MACH_V61 0x61 |
Definition at line 3949 of file glibc_elf.h.
#define EF_HEXAGON_MACH_V62 0x62 |
Definition at line 3950 of file glibc_elf.h.
#define EF_HEXAGON_MACH_V65 0x65 |
Definition at line 3951 of file glibc_elf.h.
#define EF_HEXAGON_MACH_V66 0x66 |
Definition at line 3952 of file glibc_elf.h.
#define EF_HEXAGON_MACH_V67 0x67 |
Definition at line 3953 of file glibc_elf.h.
#define EF_HEXAGON_MACH_V67T 0x8067 /* Hexagon V67 Small Core (V67t) */ |
Definition at line 3954 of file glibc_elf.h.
#define EF_HEXAGON_MACH_V68 = 0x68 |
Definition at line 3955 of file glibc_elf.h.
#define EF_IA_64_ABI64 0x00000010 /* 64-bit ABI */ |
Definition at line 3009 of file glibc_elf.h.
Definition at line 3010 of file glibc_elf.h.
#define EF_IA_64_MASKOS 0x0000000f /* os-specific flags */ |
Definition at line 3008 of file glibc_elf.h.
#define EF_MIPS_64BIT_WHIRL 16 |
Definition at line 1584 of file glibc_elf.h.
#define EF_MIPS_ABI2 32 |
Definition at line 1585 of file glibc_elf.h.
#define EF_MIPS_ABI_ON32 64 |
Definition at line 1586 of file glibc_elf.h.
#define EF_MIPS_ARCH 0xf0000000 /* MIPS architecture level. */ |
Definition at line 1589 of file glibc_elf.h.
#define EF_MIPS_ARCH_1 0x00000000 /* -mips1 code. */ |
Definition at line 1593 of file glibc_elf.h.
#define EF_MIPS_ARCH_2 0x10000000 /* -mips2 code. */ |
Definition at line 1594 of file glibc_elf.h.
#define EF_MIPS_ARCH_3 0x20000000 /* -mips3 code. */ |
Definition at line 1595 of file glibc_elf.h.
#define EF_MIPS_ARCH_32 0x50000000 /* MIPS32 code. */ |
Definition at line 1598 of file glibc_elf.h.
#define EF_MIPS_ARCH_32R2 0x70000000 /* MIPS32r2 code. */ |
Definition at line 1600 of file glibc_elf.h.
#define EF_MIPS_ARCH_4 0x30000000 /* -mips4 code. */ |
Definition at line 1596 of file glibc_elf.h.
#define EF_MIPS_ARCH_5 0x40000000 /* -mips5 code. */ |
Definition at line 1597 of file glibc_elf.h.
#define EF_MIPS_ARCH_64 0x60000000 /* MIPS64 code. */ |
Definition at line 1599 of file glibc_elf.h.
#define EF_MIPS_ARCH_64R2 0x80000000 /* MIPS64r2 code. */ |
Definition at line 1601 of file glibc_elf.h.
#define EF_MIPS_CPIC 4 /* Uses PIC calling sequence. */ |
Definition at line 1582 of file glibc_elf.h.
#define EF_MIPS_FP64 512 /* Uses FP64 (12 callee-saved). */ |
Definition at line 1587 of file glibc_elf.h.
#define EF_MIPS_NAN2008 1024 /* Uses IEEE 754-2008 NaN encoding. */ |
Definition at line 1588 of file glibc_elf.h.
Definition at line 1580 of file glibc_elf.h.
#define EF_MIPS_PIC 2 /* Contains PIC code. */ |
Definition at line 1581 of file glibc_elf.h.
#define EF_MIPS_XGOT 8 |
Definition at line 1583 of file glibc_elf.h.
#define EF_PARISC_ARCH 0x0000ffff /* Architecture version. */ |
Definition at line 2061 of file glibc_elf.h.
#define EF_PARISC_EXT 0x00020000 /* Program uses arch. extensions. */ |
Definition at line 2056 of file glibc_elf.h.
#define EF_PARISC_LAZYSWAP 0x00400000 /* Allow lazy swapping. */ |
Definition at line 2060 of file glibc_elf.h.
#define EF_PARISC_LSB 0x00040000 /* Program expects little endian. */ |
Definition at line 2057 of file glibc_elf.h.
#define EF_PARISC_NO_KABP |
Definition at line 2059 of file glibc_elf.h.
#define EF_PARISC_TRAPNIL 0x00010000 /* Trap nil pointer dereference. */ |
Definition at line 2055 of file glibc_elf.h.
#define EF_PARISC_WIDE 0x00080000 /* Program expects wide mode. */ |
Definition at line 2058 of file glibc_elf.h.
#define EF_PPC64_ABI 3 |
Definition at line 2573 of file glibc_elf.h.
#define EF_PPC_EMB 0x80000000 /* PowerPC embedded flag */ |
Definition at line 2313 of file glibc_elf.h.
#define EF_PPC_RELOCATABLE 0x00010000 /* PowerPC -mrelocatable flag*/ |
Definition at line 2316 of file glibc_elf.h.
#define EF_PPC_RELOCATABLE_LIB |
Definition at line 2317 of file glibc_elf.h.
#define EF_RISCV_FLOAT_ABI 0x0006 |
Definition at line 3725 of file glibc_elf.h.
#define EF_RISCV_FLOAT_ABI_DOUBLE 0x0004 |
Definition at line 3728 of file glibc_elf.h.
#define EF_RISCV_FLOAT_ABI_QUAD 0x0006 |
Definition at line 3729 of file glibc_elf.h.
#define EF_RISCV_FLOAT_ABI_SINGLE 0x0002 |
Definition at line 3727 of file glibc_elf.h.
#define EF_RISCV_FLOAT_ABI_SOFT 0x0000 |
Definition at line 3726 of file glibc_elf.h.
#define EF_RISCV_RVC 0x0001 |
Definition at line 3724 of file glibc_elf.h.
#define EF_S390_HIGH_GPRS 0x00000001 /* High GPRs kernel facility needed. */ |
Definition at line 3188 of file glibc_elf.h.
#define EF_SH1 0x1 |
Definition at line 3122 of file glibc_elf.h.
#define EF_SH2 0x2 |
Definition at line 3123 of file glibc_elf.h.
#define EF_SH2A 0xd |
Definition at line 3132 of file glibc_elf.h.
#define EF_SH2A_NOFPU 0x13 |
Definition at line 3136 of file glibc_elf.h.
#define EF_SH2A_SH3_NOFPU 0x16 |
Definition at line 3139 of file glibc_elf.h.
#define EF_SH2A_SH3E 0x18 |
Definition at line 3141 of file glibc_elf.h.
#define EF_SH2A_SH4 0x17 |
Definition at line 3140 of file glibc_elf.h.
#define EF_SH2A_SH4_NOFPU 0x15 |
Definition at line 3138 of file glibc_elf.h.
#define EF_SH2E 0xb |
Definition at line 3130 of file glibc_elf.h.
#define EF_SH3 0x3 |
Definition at line 3124 of file glibc_elf.h.
#define EF_SH3_DSP 0x5 |
Definition at line 3126 of file glibc_elf.h.
#define EF_SH3_NOMMU 0x14 |
Definition at line 3137 of file glibc_elf.h.
#define EF_SH3E 0x8 |
Definition at line 3128 of file glibc_elf.h.
#define EF_SH4 0x9 |
Definition at line 3129 of file glibc_elf.h.
#define EF_SH4_NOFPU 0x10 |
Definition at line 3133 of file glibc_elf.h.
#define EF_SH4_NOMMU_NOFPU 0x12 |
Definition at line 3135 of file glibc_elf.h.
#define EF_SH4A 0xc |
Definition at line 3131 of file glibc_elf.h.
#define EF_SH4A_NOFPU 0x11 |
Definition at line 3134 of file glibc_elf.h.
#define EF_SH4AL_DSP 0x6 |
Definition at line 3127 of file glibc_elf.h.
#define EF_SH_DSP 0x4 |
Definition at line 3125 of file glibc_elf.h.
#define EF_SH_MACH_MASK 0x1f |
Definition at line 3120 of file glibc_elf.h.
#define EF_SH_UNKNOWN 0x0 |
Definition at line 3121 of file glibc_elf.h.
#define EF_SPARC_32PLUS 0x000100 /* generic V8+ features */ |
Definition at line 1464 of file glibc_elf.h.
#define EF_SPARC_EXT_MASK 0xFFFF00 |
Definition at line 1463 of file glibc_elf.h.
#define EF_SPARC_HAL_R1 0x000400 /* HAL R1 extensions */ |
Definition at line 1466 of file glibc_elf.h.
#define EF_SPARC_LEDATA 0x800000 /* little endian data */ |
Definition at line 1462 of file glibc_elf.h.
#define EF_SPARC_SUN_US1 0x000200 /* Sun UltraSPARC1 extensions */ |
Definition at line 1465 of file glibc_elf.h.
#define EF_SPARC_SUN_US3 0x000800 /* Sun UltraSPARCIII extensions */ |
Definition at line 1467 of file glibc_elf.h.
#define EF_SPARCV9_MM 3 |
Definition at line 1458 of file glibc_elf.h.
#define EF_SPARCV9_PSO 1 |
Definition at line 1460 of file glibc_elf.h.
#define EF_SPARCV9_RMO 2 |
Definition at line 1461 of file glibc_elf.h.
#define EF_SPARCV9_TSO 0 |
Definition at line 1459 of file glibc_elf.h.
#define EFA_PARISC_1_0 0x020b /* PA-RISC 1.0 big-endian. */ |
Definition at line 2065 of file glibc_elf.h.
#define EFA_PARISC_1_1 0x0210 /* PA-RISC 1.1 big-endian. */ |
Definition at line 2066 of file glibc_elf.h.
#define EFA_PARISC_2_0 0x0214 /* PA-RISC 2.0 big-endian. */ |
Definition at line 2067 of file glibc_elf.h.
#define EI_ABIVERSION 8 /* ABI version */ |
Definition at line 157 of file glibc_elf.h.
#define EI_CLASS 4 /* File class byte index */ |
Definition at line 124 of file glibc_elf.h.
#define EI_DATA 5 /* Data encoding byte index */ |
Definition at line 130 of file glibc_elf.h.
#define EI_MAG0 0 /* File identification byte 0 index */ |
Definition at line 108 of file glibc_elf.h.
#define EI_MAG1 1 /* File identification byte 1 index */ |
Definition at line 111 of file glibc_elf.h.
#define EI_MAG2 2 /* File identification byte 2 index */ |
Definition at line 114 of file glibc_elf.h.
#define EI_MAG3 3 /* File identification byte 3 index */ |
Definition at line 117 of file glibc_elf.h.
#define EI_NIDENT (16) |
Definition at line 66 of file glibc_elf.h.
#define EI_OSABI 7 /* OS ABI identification */ |
Definition at line 139 of file glibc_elf.h.
Definition at line 159 of file glibc_elf.h.
#define EI_VERSION 6 /* File version byte index */ |
Definition at line 136 of file glibc_elf.h.
Definition at line 1344 of file glibc_elf.h.
Definition at line 1343 of file glibc_elf.h.
Definition at line 1342 of file glibc_elf.h.
Definition at line 662 of file glibc_elf.h.
Definition at line 660 of file glibc_elf.h.
Definition at line 661 of file glibc_elf.h.
Definition at line 567 of file glibc_elf.h.
Definition at line 569 of file glibc_elf.h.
Definition at line 568 of file glibc_elf.h.
#define ELF32_ST_VISIBILITY | ( | o | ) | ((o)&0x03) |
Definition at line 612 of file glibc_elf.h.
#define ELF64_M_INFO | ( | sym, | |
size | |||
) | ELF32_M_INFO(sym, size) |
Definition at line 1348 of file glibc_elf.h.
#define ELF64_M_SIZE | ( | info | ) | ELF32_M_SIZE(info) |
Definition at line 1347 of file glibc_elf.h.
#define ELF64_M_SYM | ( | info | ) | ELF32_M_SYM(info) |
Definition at line 1346 of file glibc_elf.h.
#define ELF64_R_INFO | ( | sym, | |
type | |||
) | ((((Elf64_Xword)(sym)) << 32) + (type)) |
Definition at line 666 of file glibc_elf.h.
Definition at line 664 of file glibc_elf.h.
Definition at line 665 of file glibc_elf.h.
#define ELF64_ST_BIND | ( | val | ) | ELF32_ST_BIND(val) |
Definition at line 572 of file glibc_elf.h.
#define ELF64_ST_INFO | ( | bind, | |
type | |||
) | ELF32_ST_INFO((bind), (type)) |
Definition at line 574 of file glibc_elf.h.
#define ELF64_ST_TYPE | ( | val | ) | ELF32_ST_TYPE(val) |
Definition at line 573 of file glibc_elf.h.
#define ELF64_ST_VISIBILITY | ( | o | ) | ELF32_ST_VISIBILITY(o) |
Definition at line 615 of file glibc_elf.h.
#define ELF_NOTE_ABI NT_GNU_ABI_TAG /* Old name. */ |
Definition at line 1235 of file glibc_elf.h.
#define ELF_NOTE_GNU "GNU" |
Definition at line 1219 of file glibc_elf.h.
#define ELF_NOTE_OS_FREEBSD 3 |
Definition at line 1242 of file glibc_elf.h.
#define ELF_NOTE_OS_GNU 1 |
Definition at line 1240 of file glibc_elf.h.
#define ELF_NOTE_OS_LINUX 0 |
Definition at line 1239 of file glibc_elf.h.
#define ELF_NOTE_OS_SOLARIS2 2 |
Definition at line 1241 of file glibc_elf.h.
#define ELF_NOTE_PAGESIZE_HINT 1 |
Definition at line 1224 of file glibc_elf.h.
#define ELF_NOTE_SOLARIS "SUNW Solaris" |
Definition at line 1216 of file glibc_elf.h.
#define ELFCLASS32 1 /* 32-bit objects */ |
Definition at line 126 of file glibc_elf.h.
#define ELFCLASS64 2 /* 64-bit objects */ |
Definition at line 127 of file glibc_elf.h.
#define ELFCLASSNONE 0 /* Invalid class */ |
Definition at line 125 of file glibc_elf.h.
#define ELFCLASSNUM 3 |
Definition at line 128 of file glibc_elf.h.
#define ELFCOMPRESS_HIOS 0x6fffffff /* End of OS-specific. */ |
Definition at line 506 of file glibc_elf.h.
#define ELFCOMPRESS_HIPROC 0x7fffffff /* End of processor-specific. */ |
Definition at line 508 of file glibc_elf.h.
#define ELFCOMPRESS_LOOS 0x60000000 /* Start of OS-specific. */ |
Definition at line 505 of file glibc_elf.h.
#define ELFCOMPRESS_LOPROC 0x70000000 /* Start of processor-specific. */ |
Definition at line 507 of file glibc_elf.h.
#define ELFCOMPRESS_ZLIB 1 /* ZLIB/DEFLATE algorithm. */ |
Definition at line 504 of file glibc_elf.h.
#define ELFDATA2LSB 1 /* 2's complement, little endian */ |
Definition at line 132 of file glibc_elf.h.
#define ELFDATA2MSB 2 /* 2's complement, big endian */ |
Definition at line 133 of file glibc_elf.h.
#define ELFDATANONE 0 /* Invalid data encoding */ |
Definition at line 131 of file glibc_elf.h.
#define ELFDATANUM 3 |
Definition at line 134 of file glibc_elf.h.
#define ELFMAG "\177ELF" |
Definition at line 121 of file glibc_elf.h.
#define ELFMAG0 0x7f /* Magic number byte 0 */ |
Definition at line 109 of file glibc_elf.h.
#define ELFMAG1 'E' /* Magic number byte 1 */ |
Definition at line 112 of file glibc_elf.h.
#define ELFMAG2 'L' /* Magic number byte 2 */ |
Definition at line 115 of file glibc_elf.h.
#define ELFMAG3 'F' /* Magic number byte 3 */ |
Definition at line 118 of file glibc_elf.h.
#define ELFOSABI_AIX 7 /* IBM AIX. */ |
Definition at line 147 of file glibc_elf.h.
#define ELFOSABI_ARM 97 /* ARM */ |
Definition at line 154 of file glibc_elf.h.
#define ELFOSABI_ARM_AEABI 64 /* ARM EABI */ |
Definition at line 153 of file glibc_elf.h.
#define ELFOSABI_FREEBSD 9 /* FreeBSD. */ |
Definition at line 149 of file glibc_elf.h.
#define ELFOSABI_GNU 3 /* Object uses GNU ELF extensions. */ |
Definition at line 144 of file glibc_elf.h.
#define ELFOSABI_HPUX 1 /* HP-UX */ |
Definition at line 142 of file glibc_elf.h.
#define ELFOSABI_IRIX 8 /* SGI Irix. */ |
Definition at line 148 of file glibc_elf.h.
#define ELFOSABI_LINUX ELFOSABI_GNU /* Compatibility alias. */ |
Definition at line 145 of file glibc_elf.h.
#define ELFOSABI_MODESTO 11 /* Novell Modesto. */ |
Definition at line 151 of file glibc_elf.h.
#define ELFOSABI_NETBSD 2 /* NetBSD. */ |
Definition at line 143 of file glibc_elf.h.
#define ELFOSABI_NONE 0 /* UNIX System V ABI */ |
Definition at line 140 of file glibc_elf.h.
#define ELFOSABI_OPENBSD 12 /* OpenBSD. */ |
Definition at line 152 of file glibc_elf.h.
#define ELFOSABI_SOLARIS 6 /* Sun Solaris. */ |
Definition at line 146 of file glibc_elf.h.
#define ELFOSABI_STANDALONE 255 /* Standalone (embedded) application */ |
Definition at line 155 of file glibc_elf.h.
#define ELFOSABI_SYSV 0 /* Alias. */ |
Definition at line 141 of file glibc_elf.h.
#define ELFOSABI_TRU64 10 /* Compaq TRU64 UNIX. */ |
Definition at line 150 of file glibc_elf.h.
#define EM_386 3 /* Intel 80386 */ |
Definition at line 179 of file glibc_elf.h.
#define EM_56800EX 200 /* Freescale 56800EX DSC */ |
Definition at line 339 of file glibc_elf.h.
#define EM_68HC05 72 /* Motorola MC68HC05 microcontroller */ |
Definition at line 234 of file glibc_elf.h.
#define EM_68HC08 71 /* Motorola MC68HC08 microcontroller */ |
Definition at line 233 of file glibc_elf.h.
#define EM_68HC11 70 /* Motorola MC68HC11 microcontroller */ |
Definition at line 232 of file glibc_elf.h.
#define EM_68HC12 53 /* Motorola M68HC12 */ |
Definition at line 215 of file glibc_elf.h.
#define EM_68HC16 69 /* Motorola MC68HC16 microcontroller */ |
Definition at line 231 of file glibc_elf.h.
#define EM_68K 4 /* Motorola m68k family */ |
Definition at line 180 of file glibc_elf.h.
#define EM_78KOR 199 /* Renesas 78KOR */ |
Definition at line 338 of file glibc_elf.h.
#define EM_8051 165 /* Intel 8051 and variants */ |
Definition at line 304 of file glibc_elf.h.
#define EM_860 7 /* Intel 80860 */ |
Definition at line 183 of file glibc_elf.h.
#define EM_88K 5 /* Motorola m88k family */ |
Definition at line 181 of file glibc_elf.h.
#define EM_960 19 /* Intel 80960 */ |
Definition at line 192 of file glibc_elf.h.
Definition at line 322 of file glibc_elf.h.
#define EM_ALPHA 0x9026 |
Definition at line 376 of file glibc_elf.h.
#define EM_ALTERA_NIOS2 113 /* Altera Nios II */ |
Definition at line 275 of file glibc_elf.h.
#define EM_AMDGPU 224 /* AMD GPU */ |
Definition at line 359 of file glibc_elf.h.
#define EM_ARC 45 /* Argonaut RISC Core */ |
Definition at line 207 of file glibc_elf.h.
#define EM_ARC_A5 EM_ARC_COMPACT |
Definition at line 370 of file glibc_elf.h.
#define EM_ARC_COMPACT 93 /* ARC International ARCompact */ |
Definition at line 255 of file glibc_elf.h.
#define EM_ARCA 109 /* Arca RISC */ |
Definition at line 271 of file glibc_elf.h.
#define EM_ARCV2 195 /* Synopsys ARCv2 ISA. */ |
Definition at line 334 of file glibc_elf.h.
#define EM_ARM 40 /* ARM */ |
Definition at line 202 of file glibc_elf.h.
#define EM_AVR 83 /* Atmel AVR 8-bit microcontroller */ |
Definition at line 245 of file glibc_elf.h.
#define EM_AVR32 185 /* Amtel 32-bit microprocessor */ |
Definition at line 324 of file glibc_elf.h.
#define EM_BA1 201 /* Beyond BA1 */ |
Definition at line 340 of file glibc_elf.h.
#define EM_BA2 202 /* Beyond BA2 */ |
Definition at line 341 of file glibc_elf.h.
#define EM_BLACKFIN 106 /* Analog Devices Blackfin DSP */ |
Definition at line 268 of file glibc_elf.h.
#define EM_BPF 247 /* Linux BPF -- in-kernel virtual machine */ |
Definition at line 363 of file glibc_elf.h.
#define EM_C166 116 /* Infineon C16x/XC16x */ |
Definition at line 278 of file glibc_elf.h.
#define EM_CDP 215 /* Paneve CDP */ |
Definition at line 350 of file glibc_elf.h.
#define EM_CE 119 /* Freescale Communication Engine RISC */ |
Definition at line 281 of file glibc_elf.h.
#define EM_CLOUDSHIELD 192 /* CloudShield */ |
Definition at line 331 of file glibc_elf.h.
#define EM_COGE 216 /* Cognitive Smart Memory Processor */ |
Definition at line 351 of file glibc_elf.h.
#define EM_COLDFIRE 52 /* Motorola Coldfire */ |
Definition at line 214 of file glibc_elf.h.
#define EM_COOL 217 /* Bluechip CoolEngine */ |
Definition at line 352 of file glibc_elf.h.
#define EM_COREA_1ST 193 /* KIPO-KAIST Core-A 1st gen. */ |
Definition at line 332 of file glibc_elf.h.
#define EM_COREA_2ND 194 /* KIPO-KAIST Core-A 2nd gen. */ |
Definition at line 333 of file glibc_elf.h.
#define EM_CR 103 /* National Semi. CompactRISC */ |
Definition at line 265 of file glibc_elf.h.
#define EM_CR16 177 /* National Semi. CompactRISC CR16 */ |
Definition at line 316 of file glibc_elf.h.
#define EM_CRAYNV2 172 /* Cray NV2 vector architecture */ |
Definition at line 311 of file glibc_elf.h.
Definition at line 238 of file glibc_elf.h.
#define EM_CRX 114 /* National Semi. CompactRISC CRX */ |
Definition at line 276 of file glibc_elf.h.
#define EM_CSKY 252 /* C-SKY */ |
Definition at line 364 of file glibc_elf.h.
#define EM_CSR_KALIMBA 219 /* CSR Kalimba */ |
Definition at line 354 of file glibc_elf.h.
#define EM_CUDA 190 /* NVIDIA CUDA */ |
Definition at line 329 of file glibc_elf.h.
#define EM_CYPRESS_M8C 161 /* Cypress M8C */ |
Definition at line 300 of file glibc_elf.h.
#define EM_D10V 85 /* Mitsubishi D10V */ |
Definition at line 247 of file glibc_elf.h.
#define EM_D30V 86 /* Mitsubishi D30V */ |
Definition at line 248 of file glibc_elf.h.
#define EM_DSP24 136 /* New Japan Radio (NJR) 24-bit DSP */ |
Definition at line 289 of file glibc_elf.h.
#define EM_DSPIC30F 118 /* Microchip Technology dsPIC30F */ |
Definition at line 280 of file glibc_elf.h.
#define EM_DXP 112 /* Icera Semi. Deep Execution Processor */ |
Definition at line 274 of file glibc_elf.h.
#define EM_ECOG16 176 /* Cyan Technology eCOG16 */ |
Definition at line 315 of file glibc_elf.h.
#define EM_ECOG1X 168 /* Cyan Technology eCOG1X */ |
Definition at line 307 of file glibc_elf.h.
#define EM_ECOG2 134 /* Cyan Technology eCOG2 */ |
Definition at line 287 of file glibc_elf.h.
#define EM_EMX16 212 /* KM211 KMX16 */ |
Definition at line 347 of file glibc_elf.h.
#define EM_EMX8 213 /* KM211 KMX8 */ |
Definition at line 348 of file glibc_elf.h.
#define EM_ETPU 178 /* Freescale Extended Time Processing Unit */ |
Definition at line 317 of file glibc_elf.h.
#define EM_EXCESS 111 /* eXcess configurable cpu */ |
Definition at line 273 of file glibc_elf.h.
#define EM_F2MC16 104 /* Fujitsu F2MC16 */ |
Definition at line 266 of file glibc_elf.h.
#define EM_FAKE_ALPHA 41 /* Digital Alpha */ |
Definition at line 203 of file glibc_elf.h.
#define EM_FIREPATH 78 /* Element 14 64-bit DSP Processor */ |
Definition at line 240 of file glibc_elf.h.
#define EM_FR20 37 /* Fujitsu FR20 */ |
Definition at line 199 of file glibc_elf.h.
#define EM_FR30 84 /* Fujitsu FR30 */ |
Definition at line 246 of file glibc_elf.h.
#define EM_FT32 222 /* FTDI Chip FT32 */ |
Definition at line 357 of file glibc_elf.h.
#define EM_FX66 66 /* Siemens FX66 microcontroller */ |
Definition at line 228 of file glibc_elf.h.
#define EM_H8_300 46 /* Hitachi H8/300 */ |
Definition at line 208 of file glibc_elf.h.
#define EM_H8_300H 47 /* Hitachi H8/300H */ |
Definition at line 209 of file glibc_elf.h.
#define EM_H8_500 49 /* Hitachi H8/500 */ |
Definition at line 211 of file glibc_elf.h.
#define EM_H8S 48 /* Hitachi H8S */ |
Definition at line 210 of file glibc_elf.h.
#define EM_HUANY 81 /* Harvard University machine-independent object files */ |
Definition at line 243 of file glibc_elf.h.
#define EM_IA_64 50 /* Intel Merced */ |
Definition at line 212 of file glibc_elf.h.
#define EM_IAMCU 6 /* Intel MCU */ |
Definition at line 182 of file glibc_elf.h.
#define EM_IP2K 101 /* Ubicom IP2xxx */ |
Definition at line 263 of file glibc_elf.h.
Definition at line 239 of file glibc_elf.h.
#define EM_K10M 181 /* Intel K10M */ |
Definition at line 320 of file glibc_elf.h.
#define EM_KM32 210 /* KM211 KM32 */ |
Definition at line 345 of file glibc_elf.h.
#define EM_KMX32 211 /* KM211 KMX32 */ |
Definition at line 346 of file glibc_elf.h.
#define EM_KVARC 214 /* KM211 KVARC */ |
Definition at line 349 of file glibc_elf.h.
#define EM_L10M 180 /* Intel L10M */ |
Definition at line 319 of file glibc_elf.h.
#define EM_LATTICEMICO32 138 /* RISC for Lattice FPGA */ |
Definition at line 291 of file glibc_elf.h.
#define EM_M16C 117 /* Renesas M16C */ |
Definition at line 279 of file glibc_elf.h.
Definition at line 177 of file glibc_elf.h.
#define EM_M32C 120 /* Renesas M32C */ |
Definition at line 282 of file glibc_elf.h.
#define EM_M32R 88 /* Mitsubishi M32R */ |
Definition at line 250 of file glibc_elf.h.
#define EM_MANIK 171 /* M2000 Reconfigurable RISC */ |
Definition at line 310 of file glibc_elf.h.
#define EM_MAX 102 /* MAX processor */ |
Definition at line 264 of file glibc_elf.h.
#define EM_MAXQ30 169 /* Dallas Semi. MAXQ30 mc */ |
Definition at line 308 of file glibc_elf.h.
Definition at line 343 of file glibc_elf.h.
#define EM_MCST_ELBRUS 175 /* MCST Elbrus */ |
Definition at line 314 of file glibc_elf.h.
#define EM_ME16 59 /* Toyota ME16 processor */ |
Definition at line 221 of file glibc_elf.h.
#define EM_METAG 174 /* Imagination Tech. META */ |
Definition at line 313 of file glibc_elf.h.
#define EM_MICROBLAZE 189 /* Xilinx MicroBlaze */ |
Definition at line 328 of file glibc_elf.h.
#define EM_MIPS 8 /* MIPS R3000 big-endian */ |
Definition at line 184 of file glibc_elf.h.
#define EM_MIPS_RS3_LE 10 /* MIPS R3000 little-endian */ |
Definition at line 186 of file glibc_elf.h.
#define EM_MIPS_X 51 /* Stanford MIPS-X */ |
Definition at line 213 of file glibc_elf.h.
#define EM_MMA 54 /* Fujitsu MMA Multimedia Accelerator */ |
Definition at line 216 of file glibc_elf.h.
#define EM_MMDSP_PLUS 160 /* STMicroelectronics 64bit VLIW DSP */ |
Definition at line 299 of file glibc_elf.h.
Definition at line 242 of file glibc_elf.h.
#define EM_MN10200 90 /* Matsushita MN10200 */ |
Definition at line 252 of file glibc_elf.h.
#define EM_MN10300 89 /* Matsushita MN10300 */ |
Definition at line 251 of file glibc_elf.h.
#define EM_MOXIE 223 /* Moxie processor */ |
Definition at line 358 of file glibc_elf.h.
#define EM_MSP430 105 /* Texas Instruments msp430 */ |
Definition at line 267 of file glibc_elf.h.
#define EM_NCPU 56 /* Sony nCPU embeeded RISC */ |
Definition at line 218 of file glibc_elf.h.
#define EM_NDR1 57 /* Denso NDR1 microprocessor */ |
Definition at line 219 of file glibc_elf.h.
#define EM_NDS32 167 /* Andes Tech. compact code emb. RISC */ |
Definition at line 306 of file glibc_elf.h.
#define EM_NONE 0 /* No machine */ |
Definition at line 176 of file glibc_elf.h.
#define EM_NORC 218 /* Nanoradio Optimized RISC */ |
Definition at line 353 of file glibc_elf.h.
#define EM_NS32K 97 /* National Semi. 32000 */ |
Definition at line 259 of file glibc_elf.h.
#define EM_NUM 253 |
Definition at line 366 of file glibc_elf.h.
#define EM_OPEN8 196 /* Open8 RISC */ |
Definition at line 335 of file glibc_elf.h.
#define EM_OPENRISC 92 /* OpenRISC 32-bit embedded processor */ |
Definition at line 254 of file glibc_elf.h.
#define EM_PARISC 15 /* HPPA */ |
Definition at line 188 of file glibc_elf.h.
#define EM_PCP 55 /* Siemens PCP */ |
Definition at line 217 of file glibc_elf.h.
#define EM_PDP10 64 /* Digital PDP-10 */ |
Definition at line 226 of file glibc_elf.h.
#define EM_PDP11 65 /* Digital PDP-11 */ |
Definition at line 227 of file glibc_elf.h.
#define EM_PDSP 63 /* Sony DSP Processor */ |
Definition at line 225 of file glibc_elf.h.
#define EM_PJ 91 /* picoJava */ |
Definition at line 253 of file glibc_elf.h.
#define EM_PPC 20 /* PowerPC */ |
Definition at line 193 of file glibc_elf.h.
#define EM_PPC64 21 /* PowerPC 64-bit */ |
Definition at line 194 of file glibc_elf.h.
#define EM_PRISM 82 /* SiTera Prism */ |
Definition at line 244 of file glibc_elf.h.
#define EM_QDSP6 164 /* QUALCOMM DSP6 */ |
Definition at line 303 of file glibc_elf.h.
#define EM_R32C 162 /* Renesas R32C */ |
Definition at line 301 of file glibc_elf.h.
#define EM_RCE 39 /* Motorola RCE */ |
Definition at line 201 of file glibc_elf.h.
#define EM_RH32 38 /* TRW RH-32 */ |
Definition at line 200 of file glibc_elf.h.
#define EM_RISCV 243 /* RISC-V */ |
Definition at line 361 of file glibc_elf.h.
#define EM_RL78 197 /* Renesas RL78 */ |
Definition at line 336 of file glibc_elf.h.
#define EM_RS08 132 /* Freescale RS08 */ |
Definition at line 285 of file glibc_elf.h.
#define EM_RX 173 /* Renesas RX */ |
Definition at line 312 of file glibc_elf.h.
#define EM_S370 9 /* IBM System/370 */ |
Definition at line 185 of file glibc_elf.h.
#define EM_S390 22 /* IBM S390 */ |
Definition at line 195 of file glibc_elf.h.
#define EM_SCORE7 135 /* Sunplus S+core7 RISC */ |
Definition at line 288 of file glibc_elf.h.
#define EM_SE_C17 139 /* Seiko Epson C17 */ |
Definition at line 292 of file glibc_elf.h.
#define EM_SE_C33 107 /* Seiko Epson S1C33 family */ |
Definition at line 269 of file glibc_elf.h.
#define EM_SEP 108 /* Sharp embedded microprocessor */ |
Definition at line 270 of file glibc_elf.h.
#define EM_SH 42 /* Hitachi SH */ |
Definition at line 204 of file glibc_elf.h.
#define EM_SHARC 133 /* Analog Devices SHARC family */ |
Definition at line 286 of file glibc_elf.h.
#define EM_SLE9X 179 /* Infineon Tech. SLE9X */ |
Definition at line 318 of file glibc_elf.h.
#define EM_SNP1K 99 /* Trebia SNP 1000 */ |
Definition at line 261 of file glibc_elf.h.
#define EM_SPARC 2 /* SUN SPARC */ |
Definition at line 178 of file glibc_elf.h.
#define EM_SPARC32PLUS 18 /* Sun's "v8plus" */ |
Definition at line 191 of file glibc_elf.h.
Definition at line 205 of file glibc_elf.h.
#define EM_SPU 23 /* IBM SPU/SPC */ |
Definition at line 196 of file glibc_elf.h.
#define EM_ST100 60 /* STMicroelectronic ST100 processor */ |
Definition at line 222 of file glibc_elf.h.
#define EM_ST19 74 /* STMicroelectronics ST19 8 bit mc */ |
Definition at line 236 of file glibc_elf.h.
#define EM_ST200 100 /* STMicroelectronics ST200 */ |
Definition at line 262 of file glibc_elf.h.
#define EM_ST7 68 /* STmicroelectronics ST7 8 bit mc */ |
Definition at line 230 of file glibc_elf.h.
#define EM_ST9PLUS 67 /* STMicroelectronics ST9+ 8/16 mc */ |
Definition at line 229 of file glibc_elf.h.
#define EM_STARCORE 58 /* Motorola Start*Core processor */ |
Definition at line 220 of file glibc_elf.h.
#define EM_STM8 186 /* STMicroelectronics STM8 */ |
Definition at line 325 of file glibc_elf.h.
#define EM_STXP7X 166 /* STMicroelectronics STxP7x */ |
Definition at line 305 of file glibc_elf.h.
#define EM_SVX 73 /* Silicon Graphics SVx */ |
Definition at line 235 of file glibc_elf.h.
#define EM_TI_ARP32 143 /* Texas Instruments App. Specific RISC */ |
Definition at line 296 of file glibc_elf.h.
#define EM_TI_C2000 141 /* Texas Instruments TMS320C2000 DSP */ |
Definition at line 294 of file glibc_elf.h.
#define EM_TI_C5500 142 /* Texas Instruments TMS320C55x DSP */ |
Definition at line 295 of file glibc_elf.h.
#define EM_TI_C6000 140 /* Texas Instruments TMS320C6000 DSP */ |
Definition at line 293 of file glibc_elf.h.
#define EM_TI_PRU 144 /* Texas Instruments Prog. Realtime Unit */ |
Definition at line 297 of file glibc_elf.h.
#define EM_TILE64 187 /* Tileta TILE64 */ |
Definition at line 326 of file glibc_elf.h.
#define EM_TILEGX 191 /* Tilera TILE-Gx */ |
Definition at line 330 of file glibc_elf.h.
#define EM_TILEPRO 188 /* Tilera TILEPro */ |
Definition at line 327 of file glibc_elf.h.
#define EM_TINYJ 61 /* Advanced Logic Corp. Tinyj emb.fam */ |
Definition at line 223 of file glibc_elf.h.
#define EM_TMM_GPP 96 /* Thompson Multimedia General Purpose Proc */ |
Definition at line 258 of file glibc_elf.h.
#define EM_TPC 98 /* Tenor Network TPC */ |
Definition at line 260 of file glibc_elf.h.
#define EM_TRICORE 44 /* Siemens Tricore */ |
Definition at line 206 of file glibc_elf.h.
#define EM_TRIMEDIA 163 /* NXP Semi. TriMedia */ |
Definition at line 302 of file glibc_elf.h.
#define EM_TSK3000 131 /* Altium TSK3000 */ |
Definition at line 284 of file glibc_elf.h.
#define EM_UNICORE 110 /* PKU-Unity & MPRC Peking Uni. mc series */ |
Definition at line 272 of file glibc_elf.h.
#define EM_V800 36 /* NEC V800 series */ |
Definition at line 198 of file glibc_elf.h.
#define EM_V850 87 /* NEC v850 */ |
Definition at line 249 of file glibc_elf.h.
#define EM_VAX 75 /* Digital VAX */ |
Definition at line 237 of file glibc_elf.h.
#define EM_VIDEOCORE 95 /* Alphamosaic VideoCore */ |
Definition at line 257 of file glibc_elf.h.
#define EM_VIDEOCORE3 137 /* Broadcom VideoCore III */ |
Definition at line 290 of file glibc_elf.h.
#define EM_VIDEOCORE5 198 /* Broadcom VideoCore V */ |
Definition at line 337 of file glibc_elf.h.
#define EM_VISIUM 221 /* Controls and Data Services VISIUMcore */ |
Definition at line 356 of file glibc_elf.h.
#define EM_VPP500 17 /* Fujitsu VPP500 */ |
Definition at line 190 of file glibc_elf.h.
#define EM_X86_64 62 /* AMD x86-64 architecture */ |
Definition at line 224 of file glibc_elf.h.
#define EM_XCORE 203 /* XMOS xCORE */ |
Definition at line 342 of file glibc_elf.h.
#define EM_XGATE 115 /* Motorola XGATE */ |
Definition at line 277 of file glibc_elf.h.
#define EM_XIMO16 170 /* New Japan Radio (NJR) 16-bit DSP */ |
Definition at line 309 of file glibc_elf.h.
#define EM_XTENSA 94 /* Tensilica Xtensa Architecture */ |
Definition at line 256 of file glibc_elf.h.
#define EM_Z80 220 /* Zilog Z80 */ |
Definition at line 355 of file glibc_elf.h.
#define EM_ZSP 79 /* LSI Logic 16-bit DSP Processor */ |
Definition at line 241 of file glibc_elf.h.
#define ET_CORE 4 /* Core file */ |
Definition at line 167 of file glibc_elf.h.
#define ET_DYN 3 /* Shared object file */ |
Definition at line 166 of file glibc_elf.h.
#define ET_EXEC 2 /* Executable file */ |
Definition at line 165 of file glibc_elf.h.
#define ET_HEXAGON_IR 0xff00 |
Definition at line 3939 of file glibc_elf.h.
Definition at line 170 of file glibc_elf.h.
#define ET_HIPROC 0xffff /* Processor-specific range end */ |
Definition at line 172 of file glibc_elf.h.
Definition at line 169 of file glibc_elf.h.
#define ET_LOPROC 0xff00 /* Processor-specific range start */ |
Definition at line 171 of file glibc_elf.h.
Definition at line 163 of file glibc_elf.h.
#define ET_NUM 5 /* Number of defined types */ |
Definition at line 168 of file glibc_elf.h.
#define ET_REL 1 /* Relocatable file */ |
Definition at line 164 of file glibc_elf.h.
#define EV_CURRENT 1 /* Current version */ |
Definition at line 381 of file glibc_elf.h.
#define EV_NONE 0 /* Invalid ELF version */ |
Definition at line 380 of file glibc_elf.h.
#define EV_NUM 2 |
Definition at line 382 of file glibc_elf.h.
#define GNU_PROPERTY_AARCH64_FEATURE_1_AND 0xc0000000 |
Definition at line 1282 of file glibc_elf.h.
#define GNU_PROPERTY_AARCH64_FEATURE_1_BTI (1U << 0) |
Definition at line 1284 of file glibc_elf.h.
#define GNU_PROPERTY_AARCH64_FEATURE_1_PAC (1U << 1) |
Definition at line 1285 of file glibc_elf.h.
#define GNU_PROPERTY_HIPROC 0xdfffffff |
Definition at line 1275 of file glibc_elf.h.
#define GNU_PROPERTY_HIUSER 0xffffffff |
Definition at line 1279 of file glibc_elf.h.
#define GNU_PROPERTY_LOPROC 0xc0000000 |
Definition at line 1273 of file glibc_elf.h.
#define GNU_PROPERTY_LOUSER 0xe0000000 |
Definition at line 1277 of file glibc_elf.h.
#define GNU_PROPERTY_NO_COPY_ON_PROTECTED 2 |
Definition at line 1270 of file glibc_elf.h.
#define GNU_PROPERTY_STACK_SIZE 1 |
Definition at line 1268 of file glibc_elf.h.
#define GNU_PROPERTY_X86_FEATURE_1_AND 0xc0000002 |
Definition at line 1294 of file glibc_elf.h.
#define GNU_PROPERTY_X86_FEATURE_1_IBT (1U << 0) |
Definition at line 1317 of file glibc_elf.h.
#define GNU_PROPERTY_X86_FEATURE_1_SHSTK (1U << 1) |
Definition at line 1320 of file glibc_elf.h.
#define GNU_PROPERTY_X86_ISA_1_486 (1U << 0) |
Definition at line 1296 of file glibc_elf.h.
#define GNU_PROPERTY_X86_ISA_1_586 (1U << 1) |
Definition at line 1297 of file glibc_elf.h.
#define GNU_PROPERTY_X86_ISA_1_686 (1U << 2) |
Definition at line 1298 of file glibc_elf.h.
#define GNU_PROPERTY_X86_ISA_1_AVX (1U << 9) |
Definition at line 1305 of file glibc_elf.h.
#define GNU_PROPERTY_X86_ISA_1_AVX2 (1U << 10) |
Definition at line 1306 of file glibc_elf.h.
#define GNU_PROPERTY_X86_ISA_1_AVX512BW (1U << 17) |
Definition at line 1313 of file glibc_elf.h.
#define GNU_PROPERTY_X86_ISA_1_AVX512CD (1U << 12) |
Definition at line 1308 of file glibc_elf.h.
#define GNU_PROPERTY_X86_ISA_1_AVX512DQ (1U << 16) |
Definition at line 1312 of file glibc_elf.h.
#define GNU_PROPERTY_X86_ISA_1_AVX512ER (1U << 13) |
Definition at line 1309 of file glibc_elf.h.
#define GNU_PROPERTY_X86_ISA_1_AVX512F (1U << 11) |
Definition at line 1307 of file glibc_elf.h.
#define GNU_PROPERTY_X86_ISA_1_AVX512PF (1U << 14) |
Definition at line 1310 of file glibc_elf.h.
#define GNU_PROPERTY_X86_ISA_1_AVX512VL (1U << 15) |
Definition at line 1311 of file glibc_elf.h.
#define GNU_PROPERTY_X86_ISA_1_NEEDED 0xc0000001 |
Definition at line 1292 of file glibc_elf.h.
#define GNU_PROPERTY_X86_ISA_1_SSE (1U << 3) |
Definition at line 1299 of file glibc_elf.h.
#define GNU_PROPERTY_X86_ISA_1_SSE2 (1U << 4) |
Definition at line 1300 of file glibc_elf.h.
#define GNU_PROPERTY_X86_ISA_1_SSE3 (1U << 5) |
Definition at line 1301 of file glibc_elf.h.
#define GNU_PROPERTY_X86_ISA_1_SSE4_1 (1U << 7) |
Definition at line 1303 of file glibc_elf.h.
#define GNU_PROPERTY_X86_ISA_1_SSE4_2 (1U << 8) |
Definition at line 1304 of file glibc_elf.h.
#define GNU_PROPERTY_X86_ISA_1_SSSE3 (1U << 6) |
Definition at line 1302 of file glibc_elf.h.
#define GNU_PROPERTY_X86_ISA_1_USED 0xc0000000 |
Definition at line 1289 of file glibc_elf.h.
#define GRP_COMDAT 0x1 /* Mark group as COMDAT. */ |
Definition at line 511 of file glibc_elf.h.
#define LITUSE_ALPHA_ADDR 0 |
Definition at line 2299 of file glibc_elf.h.
#define LITUSE_ALPHA_BASE 1 |
Definition at line 2300 of file glibc_elf.h.
#define LITUSE_ALPHA_BYTOFF 2 |
Definition at line 2301 of file glibc_elf.h.
#define LITUSE_ALPHA_JSR 3 |
Definition at line 2302 of file glibc_elf.h.
#define LITUSE_ALPHA_TLS_GD 4 |
Definition at line 2303 of file glibc_elf.h.
#define LITUSE_ALPHA_TLS_LDM 5 |
Definition at line 2304 of file glibc_elf.h.
#define LL_DELAY_LOAD (1 << 4) |
Definition at line 1949 of file glibc_elf.h.
#define LL_DELTA (1 << 5) |
Definition at line 1950 of file glibc_elf.h.
#define LL_EXACT_MATCH (1 << 0) /* Require exact match */ |
Definition at line 1945 of file glibc_elf.h.
#define LL_EXPORTS (1 << 3) |
Definition at line 1948 of file glibc_elf.h.
#define LL_IGNORE_INT_VER (1 << 1) /* Ignore interface version */ |
Definition at line 1946 of file glibc_elf.h.
#define LL_NONE 0 |
Definition at line 1944 of file glibc_elf.h.
#define LL_REQUIRE_MINOR (1 << 2) |
Definition at line 1947 of file glibc_elf.h.
#define MIPS_AFL_ASE_DSP 0x00000001 /* DSP ASE. */ |
Definition at line 1990 of file glibc_elf.h.
#define MIPS_AFL_ASE_DSPR2 0x00000002 /* DSP R2 ASE. */ |
Definition at line 1991 of file glibc_elf.h.
#define MIPS_AFL_ASE_EVA 0x00000004 /* Enhanced VA Scheme. */ |
Definition at line 1992 of file glibc_elf.h.
#define MIPS_AFL_ASE_MASK 0x00001fff /* All ASEs. */ |
Definition at line 2003 of file glibc_elf.h.
#define MIPS_AFL_ASE_MCU 0x00000008 /* MCU (MicroController) ASE. */ |
Definition at line 1993 of file glibc_elf.h.
#define MIPS_AFL_ASE_MDMX 0x00000010 /* MDMX ASE. */ |
Definition at line 1994 of file glibc_elf.h.
#define MIPS_AFL_ASE_MICROMIPS 0x00000800 /* MICROMIPS ASE. */ |
Definition at line 2001 of file glibc_elf.h.
#define MIPS_AFL_ASE_MIPS16 0x00000400 /* MIPS16 ASE. */ |
Definition at line 2000 of file glibc_elf.h.
#define MIPS_AFL_ASE_MIPS3D 0x00000020 /* MIPS-3D ASE. */ |
Definition at line 1995 of file glibc_elf.h.
#define MIPS_AFL_ASE_MSA 0x00000200 /* MSA ASE. */ |
Definition at line 1999 of file glibc_elf.h.
#define MIPS_AFL_ASE_MT 0x00000040 /* MT ASE. */ |
Definition at line 1996 of file glibc_elf.h.
#define MIPS_AFL_ASE_SMARTMIPS 0x00000080 /* SmartMIPS ASE. */ |
Definition at line 1997 of file glibc_elf.h.
#define MIPS_AFL_ASE_VIRT 0x00000100 /* VZ ASE. */ |
Definition at line 1998 of file glibc_elf.h.
#define MIPS_AFL_ASE_XPA 0x00001000 /* XPA ASE. */ |
Definition at line 2002 of file glibc_elf.h.
#define MIPS_AFL_EXT_10000 11 /* MIPS R10000 instruction. */ |
Definition at line 2017 of file glibc_elf.h.
#define MIPS_AFL_EXT_3900 10 /* Toshiba R3900 instruction. */ |
Definition at line 2016 of file glibc_elf.h.
#define MIPS_AFL_EXT_4010 8 /* LSI R4010 instruction. */ |
Definition at line 2014 of file glibc_elf.h.
#define MIPS_AFL_EXT_4100 9 /* NEC VR4100 instruction. */ |
Definition at line 2015 of file glibc_elf.h.
#define MIPS_AFL_EXT_4111 13 /* NEC VR4111/VR4181 instruction. */ |
Definition at line 2019 of file glibc_elf.h.
#define MIPS_AFL_EXT_4120 14 /* NEC VR4120 instruction. */ |
Definition at line 2020 of file glibc_elf.h.
#define MIPS_AFL_EXT_4650 7 /* MIPS R4650 instruction. */ |
Definition at line 2013 of file glibc_elf.h.
#define MIPS_AFL_EXT_5400 15 /* NEC VR5400 instruction. */ |
Definition at line 2021 of file glibc_elf.h.
#define MIPS_AFL_EXT_5500 16 /* NEC VR5500 instruction. */ |
Definition at line 2022 of file glibc_elf.h.
#define MIPS_AFL_EXT_5900 6 /* MIPS R5900 instruction. */ |
Definition at line 2012 of file glibc_elf.h.
#define MIPS_AFL_EXT_LOONGSON_2E 17 /* ST Microelectronics Loongson 2E. */ |
Definition at line 2023 of file glibc_elf.h.
#define MIPS_AFL_EXT_LOONGSON_2F 18 /* ST Microelectronics Loongson 2F. */ |
Definition at line 2024 of file glibc_elf.h.
#define MIPS_AFL_EXT_LOONGSON_3A 4 /* Loongson 3A. */ |
Definition at line 2010 of file glibc_elf.h.
#define MIPS_AFL_EXT_OCTEON 5 /* Cavium Networks Octeon. */ |
Definition at line 2011 of file glibc_elf.h.
#define MIPS_AFL_EXT_OCTEON2 2 /* Cavium Networks Octeon2. */ |
Definition at line 2008 of file glibc_elf.h.
#define MIPS_AFL_EXT_OCTEONP 3 /* Cavium Networks OcteonP. */ |
Definition at line 2009 of file glibc_elf.h.
#define MIPS_AFL_EXT_SB1 12 /* Broadcom SB-1 instruction. */ |
Definition at line 2018 of file glibc_elf.h.
#define MIPS_AFL_EXT_XLR 1 /* RMI Xlr instruction. */ |
Definition at line 2007 of file glibc_elf.h.
#define MIPS_AFL_FLAGS1_ODDSPREG 1 /* Uses odd single-precision registers. */ |
Definition at line 2027 of file glibc_elf.h.
#define MIPS_AFL_REG_128 0x03 /* 128-bit registers. */ |
Definition at line 1986 of file glibc_elf.h.
#define MIPS_AFL_REG_32 0x01 /* 32-bit registers. */ |
Definition at line 1984 of file glibc_elf.h.
#define MIPS_AFL_REG_64 0x02 /* 64-bit registers. */ |
Definition at line 1985 of file glibc_elf.h.
#define MIPS_AFL_REG_NONE 0x00 /* No registers. */ |
Definition at line 1983 of file glibc_elf.h.
#define NOTE_GNU_PROPERTY_SECTION_NAME ".note.gnu.property" |
Definition at line 1263 of file glibc_elf.h.
#define NT_386_IOPERM 0x201 /* x86 io permission bitmap (1=deny) */ |
Definition at line 772 of file glibc_elf.h.
#define NT_386_TLS 0x200 /* i386 TLS slots (struct user_desc) */ |
Definition at line 771 of file glibc_elf.h.
#define NT_ARM_HW_BREAK 0x402 /* ARM hardware breakpoint registers */ |
Definition at line 790 of file glibc_elf.h.
#define NT_ARM_HW_WATCH 0x403 /* ARM hardware watchpoint registers */ |
Definition at line 791 of file glibc_elf.h.
#define NT_ARM_PAC_MASK |
Definition at line 794 of file glibc_elf.h.
#define NT_ARM_PACA_KEYS |
Definition at line 795 of file glibc_elf.h.
#define NT_ARM_PACG_KEYS |
Definition at line 796 of file glibc_elf.h.
#define NT_ARM_SVE |
Definition at line 793 of file glibc_elf.h.
Definition at line 792 of file glibc_elf.h.
#define NT_ARM_TLS 0x401 /* ARM TLS register */ |
Definition at line 789 of file glibc_elf.h.
#define NT_ARM_VFP 0x400 /* ARM VFP/NEON registers */ |
Definition at line 788 of file glibc_elf.h.
#define NT_ASRS 8 /* Contains copy of asrset struct */ |
Definition at line 743 of file glibc_elf.h.
#define NT_AUXV 6 /* Contains copy of auxv array */ |
Definition at line 741 of file glibc_elf.h.
#define NT_FILE |
Definition at line 752 of file glibc_elf.h.
#define NT_FPREGSET 2 /* Contains copy of fpregset struct */ |
Definition at line 736 of file glibc_elf.h.
#define NT_GNU_ABI_TAG 1 |
Definition at line 1234 of file glibc_elf.h.
#define NT_GNU_BUILD_ID 3 |
Definition at line 1254 of file glibc_elf.h.
#define NT_GNU_GOLD_VERSION 4 |
Definition at line 1257 of file glibc_elf.h.
#define NT_GNU_HWCAP 2 |
Definition at line 1250 of file glibc_elf.h.
#define NT_GNU_PROPERTY_TYPE_0 5 |
Definition at line 1260 of file glibc_elf.h.
#define NT_GWINDOWS 7 /* Contains copy of gwindows struct */ |
Definition at line 742 of file glibc_elf.h.
#define NT_LWPSINFO 17 /* Contains copy of lwpinfo struct */ |
Definition at line 749 of file glibc_elf.h.
#define NT_LWPSTATUS 16 /* Contains copy of lwpstatus struct */ |
Definition at line 748 of file glibc_elf.h.
#define NT_MIPS_DSP 0x800 /* MIPS DSP ASE registers. */ |
Definition at line 798 of file glibc_elf.h.
#define NT_MIPS_FP_MODE 0x801 /* MIPS floating-point mode. */ |
Definition at line 799 of file glibc_elf.h.
#define NT_MIPS_MSA 0x802 /* MIPS SIMD registers. */ |
Definition at line 800 of file glibc_elf.h.
Definition at line 740 of file glibc_elf.h.
Definition at line 759 of file glibc_elf.h.
#define NT_PPC_EBB 0x106 /* Event Based Branch Registers */ |
Definition at line 760 of file glibc_elf.h.
#define NT_PPC_PKEY |
Definition at line 770 of file glibc_elf.h.
#define NT_PPC_PMU 0x107 /* Performance Monitor Registers */ |
Definition at line 761 of file glibc_elf.h.
#define NT_PPC_PPR 0x104 /* Program Priority Register */ |
Definition at line 758 of file glibc_elf.h.
#define NT_PPC_SPE 0x101 /* PowerPC SPE/EVR registers */ |
Definition at line 755 of file glibc_elf.h.
#define NT_PPC_TAR 0x103 /* Target Address Register */ |
Definition at line 757 of file glibc_elf.h.
#define NT_PPC_TM_CDSCR |
Definition at line 769 of file glibc_elf.h.
#define NT_PPC_TM_CFPR 0x109 /* TM checkpointed FPR Registers */ |
Definition at line 763 of file glibc_elf.h.
#define NT_PPC_TM_CGPR 0x108 /* TM checkpointed GPR Registers */ |
Definition at line 762 of file glibc_elf.h.
#define NT_PPC_TM_CPPR |
Definition at line 768 of file glibc_elf.h.
#define NT_PPC_TM_CTAR |
Definition at line 767 of file glibc_elf.h.
#define NT_PPC_TM_CVMX 0x10a /* TM checkpointed VMX Registers */ |
Definition at line 764 of file glibc_elf.h.
#define NT_PPC_TM_CVSX 0x10b /* TM checkpointed VSX Registers */ |
Definition at line 765 of file glibc_elf.h.
#define NT_PPC_TM_SPR 0x10c /* TM Special Purpose Registers */ |
Definition at line 766 of file glibc_elf.h.
#define NT_PPC_VMX 0x100 /* PowerPC Altivec/VMX registers */ |
Definition at line 754 of file glibc_elf.h.
#define NT_PPC_VSX 0x102 /* PowerPC VSX registers */ |
Definition at line 756 of file glibc_elf.h.
#define NT_PRCRED 14 /* Contains copy of prcred struct */ |
Definition at line 746 of file glibc_elf.h.
#define NT_PRFPREG |
Definition at line 735 of file glibc_elf.h.
#define NT_PRFPXREG 20 /* Contains copy of fprxregset struct */ |
Definition at line 750 of file glibc_elf.h.
#define NT_PRPSINFO 3 /* Contains copy of prpsinfo struct */ |
Definition at line 737 of file glibc_elf.h.
#define NT_PRSTATUS 1 /* Contains copy of prstatus struct */ |
Definition at line 734 of file glibc_elf.h.
#define NT_PRXFPREG 0x46e62b7f /* Contains copy of user_fxsr_struct */ |
Definition at line 753 of file glibc_elf.h.
#define NT_PRXREG 4 /* Contains copy of prxregset struct */ |
Definition at line 738 of file glibc_elf.h.
#define NT_PSINFO 13 /* Contains copy of psinfo struct */ |
Definition at line 745 of file glibc_elf.h.
#define NT_PSTATUS 10 /* Contains copy of pstatus struct */ |
Definition at line 744 of file glibc_elf.h.
#define NT_S390_CTRS 0x304 /* s390 control registers */ |
Definition at line 778 of file glibc_elf.h.
#define NT_S390_GS_BC |
Definition at line 786 of file glibc_elf.h.
#define NT_S390_GS_CB 0x30b /* s390 guarded storage registers. */ |
Definition at line 785 of file glibc_elf.h.
#define NT_S390_HIGH_GPRS 0x300 /* s390 upper register halves */ |
Definition at line 774 of file glibc_elf.h.
#define NT_S390_LAST_BREAK 0x306 /* s390 breaking event address */ |
Definition at line 780 of file glibc_elf.h.
#define NT_S390_PREFIX 0x305 /* s390 prefix register */ |
Definition at line 779 of file glibc_elf.h.
#define NT_S390_RI_CB 0x30d /* s390 runtime instrumentation. */ |
Definition at line 787 of file glibc_elf.h.
#define NT_S390_SYSTEM_CALL 0x307 /* s390 system call restart data */ |
Definition at line 781 of file glibc_elf.h.
#define NT_S390_TDB 0x308 /* s390 transaction diagnostic block */ |
Definition at line 782 of file glibc_elf.h.
#define NT_S390_TIMER 0x301 /* s390 timer register */ |
Definition at line 775 of file glibc_elf.h.
#define NT_S390_TODCMP 0x302 /* s390 TOD clock comparator register */ |
Definition at line 776 of file glibc_elf.h.
#define NT_S390_TODPREG 0x303 /* s390 TOD programmable register */ |
Definition at line 777 of file glibc_elf.h.
#define NT_S390_VXRS_HIGH 0x30a /* s390 vector registers 16-31. */ |
Definition at line 784 of file glibc_elf.h.
#define NT_S390_VXRS_LOW |
Definition at line 783 of file glibc_elf.h.
#define NT_SIGINFO |
Definition at line 751 of file glibc_elf.h.
#define NT_TASKSTRUCT 4 /* Contains copy of task structure */ |
Definition at line 739 of file glibc_elf.h.
#define NT_UTSNAME 15 /* Contains copy of utsname struct */ |
Definition at line 747 of file glibc_elf.h.
Definition at line 804 of file glibc_elf.h.
#define NT_VMCOREDD 0x700 /* Vmcore Device Dump Note. */ |
Definition at line 797 of file glibc_elf.h.
#define NT_X86_XSTATE 0x202 /* x86 extended state using xsave */ |
Definition at line 773 of file glibc_elf.h.
#define ODK_EXCEPTIONS 2 /* Exception processing options. */ |
Definition at line 1728 of file glibc_elf.h.
Definition at line 1731 of file glibc_elf.h.
Definition at line 1733 of file glibc_elf.h.
Definition at line 1734 of file glibc_elf.h.
#define ODK_HWPATCH 4 /* Hardware workarounds performed */ |
Definition at line 1730 of file glibc_elf.h.
#define ODK_NULL 0 /* Undefined. */ |
Definition at line 1726 of file glibc_elf.h.
#define ODK_PAD 3 /* Section padding options. */ |
Definition at line 1729 of file glibc_elf.h.
Definition at line 1727 of file glibc_elf.h.
#define ODK_TAGS 6 /* reserve space for desktop tools to write. */ |
Definition at line 1732 of file glibc_elf.h.
#define OEX_DISMISS 0x80000 /* Dismiss invalid address faults? */ |
Definition at line 1744 of file glibc_elf.h.
Definition at line 1742 of file glibc_elf.h.
#define OEX_FPU_DIV0 0x08 |
Definition at line 1747 of file glibc_elf.h.
#define OEX_FPU_INEX 0x01 |
Definition at line 1750 of file glibc_elf.h.
#define OEX_FPU_INVAL 0x10 |
Definition at line 1746 of file glibc_elf.h.
Definition at line 1739 of file glibc_elf.h.
Definition at line 1738 of file glibc_elf.h.
#define OEX_FPU_OFLO 0x04 |
Definition at line 1748 of file glibc_elf.h.
#define OEX_FPU_UFLO 0x02 |
Definition at line 1749 of file glibc_elf.h.
#define OEX_PAGE0 0x10000 /* page zero must be mapped. */ |
Definition at line 1740 of file glibc_elf.h.
#define OEX_PRECISEFP OEX_FPDBUG |
Definition at line 1743 of file glibc_elf.h.
#define OEX_SMM 0x20000 /* Force sequential memory mode? */ |
Definition at line 1741 of file glibc_elf.h.
#define OHW_R4KEOP 0x1 /* R4000 end-of-page patch. */ |
Definition at line 1754 of file glibc_elf.h.
#define OHW_R5KCVTL 0x8 /* R5000 cvt.[ds].l bug. clean=1. */ |
Definition at line 1757 of file glibc_elf.h.
#define OHW_R5KEOP 0x4 /* R5000 end-of-page patch. */ |
Definition at line 1756 of file glibc_elf.h.
#define OHW_R8KPFETCH 0x2 /* may need R8000 prefetch patch. */ |
Definition at line 1755 of file glibc_elf.h.
#define OHWA0_R4KEOP_CHECKED 0x00000001 |
Definition at line 1773 of file glibc_elf.h.
#define OHWA1_R4KEOP_CLEAN 0x00000002 |
Definition at line 1774 of file glibc_elf.h.
#define OPAD_POSTFIX 0x2 |
Definition at line 1760 of file glibc_elf.h.
#define OPAD_PREFIX 0x1 |
Definition at line 1759 of file glibc_elf.h.
#define OPAD_SYMBOL 0x4 |
Definition at line 1761 of file glibc_elf.h.
#define PF_ARM_ABS 0x40000000 /* Absolute segment. */ |
Definition at line 2642 of file glibc_elf.h.
#define PF_ARM_PI 0x20000000 /* Position-independent segment. */ |
Definition at line 2641 of file glibc_elf.h.
#define PF_ARM_SB |
Definition at line 2640 of file glibc_elf.h.
#define PF_HP_CODE 0x01000000 |
Definition at line 2234 of file glibc_elf.h.
#define PF_HP_FAR_SHARED 0x00200000 |
Definition at line 2232 of file glibc_elf.h.
#define PF_HP_LAZYSWAP 0x04000000 |
Definition at line 2236 of file glibc_elf.h.
#define PF_HP_MODIFY 0x02000000 |
Definition at line 2235 of file glibc_elf.h.
#define PF_HP_NEAR_SHARED 0x00400000 |
Definition at line 2233 of file glibc_elf.h.
#define PF_HP_PAGE_SIZE 0x00100000 |
Definition at line 2231 of file glibc_elf.h.
#define PF_HP_SBP 0x08000000 |
Definition at line 2237 of file glibc_elf.h.
Definition at line 3020 of file glibc_elf.h.
#define PF_MASKOS 0x0ff00000 /* OS-specific */ |
Definition at line 729 of file glibc_elf.h.
#define PF_MASKPROC 0xf0000000 /* Processor-specific */ |
Definition at line 730 of file glibc_elf.h.
#define PF_MIPS_LOCAL 0x10000000 |
Definition at line 1842 of file glibc_elf.h.
#define PF_PARISC_SBP 0x08000000 |
Definition at line 2229 of file glibc_elf.h.
#define PF_R (1 << 2) /* Segment is readable */ |
Definition at line 728 of file glibc_elf.h.
#define PF_W (1 << 1) /* Segment is writable */ |
Definition at line 727 of file glibc_elf.h.
#define PF_X (1 << 0) /* Segment is executable */ |
Definition at line 726 of file glibc_elf.h.
#define PN_XNUM 0xffff |
Definition at line 698 of file glibc_elf.h.
#define PPC64_LOCAL_ENTRY_OFFSET | ( | other | ) | (((1 << (((other)&STO_PPC64_LOCAL_MASK) >> STO_PPC64_LOCAL_BIT)) >> 2) << 2) |
Definition at line 2590 of file glibc_elf.h.
#define PPC64_OPT_LOCALENTRY 4 |
Definition at line 2585 of file glibc_elf.h.
#define PPC64_OPT_MULTI_TOC 2 |
Definition at line 2584 of file glibc_elf.h.
#define PPC64_OPT_TLS 1 |
Definition at line 2583 of file glibc_elf.h.
#define PPC_OPT_TLS 1 |
Definition at line 2436 of file glibc_elf.h.
Definition at line 2645 of file glibc_elf.h.
#define PT_DYNAMIC 2 /* Dynamic linking information */ |
Definition at line 704 of file glibc_elf.h.
#define PT_GNU_EH_FRAME 0x6474e550 /* GCC .eh_frame_hdr segment */ |
Definition at line 712 of file glibc_elf.h.
#define PT_GNU_PROPERTY 0x6474e553 /* GNU property */ |
Definition at line 715 of file glibc_elf.h.
#define PT_GNU_RELRO 0x6474e552 /* Read-only after relocation */ |
Definition at line 714 of file glibc_elf.h.
#define PT_GNU_STACK 0x6474e551 /* Indicates stack executability */ |
Definition at line 713 of file glibc_elf.h.
#define PT_HIOS 0x6fffffff /* End of OS-specific */ |
Definition at line 720 of file glibc_elf.h.
#define PT_HIPROC 0x7fffffff /* End of processor-specific */ |
Definition at line 722 of file glibc_elf.h.
#define PT_HISUNW 0x6fffffff |
Definition at line 719 of file glibc_elf.h.
#define PT_HP_CORE_COMM (PT_LOOS + 0x4) |
Definition at line 2212 of file glibc_elf.h.
#define PT_HP_CORE_KERNEL (PT_LOOS + 0x3) |
Definition at line 2211 of file glibc_elf.h.
#define PT_HP_CORE_LOADABLE (PT_LOOS + 0x6) |
Definition at line 2214 of file glibc_elf.h.
#define PT_HP_CORE_MMF (PT_LOOS + 0x9) |
Definition at line 2217 of file glibc_elf.h.
#define PT_HP_CORE_NONE (PT_LOOS + 0x1) |
Definition at line 2209 of file glibc_elf.h.
#define PT_HP_CORE_PROC (PT_LOOS + 0x5) |
Definition at line 2213 of file glibc_elf.h.
#define PT_HP_CORE_SHM (PT_LOOS + 0x8) |
Definition at line 2216 of file glibc_elf.h.
#define PT_HP_CORE_STACK (PT_LOOS + 0x7) |
Definition at line 2215 of file glibc_elf.h.
#define PT_HP_CORE_VERSION (PT_LOOS + 0x2) |
Definition at line 2210 of file glibc_elf.h.
#define PT_HP_FASTBIND (PT_LOOS + 0x11) |
Definition at line 2219 of file glibc_elf.h.
#define PT_HP_HSL_ANNOT (PT_LOOS + 0x13) |
Definition at line 2221 of file glibc_elf.h.
#define PT_HP_OPT_ANNOT (PT_LOOS + 0x12) |
Definition at line 2220 of file glibc_elf.h.
#define PT_HP_PARALLEL (PT_LOOS + 0x10) |
Definition at line 2218 of file glibc_elf.h.
#define PT_HP_STACK (PT_LOOS + 0x14) |
Definition at line 2222 of file glibc_elf.h.
#define PT_HP_TLS (PT_LOOS + 0x0) |
Definition at line 2208 of file glibc_elf.h.
Definition at line 3013 of file glibc_elf.h.
#define PT_IA_64_HP_HSL_ANOT (PT_LOOS + 0x13) |
Definition at line 3016 of file glibc_elf.h.
#define PT_IA_64_HP_OPT_ANOT (PT_LOOS + 0x12) |
Definition at line 3015 of file glibc_elf.h.
#define PT_IA_64_HP_STACK (PT_LOOS + 0x14) |
Definition at line 3017 of file glibc_elf.h.
Definition at line 3014 of file glibc_elf.h.
#define PT_INTERP 3 /* Program interpreter */ |
Definition at line 705 of file glibc_elf.h.
#define PT_LOAD 1 /* Loadable program segment */ |
Definition at line 703 of file glibc_elf.h.
#define PT_LOOS 0x60000000 /* Start of OS-specific */ |
Definition at line 711 of file glibc_elf.h.
#define PT_LOPROC 0x70000000 /* Start of processor-specific */ |
Definition at line 721 of file glibc_elf.h.
#define PT_LOSUNW 0x6ffffffa |
Definition at line 716 of file glibc_elf.h.
Definition at line 1838 of file glibc_elf.h.
#define PT_MIPS_OPTIONS 0x70000002 |
Definition at line 1837 of file glibc_elf.h.
Definition at line 1835 of file glibc_elf.h.
#define PT_MIPS_RTPROC 0x70000001 /* Runtime procedure table. */ |
Definition at line 1836 of file glibc_elf.h.
#define PT_NOTE 4 /* Auxiliary information */ |
Definition at line 706 of file glibc_elf.h.
Definition at line 702 of file glibc_elf.h.
#define PT_NUM 8 /* Number of defined types */ |
Definition at line 710 of file glibc_elf.h.
#define PT_PARISC_ARCHEXT 0x70000000 |
Definition at line 2224 of file glibc_elf.h.
#define PT_PARISC_UNWIND 0x70000001 |
Definition at line 2225 of file glibc_elf.h.
#define PT_PHDR 6 /* Entry for header table itself */ |
Definition at line 708 of file glibc_elf.h.
#define PT_SHLIB 5 /* Reserved */ |
Definition at line 707 of file glibc_elf.h.
#define PT_SUNWBSS 0x6ffffffa /* Sun Specific segment */ |
Definition at line 717 of file glibc_elf.h.
#define PT_SUNWSTACK 0x6ffffffb /* Stack segment */ |
Definition at line 718 of file glibc_elf.h.
#define PT_TLS 7 /* Thread-local storage segment */ |
Definition at line 709 of file glibc_elf.h.
Definition at line 4012 of file glibc_elf.h.
Definition at line 4011 of file glibc_elf.h.
Definition at line 4010 of file glibc_elf.h.
Definition at line 3993 of file glibc_elf.h.
Definition at line 4009 of file glibc_elf.h.
Definition at line 4080 of file glibc_elf.h.
Definition at line 4085 of file glibc_elf.h.
Definition at line 3992 of file glibc_elf.h.
Definition at line 4003 of file glibc_elf.h.
Definition at line 4017 of file glibc_elf.h.
Definition at line 4051 of file glibc_elf.h.
Definition at line 4016 of file glibc_elf.h.
Definition at line 4015 of file glibc_elf.h.
Definition at line 3994 of file glibc_elf.h.
Definition at line 4014 of file glibc_elf.h.
Definition at line 4013 of file glibc_elf.h.
Definition at line 4000 of file glibc_elf.h.
Definition at line 4006 of file glibc_elf.h.
Definition at line 3988 of file glibc_elf.h.
Definition at line 4005 of file glibc_elf.h.
Definition at line 3987 of file glibc_elf.h.
Definition at line 4004 of file glibc_elf.h.
Definition at line 4002 of file glibc_elf.h.
Definition at line 3989 of file glibc_elf.h.
Definition at line 4008 of file glibc_elf.h.
Definition at line 4001 of file glibc_elf.h.
Definition at line 4007 of file glibc_elf.h.
#define R_HEX_BITMASK_WORD16 0xffff |
Definition at line 4088 of file glibc_elf.h.
#define R_HEX_BITMASK_WORD32 0xffffffff |
Definition at line 4089 of file glibc_elf.h.
#define R_HEX_BITMASK_WORD32_B13 0x00202ffe |
Definition at line 4094 of file glibc_elf.h.
#define R_HEX_BITMASK_WORD32_B15 0x00df20fe |
Definition at line 4095 of file glibc_elf.h.
#define R_HEX_BITMASK_WORD32_B22 0x01ff3ffe |
Definition at line 4096 of file glibc_elf.h.
#define R_HEX_BITMASK_WORD32_B7 0x00001f18 |
Definition at line 4092 of file glibc_elf.h.
#define R_HEX_BITMASK_WORD32_B9 0x003000fe |
Definition at line 4093 of file glibc_elf.h.
#define R_HEX_BITMASK_WORD32_HL 0x00c03fff |
Definition at line 4091 of file glibc_elf.h.
#define R_HEX_BITMASK_WORD32_LO 0x00c03fff |
Definition at line 4090 of file glibc_elf.h.
#define R_HEX_BITMASK_WORD32_M21 0x0fff3fe0 |
Definition at line 4097 of file glibc_elf.h.
#define R_HEX_BITMASK_WORD32_M25 0x0fff3fef |
Definition at line 4098 of file glibc_elf.h.
#define R_HEX_BITMASK_WORD32_R6 0x000007e0 |
Definition at line 4099 of file glibc_elf.h.
#define R_HEX_BITMASK_WORD32_X26 0x0fff3fff |
Definition at line 4100 of file glibc_elf.h.
#define R_HEX_BITMASK_WORD8 0xff |
Definition at line 4087 of file glibc_elf.h.
#define R_HEX_COPY 32 /* Word32 (See ABI docs) */ |
Definition at line 4018 of file glibc_elf.h.
#define R_HEX_DTPMOD_32 44 /* Word32 */ |
Definition at line 4030 of file glibc_elf.h.
Definition at line 4060 of file glibc_elf.h.
Definition at line 4034 of file glibc_elf.h.
Definition at line 4059 of file glibc_elf.h.
Definition at line 4033 of file glibc_elf.h.
Definition at line 4058 of file glibc_elf.h.
Definition at line 4032 of file glibc_elf.h.
Definition at line 4031 of file glibc_elf.h.
#define R_HEX_GD_GOT_11_X 77 /* Word32_U6 (G) Unsigned Truncate */ |
Definition at line 4063 of file glibc_elf.h.
#define R_HEX_GD_GOT_16 53 /* Word32_U16 (G) Signed Verify */ |
Definition at line 4039 of file glibc_elf.h.
#define R_HEX_GD_GOT_16_X 76 /* Word32_U6 (G) Unsigned Truncate */ |
Definition at line 4062 of file glibc_elf.h.
#define R_HEX_GD_GOT_32 52 /* Word32 (G) Signed Truncate */ |
Definition at line 4038 of file glibc_elf.h.
#define R_HEX_GD_GOT_32_6_X 75 /* Word32_X26 (G) >> 6 Signed Truncate */ |
Definition at line 4061 of file glibc_elf.h.
#define R_HEX_GD_GOT_HI16 51 /* Word32_LO (G) >> 16 Signed Truncate */ |
Definition at line 4037 of file glibc_elf.h.
#define R_HEX_GD_GOT_LO16 50 /* Word32_LO (G) Signed Truncate */ |
Definition at line 4036 of file glibc_elf.h.
Definition at line 4035 of file glibc_elf.h.
Definition at line 4081 of file glibc_elf.h.
Definition at line 4082 of file glibc_elf.h.
Definition at line 4019 of file glibc_elf.h.
#define R_HEX_GOT_11_X 71 /* Word32_U6 (G) Unsigned Truncate */ |
Definition at line 4057 of file glibc_elf.h.
#define R_HEX_GOT_16 43 /* Word32_U16 (G) Signed Verify */ |
Definition at line 4029 of file glibc_elf.h.
#define R_HEX_GOT_16_X 70 /* Word32_U6 (G) Signed Truncate */ |
Definition at line 4056 of file glibc_elf.h.
#define R_HEX_GOT_32 42 /* Word32 (G) Signed Truncate */ |
Definition at line 4028 of file glibc_elf.h.
#define R_HEX_GOT_32_6_X 69 /* Word32_X26 (G) >> 6 Signed Truncate */ |
Definition at line 4055 of file glibc_elf.h.
#define R_HEX_GOT_HI16 41 /* Word32_LO (G) >> 16 Signed Truncate */ |
Definition at line 4027 of file glibc_elf.h.
#define R_HEX_GOT_LO16 40 /* Word32_LO (G) Signed Truncate */ |
Definition at line 4026 of file glibc_elf.h.
Definition at line 4054 of file glibc_elf.h.
Definition at line 4053 of file glibc_elf.h.
Definition at line 4025 of file glibc_elf.h.
Definition at line 4052 of file glibc_elf.h.
Definition at line 4024 of file glibc_elf.h.
Definition at line 4023 of file glibc_elf.h.
Definition at line 3995 of file glibc_elf.h.
Definition at line 3996 of file glibc_elf.h.
Definition at line 3997 of file glibc_elf.h.
Definition at line 3998 of file glibc_elf.h.
Definition at line 3991 of file glibc_elf.h.
Definition at line 3999 of file glibc_elf.h.
#define R_HEX_IE_16_X 79 /* Word32_U6 (G + GOT) Unsigned Truncate */ |
Definition at line 4065 of file glibc_elf.h.
#define R_HEX_IE_32 56 /* Word32 (G + GOT) Signed Truncate */ |
Definition at line 4042 of file glibc_elf.h.
#define R_HEX_IE_32_6_X 78 /* Word32_X26 (G + GOT) >> 6 Signed Truncate */ |
Definition at line 4064 of file glibc_elf.h.
#define R_HEX_IE_GOT_11_X 82 /* Word32_U6 (G) Unsigned Truncate */ |
Definition at line 4068 of file glibc_elf.h.
#define R_HEX_IE_GOT_16 60 /* Word32_U16 (G) Signed Verify */ |
Definition at line 4046 of file glibc_elf.h.
#define R_HEX_IE_GOT_16_X 81 /* Word32_U6 (G) Unsigned Truncate */ |
Definition at line 4067 of file glibc_elf.h.
#define R_HEX_IE_GOT_32 59 /* Word32 (G) Signed Truncate */ |
Definition at line 4045 of file glibc_elf.h.
#define R_HEX_IE_GOT_32_6_X 80 /* Word32_X26 (G) >> 6 Signed Truncate */ |
Definition at line 4066 of file glibc_elf.h.
#define R_HEX_IE_GOT_HI16 58 /* Word32_LO (G) >> 16 Signed Truncate */ |
Definition at line 4044 of file glibc_elf.h.
#define R_HEX_IE_GOT_LO16 57 /* Word32_LO (G) Signed Truncate */ |
Definition at line 4043 of file glibc_elf.h.
#define R_HEX_IE_HI16 55 /* Word32_LO (G + GOT) >> 16 Signed Truncate */ |
Definition at line 4041 of file glibc_elf.h.
#define R_HEX_IE_LO16 54 /* Word32_LO (G + GOT) Signed Truncate */ |
Definition at line 4040 of file glibc_elf.h.
Definition at line 4020 of file glibc_elf.h.
#define R_HEX_LD_GOT_11_X 93 /* Word32_U6 (G) Unsigned Truncate */ |
Definition at line 4079 of file glibc_elf.h.
#define R_HEX_LD_GOT_16 90 /* Word32_R16 (G) Signed Verify */ |
Definition at line 4076 of file glibc_elf.h.
#define R_HEX_LD_GOT_16_X 92 /* Word32_U6 (G) Unsigned Truncate */ |
Definition at line 4078 of file glibc_elf.h.
#define R_HEX_LD_GOT_32 89 /* Word32 (G) Signed Truncate */ |
Definition at line 4075 of file glibc_elf.h.
#define R_HEX_LD_GOT_32_6_X 91 /* Word32_X26 (G) >> 6 Signed Truncate */ |
Definition at line 4077 of file glibc_elf.h.
#define R_HEX_LD_GOT_HI16 88 /* Word32_LO (G) >> 16 Signed Truncate */ |
Definition at line 4074 of file glibc_elf.h.
#define R_HEX_LD_GOT_LO16 87 /* Word32_LO (G) Signed Truncate */ |
Definition at line 4073 of file glibc_elf.h.
Definition at line 4072 of file glibc_elf.h.
Definition at line 4083 of file glibc_elf.h.
Definition at line 4084 of file glibc_elf.h.
Definition at line 3990 of file glibc_elf.h.
#define R_HEX_NONE 0 /* None None None None */ |
Definition at line 3986 of file glibc_elf.h.
Definition at line 4022 of file glibc_elf.h.
Definition at line 4021 of file glibc_elf.h.
Definition at line 4071 of file glibc_elf.h.
Definition at line 4050 of file glibc_elf.h.
Definition at line 4070 of file glibc_elf.h.
Definition at line 4049 of file glibc_elf.h.
Definition at line 4069 of file glibc_elf.h.
Definition at line 4048 of file glibc_elf.h.
Definition at line 4047 of file glibc_elf.h.
#define RHF_CORD (1 << 12) |
Definition at line 1918 of file glibc_elf.h.
#define RHF_DEFAULT_DELAY_LOAD (1 << 9) |
Definition at line 1915 of file glibc_elf.h.
#define RHF_DELTA_C_PLUS_PLUS (1 << 6) |
Definition at line 1912 of file glibc_elf.h.
#define RHF_GUARANTEE_INIT (1 << 5) |
Definition at line 1911 of file glibc_elf.h.
#define RHF_GUARANTEE_START_INIT (1 << 7) |
Definition at line 1913 of file glibc_elf.h.
#define RHF_NO_LIBRARY_REPLACEMENT (1 << 2) /* Ignore LD_LIBRARY_PATH */ |
Definition at line 1908 of file glibc_elf.h.
#define RHF_NO_MOVE (1 << 3) |
Definition at line 1909 of file glibc_elf.h.
#define RHF_NO_UNRES_UNDEF (1 << 13) |
Definition at line 1919 of file glibc_elf.h.
#define RHF_NONE 0 /* No flags */ |
Definition at line 1905 of file glibc_elf.h.
#define RHF_NOTPOT (1 << 1) /* Hash size not power of 2 */ |
Definition at line 1907 of file glibc_elf.h.
#define RHF_PIXIE (1 << 8) |
Definition at line 1914 of file glibc_elf.h.
#define RHF_QUICKSTART (1 << 0) /* Use quickstart */ |
Definition at line 1906 of file glibc_elf.h.
#define RHF_REQUICKSTART (1 << 10) |
Definition at line 1916 of file glibc_elf.h.
#define RHF_REQUICKSTARTED (1 << 11) |
Definition at line 1917 of file glibc_elf.h.
#define RHF_RLD_ORDER_SAFE (1 << 14) |
Definition at line 1920 of file glibc_elf.h.
#define RHF_SGI_ONLY (1 << 4) |
Definition at line 1910 of file glibc_elf.h.
#define RZ_386_16 20 |
Definition at line 1423 of file glibc_elf.h.
#define RZ_386_32 1 /* Direct 32 bit */ |
Definition at line 1406 of file glibc_elf.h.
#define RZ_386_32PLT 11 |
Definition at line 1416 of file glibc_elf.h.
#define RZ_386_8 22 |
Definition at line 1425 of file glibc_elf.h.
#define RZ_386_COPY 5 /* Copy symbol at runtime */ |
Definition at line 1410 of file glibc_elf.h.
#define RZ_386_GLOB_DAT 6 /* Create GOT entry */ |
Definition at line 1411 of file glibc_elf.h.
Definition at line 1408 of file glibc_elf.h.
#define RZ_386_GOT32X |
Definition at line 1446 of file glibc_elf.h.
Definition at line 1414 of file glibc_elf.h.
Definition at line 1415 of file glibc_elf.h.
#define RZ_386_IRELATIVE 42 /* Adjust indirectly by program base */ |
Definition at line 1445 of file glibc_elf.h.
#define RZ_386_JMP_SLOT 7 /* Create PLT entry */ |
Definition at line 1412 of file glibc_elf.h.
#define RZ_386_NONE 0 /* No reloc */ |
Definition at line 1405 of file glibc_elf.h.
#define RZ_386_NUM 44 |
Definition at line 1448 of file glibc_elf.h.
#define RZ_386_PC16 21 |
Definition at line 1424 of file glibc_elf.h.
Definition at line 1407 of file glibc_elf.h.
#define RZ_386_PC8 23 |
Definition at line 1426 of file glibc_elf.h.
#define RZ_386_PLT32 4 /* 32 bit PLT address */ |
Definition at line 1409 of file glibc_elf.h.
#define RZ_386_RELATIVE 8 /* Adjust by program base */ |
Definition at line 1413 of file glibc_elf.h.
Definition at line 1441 of file glibc_elf.h.
#define RZ_386_TLS_DESC |
Definition at line 1444 of file glibc_elf.h.
#define RZ_386_TLS_DESC_CALL |
Definition at line 1443 of file glibc_elf.h.
#define RZ_386_TLS_DTPMOD32 35 /* ID of module containing symbol */ |
Definition at line 1438 of file glibc_elf.h.
Definition at line 1439 of file glibc_elf.h.
#define RZ_386_TLS_GD |
Definition at line 1421 of file glibc_elf.h.
#define RZ_386_TLS_GD_32 |
Definition at line 1427 of file glibc_elf.h.
#define RZ_386_TLS_GD_CALL |
Definition at line 1429 of file glibc_elf.h.
Definition at line 1430 of file glibc_elf.h.
Definition at line 1428 of file glibc_elf.h.
#define RZ_386_TLS_GOTDESC 39 /* GOT offset for TLS descriptor. */ |
Definition at line 1442 of file glibc_elf.h.
#define RZ_386_TLS_GOTIE |
Definition at line 1419 of file glibc_elf.h.
#define RZ_386_TLS_IE |
Definition at line 1418 of file glibc_elf.h.
#define RZ_386_TLS_IE_32 |
Definition at line 1436 of file glibc_elf.h.
#define RZ_386_TLS_LDM |
Definition at line 1422 of file glibc_elf.h.
#define RZ_386_TLS_LDM_32 |
Definition at line 1431 of file glibc_elf.h.
#define RZ_386_TLS_LDM_CALL |
Definition at line 1433 of file glibc_elf.h.
Definition at line 1434 of file glibc_elf.h.
Definition at line 1432 of file glibc_elf.h.
Definition at line 1435 of file glibc_elf.h.
#define RZ_386_TLS_LE |
Definition at line 1420 of file glibc_elf.h.
#define RZ_386_TLS_LE_32 |
Definition at line 1437 of file glibc_elf.h.
Definition at line 1417 of file glibc_elf.h.
Definition at line 1440 of file glibc_elf.h.
#define RZ_390_12 2 /* Direct 12 bit. */ |
Definition at line 3194 of file glibc_elf.h.
#define RZ_390_16 3 /* Direct 16 bit. */ |
Definition at line 3195 of file glibc_elf.h.
#define RZ_390_20 57 /* Direct 20 bit. */ |
Definition at line 3249 of file glibc_elf.h.
#define RZ_390_32 4 /* Direct 32 bit. */ |
Definition at line 3196 of file glibc_elf.h.
#define RZ_390_64 22 /* Direct 64 bit. */ |
Definition at line 3214 of file glibc_elf.h.
#define RZ_390_8 1 /* Direct 8 bit. */ |
Definition at line 3193 of file glibc_elf.h.
#define RZ_390_COPY 9 /* Copy symbol at runtime. */ |
Definition at line 3201 of file glibc_elf.h.
#define RZ_390_GLOB_DAT 10 /* Create GOT entry. */ |
Definition at line 3202 of file glibc_elf.h.
#define RZ_390_GOT12 6 /* 12 bit GOT offset. */ |
Definition at line 3198 of file glibc_elf.h.
#define RZ_390_GOT16 15 /* 16 bit GOT offset. */ |
Definition at line 3207 of file glibc_elf.h.
#define RZ_390_GOT20 58 /* 20 bit GOT offset. */ |
Definition at line 3250 of file glibc_elf.h.
#define RZ_390_GOT32 7 /* 32 bit GOT offset. */ |
Definition at line 3199 of file glibc_elf.h.
#define RZ_390_GOT64 24 /* 64 bit GOT offset. */ |
Definition at line 3216 of file glibc_elf.h.
Definition at line 3218 of file glibc_elf.h.
Definition at line 3219 of file glibc_elf.h.
Definition at line 3205 of file glibc_elf.h.
Definition at line 3220 of file glibc_elf.h.
Definition at line 3206 of file glibc_elf.h.
Definition at line 3213 of file glibc_elf.h.
Definition at line 3221 of file glibc_elf.h.
Definition at line 3222 of file glibc_elf.h.
Definition at line 3251 of file glibc_elf.h.
Definition at line 3223 of file glibc_elf.h.
Definition at line 3224 of file glibc_elf.h.
Definition at line 3225 of file glibc_elf.h.
#define RZ_390_IRELATIVE 61 /* STT_GNU_IFUNC relocation. */ |
Definition at line 3253 of file glibc_elf.h.
#define RZ_390_JMP_SLOT 11 /* Create PLT entry. */ |
Definition at line 3203 of file glibc_elf.h.
#define RZ_390_NONE 0 /* No reloc. */ |
Definition at line 3192 of file glibc_elf.h.
#define RZ_390_NUM 62 |
Definition at line 3255 of file glibc_elf.h.
#define RZ_390_PC16 16 /* PC relative 16 bit. */ |
Definition at line 3208 of file glibc_elf.h.
Definition at line 3209 of file glibc_elf.h.
#define RZ_390_PC32 5 /* PC relative 32 bit. */ |
Definition at line 3197 of file glibc_elf.h.
Definition at line 3211 of file glibc_elf.h.
#define RZ_390_PC64 23 /* PC relative 64 bit. */ |
Definition at line 3215 of file glibc_elf.h.
Definition at line 3210 of file glibc_elf.h.
Definition at line 3200 of file glibc_elf.h.
Definition at line 3212 of file glibc_elf.h.
Definition at line 3217 of file glibc_elf.h.
Definition at line 3226 of file glibc_elf.h.
Definition at line 3227 of file glibc_elf.h.
Definition at line 3228 of file glibc_elf.h.
#define RZ_390_RELATIVE 12 /* Adjust by program base. */ |
Definition at line 3204 of file glibc_elf.h.
#define RZ_390_TLS_DTPMOD 54 /* ID of module containing symbol. */ |
Definition at line 3246 of file glibc_elf.h.
Definition at line 3247 of file glibc_elf.h.
#define RZ_390_TLS_GD32 |
Definition at line 3232 of file glibc_elf.h.
#define RZ_390_TLS_GD64 |
Definition at line 3233 of file glibc_elf.h.
#define RZ_390_TLS_GDCALL |
Definition at line 3230 of file glibc_elf.h.
#define RZ_390_TLS_GOTIE12 |
Definition at line 3234 of file glibc_elf.h.
#define RZ_390_TLS_GOTIE20 |
Definition at line 3252 of file glibc_elf.h.
#define RZ_390_TLS_GOTIE32 |
Definition at line 3235 of file glibc_elf.h.
#define RZ_390_TLS_GOTIE64 |
Definition at line 3236 of file glibc_elf.h.
#define RZ_390_TLS_IE32 |
Definition at line 3239 of file glibc_elf.h.
#define RZ_390_TLS_IE64 |
Definition at line 3240 of file glibc_elf.h.
#define RZ_390_TLS_IEENT |
Definition at line 3241 of file glibc_elf.h.
#define RZ_390_TLS_LDCALL |
Definition at line 3231 of file glibc_elf.h.
#define RZ_390_TLS_LDM32 |
Definition at line 3237 of file glibc_elf.h.
#define RZ_390_TLS_LDM64 |
Definition at line 3238 of file glibc_elf.h.
#define RZ_390_TLS_LDO32 |
Definition at line 3244 of file glibc_elf.h.
#define RZ_390_TLS_LDO64 |
Definition at line 3245 of file glibc_elf.h.
#define RZ_390_TLS_LE32 |
Definition at line 3242 of file glibc_elf.h.
#define RZ_390_TLS_LE64 |
Definition at line 3243 of file glibc_elf.h.
Definition at line 3229 of file glibc_elf.h.
#define RZ_390_TLS_TPOFF |
Definition at line 3248 of file glibc_elf.h.
#define RZ_68K_16 2 /* Direct 16 bit */ |
Definition at line 1359 of file glibc_elf.h.
#define RZ_68K_32 1 /* Direct 32 bit */ |
Definition at line 1358 of file glibc_elf.h.
#define RZ_68K_8 3 /* Direct 8 bit */ |
Definition at line 1360 of file glibc_elf.h.
#define RZ_68K_COPY 19 /* Copy symbol at runtime */ |
Definition at line 1376 of file glibc_elf.h.
#define RZ_68K_GLOB_DAT 20 /* Create GOT entry */ |
Definition at line 1377 of file glibc_elf.h.
Definition at line 1365 of file glibc_elf.h.
Definition at line 1368 of file glibc_elf.h.
Definition at line 1364 of file glibc_elf.h.
Definition at line 1367 of file glibc_elf.h.
Definition at line 1366 of file glibc_elf.h.
Definition at line 1369 of file glibc_elf.h.
#define RZ_68K_JMP_SLOT 21 /* Create PLT entry */ |
Definition at line 1378 of file glibc_elf.h.
#define RZ_68K_NONE 0 /* No reloc */ |
Definition at line 1357 of file glibc_elf.h.
#define RZ_68K_NUM 43 |
Definition at line 1399 of file glibc_elf.h.
Definition at line 1362 of file glibc_elf.h.
Definition at line 1361 of file glibc_elf.h.
Definition at line 1363 of file glibc_elf.h.
Definition at line 1371 of file glibc_elf.h.
Definition at line 1374 of file glibc_elf.h.
Definition at line 1370 of file glibc_elf.h.
Definition at line 1373 of file glibc_elf.h.
Definition at line 1372 of file glibc_elf.h.
Definition at line 1375 of file glibc_elf.h.
#define RZ_68K_RELATIVE 22 /* Adjust by program base */ |
Definition at line 1379 of file glibc_elf.h.
Definition at line 1395 of file glibc_elf.h.
Definition at line 1396 of file glibc_elf.h.
Definition at line 1381 of file glibc_elf.h.
Definition at line 1380 of file glibc_elf.h.
Definition at line 1382 of file glibc_elf.h.
Definition at line 1390 of file glibc_elf.h.
Definition at line 1389 of file glibc_elf.h.
Definition at line 1391 of file glibc_elf.h.
Definition at line 1384 of file glibc_elf.h.
Definition at line 1383 of file glibc_elf.h.
Definition at line 1385 of file glibc_elf.h.
Definition at line 1387 of file glibc_elf.h.
Definition at line 1386 of file glibc_elf.h.
Definition at line 1388 of file glibc_elf.h.
#define RZ_68K_TLS_LE16 |
Definition at line 1393 of file glibc_elf.h.
#define RZ_68K_TLS_LE32 |
Definition at line 1392 of file glibc_elf.h.
#define RZ_68K_TLS_LE8 |
Definition at line 1394 of file glibc_elf.h.
Definition at line 1397 of file glibc_elf.h.
#define RZ_AARCH64_ABS16 259 /* Direct 16-bit. */ |
Definition at line 2671 of file glibc_elf.h.
#define RZ_AARCH64_ABS32 258 /* Direct 32 bit. */ |
Definition at line 2670 of file glibc_elf.h.
#define RZ_AARCH64_ABS64 257 /* Direct 64 bit. */ |
Definition at line 2669 of file glibc_elf.h.
Definition at line 2689 of file glibc_elf.h.
#define RZ_AARCH64_ADR_GOT_PAGE 311 /* P-page-rel. GOT off. ADRP 32:12. */ |
Definition at line 2717 of file glibc_elf.h.
Definition at line 2686 of file glibc_elf.h.
#define RZ_AARCH64_ADR_PREL_PG_HI21 275 /* Page-rel. ADRP imm. from 32:12. */ |
Definition at line 2687 of file glibc_elf.h.
#define RZ_AARCH64_ADR_PREL_PG_HI21_NC 276 /* Likewise; no overflow check. */ |
Definition at line 2688 of file glibc_elf.h.
#define RZ_AARCH64_CALL26 283 /* Likewise for CALL. */ |
Definition at line 2694 of file glibc_elf.h.
Definition at line 2692 of file glibc_elf.h.
#define RZ_AARCH64_COPY 1024 /* Copy symbol at runtime. */ |
Definition at line 2782 of file glibc_elf.h.
#define RZ_AARCH64_GLOB_DAT 1025 /* Create GOT entry. */ |
Definition at line 2783 of file glibc_elf.h.
Definition at line 2715 of file glibc_elf.h.
#define RZ_AARCH64_GOTREL32 308 /* GOT-relative 32-bit. */ |
Definition at line 2714 of file glibc_elf.h.
#define RZ_AARCH64_GOTREL64 307 /* GOT-relative 64-bit. */ |
Definition at line 2713 of file glibc_elf.h.
#define RZ_AARCH64_IRELATIVE 1032 /* STT_GNU_IFUNC relocation. */ |
Definition at line 2790 of file glibc_elf.h.
Definition at line 2693 of file glibc_elf.h.
#define RZ_AARCH64_JUMP_SLOT 1026 /* Create PLT entry. */ |
Definition at line 2784 of file glibc_elf.h.
#define RZ_AARCH64_LD64_GOT_LO12_NC 312 /* Dir. GOT off. LD/ST imm. 11:3. */ |
Definition at line 2718 of file glibc_elf.h.
#define RZ_AARCH64_LD64_GOTOFF_LO15 310 /* GOT-rel. off. LD/ST imm. 14:3. */ |
Definition at line 2716 of file glibc_elf.h.
#define RZ_AARCH64_LD64_GOTPAGE_LO15 313 /* GOT-page-rel. GOT off. LD/ST 14:3 */ |
Definition at line 2719 of file glibc_elf.h.
Definition at line 2685 of file glibc_elf.h.
Definition at line 2705 of file glibc_elf.h.
Definition at line 2695 of file glibc_elf.h.
#define RZ_AARCH64_LDST32_ABS_LO12_NC 285 /* Likewise for bits 11:2. */ |
Definition at line 2696 of file glibc_elf.h.
#define RZ_AARCH64_LDST64_ABS_LO12_NC 286 /* Likewise for bits 11:3. */ |
Definition at line 2697 of file glibc_elf.h.
#define RZ_AARCH64_LDST8_ABS_LO12_NC 278 /* Likewise for LD/ST; no check. */ |
Definition at line 2690 of file glibc_elf.h.
Definition at line 2706 of file glibc_elf.h.
#define RZ_AARCH64_MOVW_GOTOFF_G0_NC 301 /* Likewise for MOVK; no check. */ |
Definition at line 2707 of file glibc_elf.h.
Definition at line 2708 of file glibc_elf.h.
#define RZ_AARCH64_MOVW_GOTOFF_G1_NC 303 /* Likewise for MOVK; no check. */ |
Definition at line 2709 of file glibc_elf.h.
Definition at line 2710 of file glibc_elf.h.
#define RZ_AARCH64_MOVW_GOTOFF_G2_NC 305 /* Likewise for MOVK; no check. */ |
Definition at line 2711 of file glibc_elf.h.
Definition at line 2712 of file glibc_elf.h.
Definition at line 2698 of file glibc_elf.h.
#define RZ_AARCH64_MOVW_PREL_G0_NC 288 /* Likewise for MOVK; no check. */ |
Definition at line 2699 of file glibc_elf.h.
Definition at line 2700 of file glibc_elf.h.
#define RZ_AARCH64_MOVW_PREL_G1_NC 290 /* Likewise for MOVK; no check. */ |
Definition at line 2701 of file glibc_elf.h.
Definition at line 2702 of file glibc_elf.h.
#define RZ_AARCH64_MOVW_PREL_G2_NC 292 /* Likewise for MOVK; no check. */ |
Definition at line 2703 of file glibc_elf.h.
Definition at line 2704 of file glibc_elf.h.
Definition at line 2682 of file glibc_elf.h.
Definition at line 2683 of file glibc_elf.h.
Definition at line 2684 of file glibc_elf.h.
Definition at line 2675 of file glibc_elf.h.
#define RZ_AARCH64_MOVW_UABS_G0_NC 264 /* Likewise for MOVK; no check. */ |
Definition at line 2676 of file glibc_elf.h.
Definition at line 2677 of file glibc_elf.h.
#define RZ_AARCH64_MOVW_UABS_G1_NC 266 /* Likewise for MOVK; no check. */ |
Definition at line 2678 of file glibc_elf.h.
Definition at line 2679 of file glibc_elf.h.
#define RZ_AARCH64_MOVW_UABS_G2_NC 268 /* Likewise for MOVK; no check. */ |
Definition at line 2680 of file glibc_elf.h.
Definition at line 2681 of file glibc_elf.h.
#define RZ_AARCH64_NONE 0 /* No relocation. */ |
Definition at line 2654 of file glibc_elf.h.
#define RZ_AARCH64_P32_ABS32 1 /* Direct 32 bit. */ |
Definition at line 2657 of file glibc_elf.h.
#define RZ_AARCH64_P32_COPY 180 /* Copy symbol at runtime. */ |
Definition at line 2658 of file glibc_elf.h.
#define RZ_AARCH64_P32_GLOB_DAT 181 /* Create GOT entry. */ |
Definition at line 2659 of file glibc_elf.h.
#define RZ_AARCH64_P32_IRELATIVE 188 /* STT_GNU_IFUNC relocation. */ |
Definition at line 2666 of file glibc_elf.h.
#define RZ_AARCH64_P32_JUMP_SLOT 182 /* Create PLT entry. */ |
Definition at line 2660 of file glibc_elf.h.
#define RZ_AARCH64_P32_RELATIVE 183 /* Adjust by program base. */ |
Definition at line 2661 of file glibc_elf.h.
#define RZ_AARCH64_P32_TLS_DTPMOD 184 /* Module number, 32 bit. */ |
Definition at line 2662 of file glibc_elf.h.
#define RZ_AARCH64_P32_TLS_DTPREL 185 /* Module-relative offset, 32 bit. */ |
Definition at line 2663 of file glibc_elf.h.
#define RZ_AARCH64_P32_TLS_TPREL 186 /* TP-relative offset, 32 bit. */ |
Definition at line 2664 of file glibc_elf.h.
#define RZ_AARCH64_P32_TLSDESC 187 /* TLS Descriptor. */ |
Definition at line 2665 of file glibc_elf.h.
#define RZ_AARCH64_PREL16 262 /* PC-relative 16-bit. */ |
Definition at line 2674 of file glibc_elf.h.
#define RZ_AARCH64_PREL32 261 /* PC-relative 32-bit. */ |
Definition at line 2673 of file glibc_elf.h.
#define RZ_AARCH64_PREL64 260 /* PC-relative 64-bit. */ |
Definition at line 2672 of file glibc_elf.h.
#define RZ_AARCH64_RELATIVE 1027 /* Adjust by program base. */ |
Definition at line 2785 of file glibc_elf.h.
#define RZ_AARCH64_TLS_DTPMOD 1028 /* Module number, 64 bit. */ |
Definition at line 2786 of file glibc_elf.h.
#define RZ_AARCH64_TLS_DTPREL 1029 /* Module-relative offset, 64 bit. */ |
Definition at line 2787 of file glibc_elf.h.
#define RZ_AARCH64_TLS_TPREL 1030 /* TP-relative offset, 64 bit. */ |
Definition at line 2788 of file glibc_elf.h.
#define RZ_AARCH64_TLSDESC 1031 /* TLS Descriptor. */ |
Definition at line 2789 of file glibc_elf.h.
#define RZ_AARCH64_TLSDESC_ADD 568 /* Relax ADD. */ |
Definition at line 2776 of file glibc_elf.h.
Definition at line 2772 of file glibc_elf.h.
#define RZ_AARCH64_TLSDESC_ADR_PAGE21 562 /* Page-rel. ADRP imm. 32:12. */ |
Definition at line 2770 of file glibc_elf.h.
#define RZ_AARCH64_TLSDESC_ADR_PREL21 561 /* PC-rel. ADR immediate 20:0. */ |
Definition at line 2769 of file glibc_elf.h.
#define RZ_AARCH64_TLSDESC_CALL 569 /* Relax BLR. */ |
Definition at line 2777 of file glibc_elf.h.
Definition at line 2771 of file glibc_elf.h.
Definition at line 2768 of file glibc_elf.h.
#define RZ_AARCH64_TLSDESC_LDR 567 /* Relax LDR. */ |
Definition at line 2775 of file glibc_elf.h.
#define RZ_AARCH64_TLSDESC_OFF_G0_NC 566 /* GOT-rel. MOVK imm. 15:0; no ck. */ |
Definition at line 2774 of file glibc_elf.h.
Definition at line 2773 of file glibc_elf.h.
Definition at line 2722 of file glibc_elf.h.
#define RZ_AARCH64_TLSGD_ADR_PAGE21 513 /* page-rel. ADRP imm. 32:12. */ |
Definition at line 2721 of file glibc_elf.h.
#define RZ_AARCH64_TLSGD_ADR_PREL21 512 /* PC-relative ADR imm. 20:0. */ |
Definition at line 2720 of file glibc_elf.h.
#define RZ_AARCH64_TLSGD_MOVW_G0_NC 516 /* GOT-rel. MOVK imm. 15:0. */ |
Definition at line 2724 of file glibc_elf.h.
Definition at line 2723 of file glibc_elf.h.
#define RZ_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21 541 /* Page-rel. ADRP 32:12. */ |
Definition at line 2749 of file glibc_elf.h.
#define RZ_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC 542 /* Direct LD off. 11:3. */ |
Definition at line 2750 of file glibc_elf.h.
Definition at line 2751 of file glibc_elf.h.
#define RZ_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC 540 /* GOT-rel. MOVK 15:0. */ |
Definition at line 2748 of file glibc_elf.h.
Definition at line 2747 of file glibc_elf.h.
Definition at line 2736 of file glibc_elf.h.
Definition at line 2737 of file glibc_elf.h.
#define RZ_AARCH64_TLSLD_ADD_DTPREL_LO12_NC 530 /* Likewise; no ovfl. check. */ |
Definition at line 2738 of file glibc_elf.h.
Definition at line 2727 of file glibc_elf.h.
Definition at line 2726 of file glibc_elf.h.
Definition at line 2725 of file glibc_elf.h.
Definition at line 2730 of file glibc_elf.h.
#define RZ_AARCH64_TLSLD_LDST128_DTPREL_LO12 572 /* DTP-rel. LD/ST imm. 11:4. */ |
Definition at line 2780 of file glibc_elf.h.
#define RZ_AARCH64_TLSLD_LDST128_DTPREL_LO12_NC 573 /* Likewise; no check. */ |
Definition at line 2781 of file glibc_elf.h.
#define RZ_AARCH64_TLSLD_LDST16_DTPREL_LO12 533 /* DTP-rel. LD/ST imm. 11:1. */ |
Definition at line 2741 of file glibc_elf.h.
#define RZ_AARCH64_TLSLD_LDST16_DTPREL_LO12_NC 534 /* Likewise; no check. */ |
Definition at line 2742 of file glibc_elf.h.
#define RZ_AARCH64_TLSLD_LDST32_DTPREL_LO12 535 /* DTP-rel. LD/ST imm. 11:2. */ |
Definition at line 2743 of file glibc_elf.h.
#define RZ_AARCH64_TLSLD_LDST32_DTPREL_LO12_NC 536 /* Likewise; no check. */ |
Definition at line 2744 of file glibc_elf.h.
#define RZ_AARCH64_TLSLD_LDST64_DTPREL_LO12 537 /* DTP-rel. LD/ST imm. 11:3. */ |
Definition at line 2745 of file glibc_elf.h.
#define RZ_AARCH64_TLSLD_LDST64_DTPREL_LO12_NC 538 /* Likewise; no check. */ |
Definition at line 2746 of file glibc_elf.h.
#define RZ_AARCH64_TLSLD_LDST8_DTPREL_LO12 531 /* DTP-rel. LD/ST imm. 11:0. */ |
Definition at line 2739 of file glibc_elf.h.
#define RZ_AARCH64_TLSLD_LDST8_DTPREL_LO12_NC 532 /* Likewise; no check. */ |
Definition at line 2740 of file glibc_elf.h.
Definition at line 2734 of file glibc_elf.h.
#define RZ_AARCH64_TLSLD_MOVW_DTPREL_G0_NC 527 /* Likewise; MOVK; no check. */ |
Definition at line 2735 of file glibc_elf.h.
Definition at line 2732 of file glibc_elf.h.
#define RZ_AARCH64_TLSLD_MOVW_DTPREL_G1_NC 525 /* Likewise; MOVK; no check. */ |
Definition at line 2733 of file glibc_elf.h.
Definition at line 2731 of file glibc_elf.h.
Definition at line 2729 of file glibc_elf.h.
Definition at line 2728 of file glibc_elf.h.
#define RZ_AARCH64_TLSLE_ADD_TPREL_HI12 549 /* TP-rel. ADD imm. 23:12. */ |
Definition at line 2757 of file glibc_elf.h.
#define RZ_AARCH64_TLSLE_ADD_TPREL_LO12 550 /* TP-rel. ADD imm. 11:0. */ |
Definition at line 2758 of file glibc_elf.h.
#define RZ_AARCH64_TLSLE_ADD_TPREL_LO12_NC 551 /* Likewise; no ovfl. check. */ |
Definition at line 2759 of file glibc_elf.h.
#define RZ_AARCH64_TLSLE_LDST128_TPREL_LO12 570 /* TP-rel. LD/ST off. 11:4. */ |
Definition at line 2778 of file glibc_elf.h.
#define RZ_AARCH64_TLSLE_LDST128_TPREL_LO12_NC 571 /* Likewise; no check. */ |
Definition at line 2779 of file glibc_elf.h.
#define RZ_AARCH64_TLSLE_LDST16_TPREL_LO12 554 /* TP-rel. LD/ST off. 11:1. */ |
Definition at line 2762 of file glibc_elf.h.
#define RZ_AARCH64_TLSLE_LDST16_TPREL_LO12_NC 555 /* Likewise; no check. */ |
Definition at line 2763 of file glibc_elf.h.
#define RZ_AARCH64_TLSLE_LDST32_TPREL_LO12 556 /* TP-rel. LD/ST off. 11:2. */ |
Definition at line 2764 of file glibc_elf.h.
#define RZ_AARCH64_TLSLE_LDST32_TPREL_LO12_NC 557 /* Likewise; no check. */ |
Definition at line 2765 of file glibc_elf.h.
#define RZ_AARCH64_TLSLE_LDST64_TPREL_LO12 558 /* TP-rel. LD/ST off. 11:3. */ |
Definition at line 2766 of file glibc_elf.h.
#define RZ_AARCH64_TLSLE_LDST64_TPREL_LO12_NC 559 /* Likewise; no check. */ |
Definition at line 2767 of file glibc_elf.h.
#define RZ_AARCH64_TLSLE_LDST8_TPREL_LO12 552 /* TP-rel. LD/ST off. 11:0. */ |
Definition at line 2760 of file glibc_elf.h.
#define RZ_AARCH64_TLSLE_LDST8_TPREL_LO12_NC 553 /* Likewise; no ovfl. check. */ |
Definition at line 2761 of file glibc_elf.h.
Definition at line 2755 of file glibc_elf.h.
#define RZ_AARCH64_TLSLE_MOVW_TPREL_G0_NC 548 /* Likewise; MOVK; no check. */ |
Definition at line 2756 of file glibc_elf.h.
Definition at line 2753 of file glibc_elf.h.
#define RZ_AARCH64_TLSLE_MOVW_TPREL_G1_NC 546 /* Likewise; MOVK; no check. */ |
Definition at line 2754 of file glibc_elf.h.
Definition at line 2752 of file glibc_elf.h.
Definition at line 2691 of file glibc_elf.h.
#define RZ_AC_SECTOFF_S9 0x26 |
Definition at line 3907 of file glibc_elf.h.
#define RZ_AC_SECTOFF_S9_1 0x27 |
Definition at line 3908 of file glibc_elf.h.
#define RZ_AC_SECTOFF_S9_2 0x28 |
Definition at line 3909 of file glibc_elf.h.
#define RZ_AC_SECTOFF_U8 0x23 |
Definition at line 3904 of file glibc_elf.h.
#define RZ_AC_SECTOFF_U8_1 0x24 |
Definition at line 3905 of file glibc_elf.h.
#define RZ_AC_SECTOFF_U8_2 0x25 |
Definition at line 3906 of file glibc_elf.h.
Definition at line 2269 of file glibc_elf.h.
#define RZ_ALPHA_COPY 24 /* Copy symbol at runtime */ |
Definition at line 2277 of file glibc_elf.h.
#define RZ_ALPHA_DTPMOD64 31 |
Definition at line 2284 of file glibc_elf.h.
#define RZ_ALPHA_DTPREL16 36 |
Definition at line 2289 of file glibc_elf.h.
#define RZ_ALPHA_DTPREL64 33 |
Definition at line 2286 of file glibc_elf.h.
#define RZ_ALPHA_DTPRELHI 34 |
Definition at line 2287 of file glibc_elf.h.
#define RZ_ALPHA_DTPRELLO 35 |
Definition at line 2288 of file glibc_elf.h.
#define RZ_ALPHA_GLOB_DAT 25 /* Create GOT entry */ |
Definition at line 2278 of file glibc_elf.h.
#define RZ_ALPHA_GOTDTPREL 32 |
Definition at line 2285 of file glibc_elf.h.
#define RZ_ALPHA_GOTTPREL 37 |
Definition at line 2290 of file glibc_elf.h.
#define RZ_ALPHA_GPDISP 6 /* Add displacement to GP */ |
Definition at line 2268 of file glibc_elf.h.
#define RZ_ALPHA_GPREL16 19 /* GP relative 16 bit */ |
Definition at line 2276 of file glibc_elf.h.
#define RZ_ALPHA_GPREL32 3 /* GP relative 32 bit */ |
Definition at line 2265 of file glibc_elf.h.
Definition at line 2274 of file glibc_elf.h.
Definition at line 2275 of file glibc_elf.h.
Definition at line 2270 of file glibc_elf.h.
#define RZ_ALPHA_JMP_SLOT 26 /* Create PLT entry */ |
Definition at line 2279 of file glibc_elf.h.
Definition at line 2266 of file glibc_elf.h.
#define RZ_ALPHA_LITUSE 5 /* Optimization hint for LITERAL */ |
Definition at line 2267 of file glibc_elf.h.
#define RZ_ALPHA_NONE 0 /* No reloc */ |
Definition at line 2262 of file glibc_elf.h.
#define RZ_ALPHA_NUM 46 |
Definition at line 2296 of file glibc_elf.h.
#define RZ_ALPHA_REFLONG 1 /* Direct 32 bit */ |
Definition at line 2263 of file glibc_elf.h.
#define RZ_ALPHA_REFQUAD 2 /* Direct 64 bit */ |
Definition at line 2264 of file glibc_elf.h.
#define RZ_ALPHA_RELATIVE 27 /* Adjust by program base */ |
Definition at line 2280 of file glibc_elf.h.
Definition at line 2271 of file glibc_elf.h.
Definition at line 2272 of file glibc_elf.h.
Definition at line 2273 of file glibc_elf.h.
#define RZ_ALPHA_TLS_GD_HI 28 |
Definition at line 2281 of file glibc_elf.h.
#define RZ_ALPHA_TLS_LDM 30 |
Definition at line 2283 of file glibc_elf.h.
#define RZ_ALPHA_TLSGD 29 |
Definition at line 2282 of file glibc_elf.h.
#define RZ_ALPHA_TPREL16 41 |
Definition at line 2294 of file glibc_elf.h.
#define RZ_ALPHA_TPREL64 38 |
Definition at line 2291 of file glibc_elf.h.
#define RZ_ALPHA_TPRELHI 39 |
Definition at line 2292 of file glibc_elf.h.
#define RZ_ALPHA_TPRELLO 40 |
Definition at line 2293 of file glibc_elf.h.
#define RZ_ARC_16 0x2 |
Definition at line 3871 of file glibc_elf.h.
#define RZ_ARC_24 0x3 |
Definition at line 3872 of file glibc_elf.h.
#define RZ_ARC_32 0x4 |
Definition at line 3873 of file glibc_elf.h.
#define RZ_ARC_32_ME 0x1B |
Definition at line 3896 of file glibc_elf.h.
#define RZ_ARC_8 0x1 |
Definition at line 3870 of file glibc_elf.h.
#define RZ_ARC_B22_PCREL 0x6 |
Definition at line 3875 of file glibc_elf.h.
#define RZ_ARC_B26 0x5 |
Definition at line 3874 of file glibc_elf.h.
#define RZ_ARC_COPY 0x35 |
Definition at line 3917 of file glibc_elf.h.
#define RZ_ARC_GLOB_DAT 0x36 |
Definition at line 3918 of file glibc_elf.h.
#define RZ_ARC_GOT32 0x3B |
Definition at line 3923 of file glibc_elf.h.
#define RZ_ARC_GOTOFF 0x39 |
Definition at line 3921 of file glibc_elf.h.
#define RZ_ARC_GOTPC 0x3A |
Definition at line 3922 of file glibc_elf.h.
#define RZ_ARC_GOTPC32 0x33 |
Definition at line 3915 of file glibc_elf.h.
#define RZ_ARC_H30 0x7 |
Definition at line 3876 of file glibc_elf.h.
#define RZ_ARC_H30_ME 0x20 |
Definition at line 3901 of file glibc_elf.h.
#define RZ_ARC_JUMP_SLOT 0x37 |
Definition at line 3919 of file glibc_elf.h.
#define RZ_ARC_N16 0x9 |
Definition at line 3878 of file glibc_elf.h.
#define RZ_ARC_N24 0xA |
Definition at line 3879 of file glibc_elf.h.
#define RZ_ARC_N32 0xB |
Definition at line 3880 of file glibc_elf.h.
#define RZ_ARC_N32_ME 0x1C |
Definition at line 3897 of file glibc_elf.h.
#define RZ_ARC_N8 0x8 |
Definition at line 3877 of file glibc_elf.h.
#define RZ_ARC_NONE 0x0 |
Definition at line 3869 of file glibc_elf.h.
#define RZ_ARC_PC32 0x32 |
Definition at line 3914 of file glibc_elf.h.
#define RZ_ARC_PLT32 0x34 |
Definition at line 3916 of file glibc_elf.h.
#define RZ_ARC_RELATIVE 0x38 |
Definition at line 3920 of file glibc_elf.h.
#define RZ_ARC_S13_PCREL 0x19 |
Definition at line 3894 of file glibc_elf.h.
#define RZ_ARC_S21H_PCREL 0xE |
Definition at line 3883 of file glibc_elf.h.
#define RZ_ARC_S21W_PCREL 0xF |
Definition at line 3884 of file glibc_elf.h.
#define RZ_ARC_S25H_PCREL 0x10 |
Definition at line 3885 of file glibc_elf.h.
#define RZ_ARC_S25W_PCREL 0x11 |
Definition at line 3886 of file glibc_elf.h.
#define RZ_ARC_SDA 0xC |
Definition at line 3881 of file glibc_elf.h.
#define RZ_ARC_SDA16_LD 0x16 |
Definition at line 3891 of file glibc_elf.h.
#define RZ_ARC_SDA16_LD1 0x17 |
Definition at line 3892 of file glibc_elf.h.
#define RZ_ARC_SDA16_LD2 0x18 |
Definition at line 3893 of file glibc_elf.h.
#define RZ_ARC_SDA32 0x12 |
Definition at line 3887 of file glibc_elf.h.
#define RZ_ARC_SDA32_ME 0x1E |
Definition at line 3899 of file glibc_elf.h.
#define RZ_ARC_SDA_LDST 0x13 |
Definition at line 3888 of file glibc_elf.h.
#define RZ_ARC_SDA_LDST1 0x14 |
Definition at line 3889 of file glibc_elf.h.
#define RZ_ARC_SDA_LDST2 0x15 |
Definition at line 3890 of file glibc_elf.h.
#define RZ_ARC_SECTOFF 0xD |
Definition at line 3882 of file glibc_elf.h.
#define RZ_ARC_SECTOFF_1 0x2B |
Definition at line 3912 of file glibc_elf.h.
#define RZ_ARC_SECTOFF_2 0x2C |
Definition at line 3913 of file glibc_elf.h.
#define RZ_ARC_SECTOFF_ME 0x1D |
Definition at line 3898 of file glibc_elf.h.
#define RZ_ARC_SECTOFF_ME_1 0x29 |
Definition at line 3910 of file glibc_elf.h.
#define RZ_ARC_SECTOFF_ME_2 0x2A |
Definition at line 3911 of file glibc_elf.h.
#define RZ_ARC_SECTOFF_S9 0x22 |
Definition at line 3903 of file glibc_elf.h.
#define RZ_ARC_SECTOFF_U8 0x21 |
Definition at line 3902 of file glibc_elf.h.
#define RZ_ARC_TLS_DTPMOD 0x42 |
Definition at line 3925 of file glibc_elf.h.
#define RZ_ARC_TLS_DTPOFF 0x43 |
Definition at line 3926 of file glibc_elf.h.
#define RZ_ARC_TLS_DTPOFF_S9 0x4a |
Definition at line 3932 of file glibc_elf.h.
#define RZ_ARC_TLS_GD_CALL 0x47 |
Definition at line 3930 of file glibc_elf.h.
#define RZ_ARC_TLS_GD_GOT 0x45 |
Definition at line 3928 of file glibc_elf.h.
#define RZ_ARC_TLS_GD_LD 0x46 |
Definition at line 3929 of file glibc_elf.h.
#define RZ_ARC_TLS_IE_GOT 0x48 |
Definition at line 3931 of file glibc_elf.h.
#define RZ_ARC_TLS_LE_32 0x4b |
Definition at line 3934 of file glibc_elf.h.
#define RZ_ARC_TLS_LE_S9 0x4a |
Definition at line 3933 of file glibc_elf.h.
#define RZ_ARC_TLS_TPOFF 0x44 |
Definition at line 3927 of file glibc_elf.h.
#define RZ_ARC_W 0x1A |
Definition at line 3895 of file glibc_elf.h.
#define RZ_ARC_W_ME 0x1F |
Definition at line 3900 of file glibc_elf.h.
#define RZ_ARM_ABS12 6 /* Direct 12 bit */ |
Definition at line 2807 of file glibc_elf.h.
#define RZ_ARM_ABS16 5 /* Direct 16 bit */ |
Definition at line 2806 of file glibc_elf.h.
#define RZ_ARM_ABS32 2 /* Direct 32 bit */ |
Definition at line 2803 of file glibc_elf.h.
#define RZ_ARM_ABS32_NOI 55 /* Direct 32-bit. */ |
Definition at line 2857 of file glibc_elf.h.
#define RZ_ARM_ABS8 8 /* Direct 8 bit */ |
Definition at line 2809 of file glibc_elf.h.
Definition at line 2860 of file glibc_elf.h.
Definition at line 2859 of file glibc_elf.h.
Definition at line 2862 of file glibc_elf.h.
Definition at line 2861 of file glibc_elf.h.
Definition at line 2863 of file glibc_elf.h.
#define RZ_ARM_ALU_PCREL_15_8 33 /* Obsolete. */ |
Definition at line 2835 of file glibc_elf.h.
#define RZ_ARM_ALU_PCREL_23_15 34 /* Obsolete. */ |
Definition at line 2836 of file glibc_elf.h.
#define RZ_ARM_ALU_PCREL_7_0 32 /* Obsolete. */ |
Definition at line 2834 of file glibc_elf.h.
Definition at line 2873 of file glibc_elf.h.
Definition at line 2872 of file glibc_elf.h.
Definition at line 2875 of file glibc_elf.h.
Definition at line 2874 of file glibc_elf.h.
Definition at line 2876 of file glibc_elf.h.
#define RZ_ARM_ALU_SBREL_19_12 36 /* Deprecated, prog. base relative. */ |
Definition at line 2838 of file glibc_elf.h.
#define RZ_ARM_ALU_SBREL_27_20 37 /* Deprecated, prog. base relative. */ |
Definition at line 2839 of file glibc_elf.h.
#define RZ_ARM_AMP_VCALL9 12 |
Definition at line 2813 of file glibc_elf.h.
#define RZ_ARM_BASE_ABS 31 /* Adjust by program base. */ |
Definition at line 2833 of file glibc_elf.h.
Definition at line 2830 of file glibc_elf.h.
#define RZ_ARM_COPY 20 /* Copy symbol at runtime */ |
Definition at line 2822 of file glibc_elf.h.
#define RZ_ARM_GLOB_DAT 21 /* Create GOT entry */ |
Definition at line 2823 of file glibc_elf.h.
#define RZ_ARM_GNU_VTENTRY 100 |
Definition at line 2902 of file glibc_elf.h.
#define RZ_ARM_GNU_VTINHERIT 101 |
Definition at line 2903 of file glibc_elf.h.
Definition at line 2828 of file glibc_elf.h.
#define RZ_ARM_GOT_ABS 95 /* GOT entry. */ |
Definition at line 2897 of file glibc_elf.h.
#define RZ_ARM_GOT_BREL12 |
Definition at line 2899 of file glibc_elf.h.
#define RZ_ARM_GOT_PREL 96 /* PC relative GOT entry. */ |
Definition at line 2898 of file glibc_elf.h.
Definition at line 2826 of file glibc_elf.h.
#define RZ_ARM_GOTOFF12 |
Definition at line 2900 of file glibc_elf.h.
Definition at line 2827 of file glibc_elf.h.
#define RZ_ARM_GOTRELAX 99 |
Definition at line 2901 of file glibc_elf.h.
#define RZ_ARM_IRELATIVE 160 |
Definition at line 2919 of file glibc_elf.h.
#define RZ_ARM_JUMP24 |
Definition at line 2831 of file glibc_elf.h.
#define RZ_ARM_JUMP_SLOT 22 /* Create PLT entry */ |
Definition at line 2824 of file glibc_elf.h.
#define RZ_ARM_LDC_PC_G0 67 /* PC relative (LDC, STC). */ |
Definition at line 2869 of file glibc_elf.h.
#define RZ_ARM_LDC_PC_G1 68 /* PC relative (LDC, STC). */ |
Definition at line 2870 of file glibc_elf.h.
#define RZ_ARM_LDC_PC_G2 69 /* PC relative (LDC, STC). */ |
Definition at line 2871 of file glibc_elf.h.
#define RZ_ARM_LDC_SB_G0 81 /* Program base relative (LDC,STC). */ |
Definition at line 2883 of file glibc_elf.h.
#define RZ_ARM_LDC_SB_G1 82 /* Program base relative (LDC,STC). */ |
Definition at line 2884 of file glibc_elf.h.
#define RZ_ARM_LDC_SB_G2 83 /* Program base relative (LDC,STC). */ |
Definition at line 2885 of file glibc_elf.h.
Definition at line 2864 of file glibc_elf.h.
Definition at line 2865 of file glibc_elf.h.
#define RZ_ARM_LDR_SB_G0 |
Definition at line 2877 of file glibc_elf.h.
#define RZ_ARM_LDR_SB_G1 |
Definition at line 2878 of file glibc_elf.h.
#define RZ_ARM_LDR_SB_G2 |
Definition at line 2879 of file glibc_elf.h.
#define RZ_ARM_LDR_SBREL_11_0 35 /* Deprecated, prog. base relative. */ |
Definition at line 2837 of file glibc_elf.h.
#define RZ_ARM_LDRS_PC_G0 |
Definition at line 2866 of file glibc_elf.h.
#define RZ_ARM_LDRS_PC_G1 |
Definition at line 2867 of file glibc_elf.h.
#define RZ_ARM_LDRS_PC_G2 |
Definition at line 2868 of file glibc_elf.h.
#define RZ_ARM_LDRS_SB_G0 |
Definition at line 2880 of file glibc_elf.h.
#define RZ_ARM_LDRS_SB_G1 |
Definition at line 2881 of file glibc_elf.h.
#define RZ_ARM_LDRS_SB_G2 |
Definition at line 2882 of file glibc_elf.h.
#define RZ_ARM_ME_TOO 128 /* Obsolete. */ |
Definition at line 2914 of file glibc_elf.h.
#define RZ_ARM_MOVT_ABS 44 /* Direct high 16-bit (MOVT). */ |
Definition at line 2846 of file glibc_elf.h.
#define RZ_ARM_MOVT_BREL |
Definition at line 2887 of file glibc_elf.h.
#define RZ_ARM_MOVT_PREL 46 /* PC relative (MOVT). */ |
Definition at line 2848 of file glibc_elf.h.
#define RZ_ARM_MOVW_ABS_NC 43 /* Direct 16-bit (MOVW). */ |
Definition at line 2845 of file glibc_elf.h.
#define RZ_ARM_MOVW_BREL |
Definition at line 2888 of file glibc_elf.h.
#define RZ_ARM_MOVW_BREL_NC |
Definition at line 2886 of file glibc_elf.h.
Definition at line 2847 of file glibc_elf.h.
#define RZ_ARM_NONE 0 /* No reloc */ |
Definition at line 2801 of file glibc_elf.h.
#define RZ_ARM_NUM 256 |
Definition at line 2928 of file glibc_elf.h.
#define RZ_ARM_PC13 4 |
Definition at line 2805 of file glibc_elf.h.
#define RZ_ARM_PC24 |
Definition at line 2802 of file glibc_elf.h.
#define RZ_ARM_PLT32 27 /* Deprecated, 32 bit PLT address. */ |
Definition at line 2829 of file glibc_elf.h.
#define RZ_ARM_PLT32_ABS 94 |
Definition at line 2896 of file glibc_elf.h.
Definition at line 2844 of file glibc_elf.h.
#define RZ_ARM_RABS22 253 |
Definition at line 2924 of file glibc_elf.h.
#define RZ_ARM_RBASE 255 |
Definition at line 2926 of file glibc_elf.h.
Definition at line 2804 of file glibc_elf.h.
#define RZ_ARM_REL32_NOI 56 /* PC relative 32-bit. */ |
Definition at line 2858 of file glibc_elf.h.
#define RZ_ARM_RELATIVE 23 /* Adjust by program base */ |
Definition at line 2825 of file glibc_elf.h.
#define RZ_ARM_RPC24 254 |
Definition at line 2925 of file glibc_elf.h.
#define RZ_ARM_RREL32 252 |
Definition at line 2923 of file glibc_elf.h.
#define RZ_ARM_RSBREL32 250 |
Definition at line 2921 of file glibc_elf.h.
#define RZ_ARM_RXPC25 249 |
Definition at line 2920 of file glibc_elf.h.
#define RZ_ARM_SBREL31 39 /* Program base relative. */ |
Definition at line 2841 of file glibc_elf.h.
#define RZ_ARM_SBREL32 9 |
Definition at line 2810 of file glibc_elf.h.
#define RZ_ARM_SWI24 13 /* Obsolete static relocation. */ |
Definition at line 2814 of file glibc_elf.h.
#define RZ_ARM_TARGET1 38 |
Definition at line 2840 of file glibc_elf.h.
#define RZ_ARM_TARGET2 41 |
Definition at line 2843 of file glibc_elf.h.
#define RZ_ARM_THM_ABS5 7 /* Direct & 0x7C (LDR, STR). */ |
Definition at line 2808 of file glibc_elf.h.
#define RZ_ARM_THM_ALU_PREL_11_0 |
Definition at line 2855 of file glibc_elf.h.
#define RZ_ARM_THM_GOT_BREL12 |
Definition at line 2918 of file glibc_elf.h.
#define RZ_ARM_THM_JUMP19 |
Definition at line 2853 of file glibc_elf.h.
Definition at line 2832 of file glibc_elf.h.
#define RZ_ARM_THM_JUMP6 |
Definition at line 2854 of file glibc_elf.h.
#define RZ_ARM_THM_MOVT_ABS |
Definition at line 2850 of file glibc_elf.h.
#define RZ_ARM_THM_MOVT_BREL |
Definition at line 2890 of file glibc_elf.h.
#define RZ_ARM_THM_MOVT_PREL |
Definition at line 2852 of file glibc_elf.h.
#define RZ_ARM_THM_MOVW_ABS_NC 47 /* Direct 16 bit (Thumb32 MOVW). */ |
Definition at line 2849 of file glibc_elf.h.
#define RZ_ARM_THM_MOVW_BREL |
Definition at line 2891 of file glibc_elf.h.
#define RZ_ARM_THM_MOVW_BREL_NC |
Definition at line 2889 of file glibc_elf.h.
#define RZ_ARM_THM_MOVW_PREL_NC |
Definition at line 2851 of file glibc_elf.h.
Definition at line 2904 of file glibc_elf.h.
#define RZ_ARM_THM_PC12 |
Definition at line 2856 of file glibc_elf.h.
Definition at line 2811 of file glibc_elf.h.
#define RZ_ARM_THM_PC8 |
Definition at line 2812 of file glibc_elf.h.
#define RZ_ARM_THM_PC9 |
Definition at line 2905 of file glibc_elf.h.
#define RZ_ARM_THM_RPC22 251 |
Definition at line 2922 of file glibc_elf.h.
#define RZ_ARM_THM_SWI8 14 /* Reserved. */ |
Definition at line 2816 of file glibc_elf.h.
#define RZ_ARM_THM_TLS_CALL 93 |
Definition at line 2895 of file glibc_elf.h.
#define RZ_ARM_THM_TLS_DESCSEQ 129 |
Definition at line 2915 of file glibc_elf.h.
#define RZ_ARM_THM_TLS_DESCSEQ16 129 |
Definition at line 2916 of file glibc_elf.h.
#define RZ_ARM_THM_TLS_DESCSEQ32 130 |
Definition at line 2917 of file glibc_elf.h.
#define RZ_ARM_THM_XPC22 16 /* Reserved. */ |
Definition at line 2818 of file glibc_elf.h.
#define RZ_ARM_TLS_CALL 91 |
Definition at line 2893 of file glibc_elf.h.
#define RZ_ARM_TLS_DESC 13 /* Dynamic relocation. */ |
Definition at line 2815 of file glibc_elf.h.
#define RZ_ARM_TLS_DESCSEQ 92 /* TLS relaxation. */ |
Definition at line 2894 of file glibc_elf.h.
#define RZ_ARM_TLS_DTPMOD32 17 /* ID of module containing symbol */ |
Definition at line 2819 of file glibc_elf.h.
Definition at line 2820 of file glibc_elf.h.
#define RZ_ARM_TLS_GD32 |
Definition at line 2906 of file glibc_elf.h.
#define RZ_ARM_TLS_GOTDESC 90 |
Definition at line 2892 of file glibc_elf.h.
#define RZ_ARM_TLS_IE12GP |
Definition at line 2913 of file glibc_elf.h.
#define RZ_ARM_TLS_IE32 |
Definition at line 2909 of file glibc_elf.h.
#define RZ_ARM_TLS_LDM32 |
Definition at line 2907 of file glibc_elf.h.
#define RZ_ARM_TLS_LDO12 |
Definition at line 2911 of file glibc_elf.h.
#define RZ_ARM_TLS_LDO32 |
Definition at line 2908 of file glibc_elf.h.
#define RZ_ARM_TLS_LE12 |
Definition at line 2912 of file glibc_elf.h.
#define RZ_ARM_TLS_LE32 |
Definition at line 2910 of file glibc_elf.h.
Definition at line 2821 of file glibc_elf.h.
#define RZ_ARM_V4BX 40 |
Definition at line 2842 of file glibc_elf.h.
#define RZ_ARM_XPC25 15 /* Reserved. */ |
Definition at line 2817 of file glibc_elf.h.
#define RZ_BPF_64_32 10 |
Definition at line 3794 of file glibc_elf.h.
#define RZ_BPF_64_64 1 |
Definition at line 3793 of file glibc_elf.h.
#define RZ_BPF_NONE 0 /* No reloc */ |
Definition at line 3792 of file glibc_elf.h.
Definition at line 2932 of file glibc_elf.h.
Definition at line 2952 of file glibc_elf.h.
Definition at line 2954 of file glibc_elf.h.
Definition at line 2945 of file glibc_elf.h.
#define RZ_CKCORE_ADDRGOT_HI16 36 /* high & low 16 bit ADDRGOT */ |
Definition at line 2969 of file glibc_elf.h.
#define RZ_CKCORE_ADDRGOT_LO16 37 /* (GOT + G * 4) & 0xffff */ |
Definition at line 2971 of file glibc_elf.h.
Definition at line 2946 of file glibc_elf.h.
#define RZ_CKCORE_ADDRPLT_HI16 38 /* high & low 16 bit ADDRPLT */ |
Definition at line 2972 of file glibc_elf.h.
#define RZ_CKCORE_ADDRPLT_LO16 39 /* (GOT+G*4) & 0xffff */ |
Definition at line 2974 of file glibc_elf.h.
#define RZ_CKCORE_COPY 10 /* 32 bit adjust by program base */ |
Definition at line 2938 of file glibc_elf.h.
Definition at line 2979 of file glibc_elf.h.
Definition at line 2980 of file glibc_elf.h.
Definition at line 2981 of file glibc_elf.h.
Definition at line 2977 of file glibc_elf.h.
Definition at line 2939 of file glibc_elf.h.
Definition at line 2961 of file glibc_elf.h.
Definition at line 2943 of file glibc_elf.h.
#define RZ_CKCORE_GOT_HI16 31 /* high & low 16 bit GOT */ |
Definition at line 2962 of file glibc_elf.h.
#define RZ_CKCORE_GOT_IMM18BY4 48 /* disp (G >> 2) */ |
Definition at line 2982 of file glibc_elf.h.
#define RZ_CKCORE_GOT_LO16 32 /* (G & 0xffff) */ |
Definition at line 2964 of file glibc_elf.h.
Definition at line 2941 of file glibc_elf.h.
#define RZ_CKCORE_GOTOFF_HI16 28 /* high & low 16 bit GOTOFF */ |
Definition at line 2958 of file glibc_elf.h.
Definition at line 2960 of file glibc_elf.h.
Definition at line 2942 of file glibc_elf.h.
#define RZ_CKCORE_GOTPC_HI16 26 /* high & low 16 bit GOTPC */ |
Definition at line 2955 of file glibc_elf.h.
Definition at line 2957 of file glibc_elf.h.
Definition at line 2940 of file glibc_elf.h.
#define RZ_CKCORE_NONE 0 /* no reloc */ |
Definition at line 2931 of file glibc_elf.h.
Definition at line 2935 of file glibc_elf.h.
Definition at line 2950 of file glibc_elf.h.
Definition at line 2951 of file glibc_elf.h.
Definition at line 2948 of file glibc_elf.h.
Definition at line 2949 of file glibc_elf.h.
Definition at line 2978 of file glibc_elf.h.
Definition at line 2947 of file glibc_elf.h.
Definition at line 2984 of file glibc_elf.h.
Definition at line 2975 of file glibc_elf.h.
Definition at line 2934 of file glibc_elf.h.
Definition at line 2933 of file glibc_elf.h.
Definition at line 2936 of file glibc_elf.h.
Definition at line 2965 of file glibc_elf.h.
Definition at line 2944 of file glibc_elf.h.
#define RZ_CKCORE_PLT_HI16 34 /* high & low 16 bit PLT */ |
Definition at line 2966 of file glibc_elf.h.
#define RZ_CKCORE_PLT_IMM18BY4 49 /* disp (G >> 2) */ |
Definition at line 2983 of file glibc_elf.h.
#define RZ_CKCORE_PLT_LO16 35 /* G & 0xffff */ |
Definition at line 2968 of file glibc_elf.h.
Definition at line 2937 of file glibc_elf.h.
#define RZ_CKCORE_TLS_DTPMOD32 56 |
Definition at line 2990 of file glibc_elf.h.
#define RZ_CKCORE_TLS_DTPOFF32 57 |
Definition at line 2991 of file glibc_elf.h.
#define RZ_CKCORE_TLS_GD32 53 |
Definition at line 2987 of file glibc_elf.h.
#define RZ_CKCORE_TLS_IE32 52 |
Definition at line 2986 of file glibc_elf.h.
#define RZ_CKCORE_TLS_LDM32 54 |
Definition at line 2988 of file glibc_elf.h.
#define RZ_CKCORE_TLS_LDO32 55 |
Definition at line 2989 of file glibc_elf.h.
Definition at line 2985 of file glibc_elf.h.
#define RZ_CKCORE_TLS_TPOFF32 58 |
Definition at line 2992 of file glibc_elf.h.
Definition at line 2976 of file glibc_elf.h.
#define RZ_CRIS_16 2 |
Definition at line 3260 of file glibc_elf.h.
#define RZ_CRIS_16_GOT 13 |
Definition at line 3271 of file glibc_elf.h.
#define RZ_CRIS_16_GOTPLT 15 |
Definition at line 3273 of file glibc_elf.h.
#define RZ_CRIS_16_PCREL 5 |
Definition at line 3263 of file glibc_elf.h.
#define RZ_CRIS_32 3 |
Definition at line 3261 of file glibc_elf.h.
#define RZ_CRIS_32_GOT 14 |
Definition at line 3272 of file glibc_elf.h.
#define RZ_CRIS_32_GOTPLT 16 |
Definition at line 3274 of file glibc_elf.h.
#define RZ_CRIS_32_GOTREL 17 |
Definition at line 3275 of file glibc_elf.h.
#define RZ_CRIS_32_PCREL 6 |
Definition at line 3264 of file glibc_elf.h.
#define RZ_CRIS_32_PLT_GOTREL 18 |
Definition at line 3276 of file glibc_elf.h.
#define RZ_CRIS_32_PLT_PCREL 19 |
Definition at line 3277 of file glibc_elf.h.
#define RZ_CRIS_8 1 |
Definition at line 3259 of file glibc_elf.h.
#define RZ_CRIS_8_PCREL 4 |
Definition at line 3262 of file glibc_elf.h.
#define RZ_CRIS_COPY 9 |
Definition at line 3267 of file glibc_elf.h.
#define RZ_CRIS_GLOB_DAT 10 |
Definition at line 3268 of file glibc_elf.h.
#define RZ_CRIS_GNU_VTENTRY 8 |
Definition at line 3266 of file glibc_elf.h.
#define RZ_CRIS_GNU_VTINHERIT 7 |
Definition at line 3265 of file glibc_elf.h.
#define RZ_CRIS_JUMP_SLOT 11 |
Definition at line 3269 of file glibc_elf.h.
#define RZ_CRIS_NONE 0 |
Definition at line 3258 of file glibc_elf.h.
#define RZ_CRIS_NUM 20 |
Definition at line 3279 of file glibc_elf.h.
#define RZ_CRIS_RELATIVE 12 |
Definition at line 3270 of file glibc_elf.h.
#define RZ_IA64_COPY 0x84 /* copy relocation */ |
Definition at line 3095 of file glibc_elf.h.
#define RZ_IA64_DIR32LSB 0x25 /* symbol + addend, data4 LSB */ |
Definition at line 3040 of file glibc_elf.h.
#define RZ_IA64_DIR32MSB 0x24 /* symbol + addend, data4 MSB */ |
Definition at line 3039 of file glibc_elf.h.
#define RZ_IA64_DIR64LSB 0x27 /* symbol + addend, data8 LSB */ |
Definition at line 3042 of file glibc_elf.h.
#define RZ_IA64_DIR64MSB 0x26 /* symbol + addend, data8 MSB */ |
Definition at line 3041 of file glibc_elf.h.
Definition at line 3106 of file glibc_elf.h.
Definition at line 3105 of file glibc_elf.h.
#define RZ_IA64_DTPREL14 0xb1 /* @dtprel(sym + add), imm14 */ |
Definition at line 3108 of file glibc_elf.h.
#define RZ_IA64_DTPREL22 0xb2 /* @dtprel(sym + add), imm22 */ |
Definition at line 3109 of file glibc_elf.h.
Definition at line 3112 of file glibc_elf.h.
Definition at line 3111 of file glibc_elf.h.
#define RZ_IA64_DTPREL64I 0xb3 /* @dtprel(sym + add), imm64 */ |
Definition at line 3110 of file glibc_elf.h.
Definition at line 3114 of file glibc_elf.h.
Definition at line 3113 of file glibc_elf.h.
Definition at line 3057 of file glibc_elf.h.
Definition at line 3056 of file glibc_elf.h.
Definition at line 3055 of file glibc_elf.h.
Definition at line 3059 of file glibc_elf.h.
Definition at line 3058 of file glibc_elf.h.
Definition at line 3043 of file glibc_elf.h.
Definition at line 3046 of file glibc_elf.h.
Definition at line 3045 of file glibc_elf.h.
Definition at line 3044 of file glibc_elf.h.
Definition at line 3048 of file glibc_elf.h.
Definition at line 3047 of file glibc_elf.h.
#define RZ_IA64_IMM14 0x21 /* symbol + addend, add imm14 */ |
Definition at line 3036 of file glibc_elf.h.
#define RZ_IA64_IMM22 0x22 /* symbol + addend, add imm22 */ |
Definition at line 3037 of file glibc_elf.h.
#define RZ_IA64_IMM64 0x23 /* symbol + addend, mov imm64 */ |
Definition at line 3038 of file glibc_elf.h.
Definition at line 3094 of file glibc_elf.h.
Definition at line 3093 of file glibc_elf.h.
#define RZ_IA64_LDXMOV 0x87 /* Use of LTOFF22X. */ |
Definition at line 3098 of file glibc_elf.h.
Definition at line 3049 of file glibc_elf.h.
#define RZ_IA64_LTOFF22X 0x86 /* LTOFF22, relaxable. */ |
Definition at line 3097 of file glibc_elf.h.
Definition at line 3050 of file glibc_elf.h.
#define RZ_IA64_LTOFF_DTPMOD22 0xaa /* @ltoff(@dtpmod(sym + add)), imm22 */ |
Definition at line 3107 of file glibc_elf.h.
Definition at line 3115 of file glibc_elf.h.
Definition at line 3068 of file glibc_elf.h.
Definition at line 3071 of file glibc_elf.h.
Definition at line 3070 of file glibc_elf.h.
Definition at line 3069 of file glibc_elf.h.
Definition at line 3073 of file glibc_elf.h.
Definition at line 3072 of file glibc_elf.h.
Definition at line 3104 of file glibc_elf.h.
#define RZ_IA64_LTV32LSB 0x75 /* symbol + addend, data4 LSB */ |
Definition at line 3087 of file glibc_elf.h.
#define RZ_IA64_LTV32MSB 0x74 /* symbol + addend, data4 MSB */ |
Definition at line 3086 of file glibc_elf.h.
#define RZ_IA64_LTV64LSB 0x77 /* symbol + addend, data8 LSB */ |
Definition at line 3089 of file glibc_elf.h.
#define RZ_IA64_LTV64MSB 0x76 /* symbol + addend, data8 MSB */ |
Definition at line 3088 of file glibc_elf.h.
#define RZ_IA64_NONE 0x00 /* none */ |
Definition at line 3035 of file glibc_elf.h.
Definition at line 3061 of file glibc_elf.h.
Definition at line 3090 of file glibc_elf.h.
#define RZ_IA64_PCREL21F 0x4b /* @pcrel(sym + add), fchkf */ |
Definition at line 3063 of file glibc_elf.h.
Definition at line 3062 of file glibc_elf.h.
Definition at line 3091 of file glibc_elf.h.
Definition at line 3065 of file glibc_elf.h.
Definition at line 3064 of file glibc_elf.h.
#define RZ_IA64_PCREL60B 0x48 /* @pcrel(sym + add), brl */ |
Definition at line 3060 of file glibc_elf.h.
Definition at line 3092 of file glibc_elf.h.
Definition at line 3067 of file glibc_elf.h.
Definition at line 3066 of file glibc_elf.h.
Definition at line 3051 of file glibc_elf.h.
Definition at line 3052 of file glibc_elf.h.
Definition at line 3054 of file glibc_elf.h.
Definition at line 3053 of file glibc_elf.h.
#define RZ_IA64_REL32LSB 0x6d /* data 4 + REL */ |
Definition at line 3083 of file glibc_elf.h.
#define RZ_IA64_REL32MSB 0x6c /* data 4 + REL */ |
Definition at line 3082 of file glibc_elf.h.
#define RZ_IA64_REL64LSB 0x6f /* data 8 + REL */ |
Definition at line 3085 of file glibc_elf.h.
#define RZ_IA64_REL64MSB 0x6e /* data 8 + REL */ |
Definition at line 3084 of file glibc_elf.h.
Definition at line 3079 of file glibc_elf.h.
Definition at line 3078 of file glibc_elf.h.
Definition at line 3081 of file glibc_elf.h.
Definition at line 3080 of file glibc_elf.h.
Definition at line 3075 of file glibc_elf.h.
Definition at line 3074 of file glibc_elf.h.
Definition at line 3077 of file glibc_elf.h.
Definition at line 3076 of file glibc_elf.h.
#define RZ_IA64_SUB 0x85 /* Addend and symbol difference */ |
Definition at line 3096 of file glibc_elf.h.
#define RZ_IA64_TPREL14 0x91 /* @tprel(sym + add), imm14 */ |
Definition at line 3099 of file glibc_elf.h.
#define RZ_IA64_TPREL22 0x92 /* @tprel(sym + add), imm22 */ |
Definition at line 3100 of file glibc_elf.h.
#define RZ_IA64_TPREL64I 0x93 /* @tprel(sym + add), imm64 */ |
Definition at line 3101 of file glibc_elf.h.
Definition at line 3103 of file glibc_elf.h.
Definition at line 3102 of file glibc_elf.h.
Definition at line 3373 of file glibc_elf.h.
Definition at line 3386 of file glibc_elf.h.
#define RZ_M32R_16 1 /* Direct 16 bit. */ |
Definition at line 3370 of file glibc_elf.h.
#define RZ_M32R_16_RELA 33 /* Direct 16 bit. */ |
Definition at line 3383 of file glibc_elf.h.
Definition at line 3374 of file glibc_elf.h.
Definition at line 3387 of file glibc_elf.h.
#define RZ_M32R_24 3 /* Direct 24 bit. */ |
Definition at line 3372 of file glibc_elf.h.
#define RZ_M32R_24_RELA 35 /* Direct 24 bit. */ |
Definition at line 3385 of file glibc_elf.h.
Definition at line 3375 of file glibc_elf.h.
Definition at line 3388 of file glibc_elf.h.
Definition at line 3398 of file glibc_elf.h.
#define RZ_M32R_32 2 /* Direct 32 bit. */ |
Definition at line 3371 of file glibc_elf.h.
#define RZ_M32R_32_RELA 34 /* Direct 32 bit. */ |
Definition at line 3384 of file glibc_elf.h.
#define RZ_M32R_COPY 50 /* Copy symbol at runtime */ |
Definition at line 3399 of file glibc_elf.h.
#define RZ_M32R_GLOB_DAT 51 /* Create GOT entry */ |
Definition at line 3400 of file glibc_elf.h.
#define RZ_M32R_GNU_VTENTRY 12 |
Definition at line 3381 of file glibc_elf.h.
#define RZ_M32R_GNU_VTINHERIT 11 |
Definition at line 3380 of file glibc_elf.h.
#define RZ_M32R_GOT16_HI_SLO |
Definition at line 3406 of file glibc_elf.h.
#define RZ_M32R_GOT16_HI_ULO |
Definition at line 3405 of file glibc_elf.h.
Definition at line 3407 of file glibc_elf.h.
Definition at line 3397 of file glibc_elf.h.
Definition at line 3403 of file glibc_elf.h.
#define RZ_M32R_GOTOFF_HI_SLO |
Definition at line 3412 of file glibc_elf.h.
#define RZ_M32R_GOTOFF_HI_ULO |
Definition at line 3411 of file glibc_elf.h.
Definition at line 3413 of file glibc_elf.h.
Definition at line 3404 of file glibc_elf.h.
#define RZ_M32R_GOTPC_HI_SLO |
Definition at line 3409 of file glibc_elf.h.
#define RZ_M32R_GOTPC_HI_ULO |
Definition at line 3408 of file glibc_elf.h.
#define RZ_M32R_GOTPC_LO |
Definition at line 3410 of file glibc_elf.h.
Definition at line 3377 of file glibc_elf.h.
Definition at line 3390 of file glibc_elf.h.
Definition at line 3376 of file glibc_elf.h.
Definition at line 3389 of file glibc_elf.h.
#define RZ_M32R_JMP_SLOT 52 /* Create PLT entry */ |
Definition at line 3401 of file glibc_elf.h.
#define RZ_M32R_LO16 9 /* Low 16 bit. */ |
Definition at line 3378 of file glibc_elf.h.
#define RZ_M32R_LO16_RELA 41 /* Low 16 bit */ |
Definition at line 3391 of file glibc_elf.h.
#define RZ_M32R_NONE 0 /* No reloc. */ |
Definition at line 3369 of file glibc_elf.h.
#define RZ_M32R_NUM 256 /* Keep this the last entry. */ |
Definition at line 3414 of file glibc_elf.h.
#define RZ_M32R_REL32 45 /* PC relative 32 bit. */ |
Definition at line 3395 of file glibc_elf.h.
#define RZ_M32R_RELA_GNU_VTENTRY 44 |
Definition at line 3394 of file glibc_elf.h.
#define RZ_M32R_RELA_GNU_VTINHERIT 43 |
Definition at line 3393 of file glibc_elf.h.
#define RZ_M32R_RELATIVE 53 /* Adjust by program base */ |
Definition at line 3402 of file glibc_elf.h.
Definition at line 3379 of file glibc_elf.h.
Definition at line 3392 of file glibc_elf.h.
#define RZ_METAG_ADDR32 2 /* 32bit absolute address */ |
Definition at line 3800 of file glibc_elf.h.
#define RZ_METAG_COPY 43 |
Definition at line 3836 of file glibc_elf.h.
#define RZ_METAG_GETSET_GOT 35 |
Definition at line 3828 of file glibc_elf.h.
#define RZ_METAG_GETSET_GOTOFF 34 |
Definition at line 3827 of file glibc_elf.h.
#define RZ_METAG_GETSETOFF 5 |
Definition at line 3803 of file glibc_elf.h.
#define RZ_METAG_GLOB_DAT 46 |
Definition at line 3839 of file glibc_elf.h.
#define RZ_METAG_GNU_VTENTRY 31 |
Definition at line 3822 of file glibc_elf.h.
#define RZ_METAG_GNU_VTINHERIT 30 |
Definition at line 3821 of file glibc_elf.h.
#define RZ_METAG_GOTOFF 41 |
Definition at line 3834 of file glibc_elf.h.
#define RZ_METAG_HI16_GOTOFF 32 |
Definition at line 3825 of file glibc_elf.h.
#define RZ_METAG_HI16_GOTPC 36 |
Definition at line 3829 of file glibc_elf.h.
#define RZ_METAG_HI16_PLT 38 |
Definition at line 3831 of file glibc_elf.h.
#define RZ_METAG_HIADDR16 0 |
Definition at line 3798 of file glibc_elf.h.
#define RZ_METAG_HIOG 13 |
Definition at line 3814 of file glibc_elf.h.
#define RZ_METAG_JMP_SLOT 44 |
Definition at line 3837 of file glibc_elf.h.
#define RZ_METAG_LO16_GOTOFF 33 |
Definition at line 3826 of file glibc_elf.h.
#define RZ_METAG_LO16_GOTPC 37 |
Definition at line 3830 of file glibc_elf.h.
#define RZ_METAG_LO16_PLT 39 |
Definition at line 3832 of file glibc_elf.h.
#define RZ_METAG_LOADDR16 1 |
Definition at line 3799 of file glibc_elf.h.
#define RZ_METAG_LOOG 14 |
Definition at line 3815 of file glibc_elf.h.
#define RZ_METAG_NONE 3 /* No reloc */ |
Definition at line 3801 of file glibc_elf.h.
#define RZ_METAG_PLT 42 |
Definition at line 3835 of file glibc_elf.h.
#define RZ_METAG_REG16OP1 9 |
Definition at line 3809 of file glibc_elf.h.
#define RZ_METAG_REG16OP2 10 |
Definition at line 3810 of file glibc_elf.h.
#define RZ_METAG_REG16OP3 11 |
Definition at line 3811 of file glibc_elf.h.
#define RZ_METAG_REG32OP1 6 |
Definition at line 3806 of file glibc_elf.h.
#define RZ_METAG_REG32OP2 7 |
Definition at line 3807 of file glibc_elf.h.
#define RZ_METAG_REG32OP3 8 |
Definition at line 3808 of file glibc_elf.h.
#define RZ_METAG_REG32OP4 12 |
Definition at line 3812 of file glibc_elf.h.
#define RZ_METAG_REL16 16 |
Definition at line 3818 of file glibc_elf.h.
#define RZ_METAG_REL8 15 |
Definition at line 3817 of file glibc_elf.h.
#define RZ_METAG_RELATIVE 45 |
Definition at line 3838 of file glibc_elf.h.
#define RZ_METAG_RELBRANCH 4 |
Definition at line 3802 of file glibc_elf.h.
#define RZ_METAG_RELBRANCH_PLT 40 |
Definition at line 3833 of file glibc_elf.h.
#define RZ_METAG_TLS_DTPMOD 57 |
Definition at line 3852 of file glibc_elf.h.
#define RZ_METAG_TLS_DTPOFF 58 |
Definition at line 3853 of file glibc_elf.h.
#define RZ_METAG_TLS_GD 47 |
Definition at line 3842 of file glibc_elf.h.
#define RZ_METAG_TLS_IE 52 |
Definition at line 3847 of file glibc_elf.h.
#define RZ_METAG_TLS_IENONPIC 53 |
Definition at line 3848 of file glibc_elf.h.
#define RZ_METAG_TLS_IENONPIC_HI16 54 |
Definition at line 3849 of file glibc_elf.h.
#define RZ_METAG_TLS_IENONPIC_LO16 55 |
Definition at line 3850 of file glibc_elf.h.
#define RZ_METAG_TLS_LDM 48 |
Definition at line 3843 of file glibc_elf.h.
#define RZ_METAG_TLS_LDO 51 |
Definition at line 3846 of file glibc_elf.h.
#define RZ_METAG_TLS_LDO_HI16 49 |
Definition at line 3844 of file glibc_elf.h.
#define RZ_METAG_TLS_LDO_LO16 50 |
Definition at line 3845 of file glibc_elf.h.
#define RZ_METAG_TLS_LE 59 |
Definition at line 3854 of file glibc_elf.h.
#define RZ_METAG_TLS_LE_HI16 60 |
Definition at line 3855 of file glibc_elf.h.
#define RZ_METAG_TLS_LE_LO16 61 |
Definition at line 3856 of file glibc_elf.h.
#define RZ_METAG_TLS_TPOFF 56 |
Definition at line 3851 of file glibc_elf.h.
#define RZ_MICROBLAZE_32 1 /* Direct 32 bit. */ |
Definition at line 3418 of file glibc_elf.h.
#define RZ_MICROBLAZE_32_LO 6 /* Low 16 bit. */ |
Definition at line 3423 of file glibc_elf.h.
#define RZ_MICROBLAZE_32_PCREL 2 /* PC relative 32 bit. */ |
Definition at line 3419 of file glibc_elf.h.
#define RZ_MICROBLAZE_32_PCREL_LO 4 /* Low 16 bits of PCREL32. */ |
Definition at line 3421 of file glibc_elf.h.
#define RZ_MICROBLAZE_32_SYM_OP_SYM 10 /* Symbol Op Symbol relocation. */ |
Definition at line 3427 of file glibc_elf.h.
#define RZ_MICROBLAZE_64 5 /* Direct 64 bit. */ |
Definition at line 3422 of file glibc_elf.h.
#define RZ_MICROBLAZE_64_NONE 9 /* No reloc. */ |
Definition at line 3426 of file glibc_elf.h.
#define RZ_MICROBLAZE_64_PCREL 3 /* PC relative 64 bit. */ |
Definition at line 3420 of file glibc_elf.h.
#define RZ_MICROBLAZE_COPY 21 /* Runtime copy. */ |
Definition at line 3438 of file glibc_elf.h.
#define RZ_MICROBLAZE_GLOB_DAT 18 /* Create GOT entry. */ |
Definition at line 3435 of file glibc_elf.h.
#define RZ_MICROBLAZE_GNU_VTENTRY 12 /* GNU C++ vtable member usage. */ |
Definition at line 3429 of file glibc_elf.h.
#define RZ_MICROBLAZE_GNU_VTINHERIT 11 /* GNU C++ vtable hierarchy. */ |
Definition at line 3428 of file glibc_elf.h.
#define RZ_MICROBLAZE_GOT_64 14 /* GOT entry offset. */ |
Definition at line 3431 of file glibc_elf.h.
Definition at line 3437 of file glibc_elf.h.
Definition at line 3436 of file glibc_elf.h.
#define RZ_MICROBLAZE_GOTPC_64 13 /* PC-relative GOT offset. */ |
Definition at line 3430 of file glibc_elf.h.
#define RZ_MICROBLAZE_JUMP_SLOT 17 /* Create PLT entry. */ |
Definition at line 3434 of file glibc_elf.h.
#define RZ_MICROBLAZE_NONE 0 /* No reloc. */ |
Definition at line 3417 of file glibc_elf.h.
Definition at line 3432 of file glibc_elf.h.
#define RZ_MICROBLAZE_REL 16 /* Adjust by program base. */ |
Definition at line 3433 of file glibc_elf.h.
#define RZ_MICROBLAZE_SRO32 7 /* Read-only small data area. */ |
Definition at line 3424 of file glibc_elf.h.
#define RZ_MICROBLAZE_SRW32 8 /* Read-write small data area. */ |
Definition at line 3425 of file glibc_elf.h.
#define RZ_MICROBLAZE_TLS 22 /* TLS Reloc. */ |
Definition at line 3439 of file glibc_elf.h.
#define RZ_MICROBLAZE_TLSDTPMOD32 25 /* TLS Module ID. */ |
Definition at line 3442 of file glibc_elf.h.
#define RZ_MICROBLAZE_TLSDTPREL32 26 /* TLS Offset Within TLS Block. */ |
Definition at line 3443 of file glibc_elf.h.
#define RZ_MICROBLAZE_TLSDTPREL64 27 /* TLS Offset Within TLS Block. */ |
Definition at line 3444 of file glibc_elf.h.
#define RZ_MICROBLAZE_TLSGD 23 /* TLS General Dynamic. */ |
Definition at line 3440 of file glibc_elf.h.
#define RZ_MICROBLAZE_TLSGOTTPREL32 28 /* TLS Offset From Thread Pointer. */ |
Definition at line 3445 of file glibc_elf.h.
#define RZ_MICROBLAZE_TLSLD 24 /* TLS Local Dynamic. */ |
Definition at line 3441 of file glibc_elf.h.
#define RZ_MICROBLAZE_TLSTPREL32 29 /* TLS Offset From Thread Pointer. */ |
Definition at line 3446 of file glibc_elf.h.
#define RZ_MIPS_16 1 /* Direct 16 bit */ |
Definition at line 1779 of file glibc_elf.h.
#define RZ_MIPS_26 4 /* Direct 26 bit shifted */ |
Definition at line 1782 of file glibc_elf.h.
#define RZ_MIPS_32 2 /* Direct 32 bit */ |
Definition at line 1780 of file glibc_elf.h.
#define RZ_MIPS_64 18 |
Definition at line 1794 of file glibc_elf.h.
#define RZ_MIPS_ADD_IMMEDIATE 34 |
Definition at line 1810 of file glibc_elf.h.
Definition at line 1789 of file glibc_elf.h.
#define RZ_MIPS_CALL_HI16 30 |
Definition at line 1806 of file glibc_elf.h.
#define RZ_MIPS_CALL_LO16 31 |
Definition at line 1807 of file glibc_elf.h.
#define RZ_MIPS_COPY 126 |
Definition at line 1828 of file glibc_elf.h.
#define RZ_MIPS_DELETE 27 |
Definition at line 1803 of file glibc_elf.h.
#define RZ_MIPS_GLOB_DAT 51 |
Definition at line 1827 of file glibc_elf.h.
Definition at line 1787 of file glibc_elf.h.
#define RZ_MIPS_GOT_DISP 19 |
Definition at line 1795 of file glibc_elf.h.
#define RZ_MIPS_GOT_HI16 22 |
Definition at line 1798 of file glibc_elf.h.
#define RZ_MIPS_GOT_LO16 23 |
Definition at line 1799 of file glibc_elf.h.
#define RZ_MIPS_GOT_OFST 21 |
Definition at line 1797 of file glibc_elf.h.
#define RZ_MIPS_GOT_PAGE 20 |
Definition at line 1796 of file glibc_elf.h.
#define RZ_MIPS_GPREL16 7 /* GP relative 16 bit */ |
Definition at line 1785 of file glibc_elf.h.
#define RZ_MIPS_GPREL32 12 /* GP relative 32 bit */ |
Definition at line 1790 of file glibc_elf.h.
#define RZ_MIPS_HI16 5 /* High 16 bit */ |
Definition at line 1783 of file glibc_elf.h.
#define RZ_MIPS_HIGHER 28 |
Definition at line 1804 of file glibc_elf.h.
#define RZ_MIPS_HIGHEST 29 |
Definition at line 1805 of file glibc_elf.h.
#define RZ_MIPS_INSERT_A 25 |
Definition at line 1801 of file glibc_elf.h.
#define RZ_MIPS_INSERT_B 26 |
Definition at line 1802 of file glibc_elf.h.
#define RZ_MIPS_JALR 37 |
Definition at line 1813 of file glibc_elf.h.
#define RZ_MIPS_JUMP_SLOT 127 |
Definition at line 1829 of file glibc_elf.h.
Definition at line 1786 of file glibc_elf.h.
#define RZ_MIPS_LO16 6 /* Low 16 bit */ |
Definition at line 1784 of file glibc_elf.h.
#define RZ_MIPS_NONE 0 /* No reloc */ |
Definition at line 1778 of file glibc_elf.h.
#define RZ_MIPS_NUM 128 |
Definition at line 1831 of file glibc_elf.h.
Definition at line 1788 of file glibc_elf.h.
#define RZ_MIPS_PJUMP 35 |
Definition at line 1811 of file glibc_elf.h.
#define RZ_MIPS_REL16 33 |
Definition at line 1809 of file glibc_elf.h.
Definition at line 1781 of file glibc_elf.h.
#define RZ_MIPS_RELGOT 36 |
Definition at line 1812 of file glibc_elf.h.
#define RZ_MIPS_SCN_DISP 32 |
Definition at line 1808 of file glibc_elf.h.
#define RZ_MIPS_SHIFT5 16 |
Definition at line 1792 of file glibc_elf.h.
#define RZ_MIPS_SHIFT6 17 |
Definition at line 1793 of file glibc_elf.h.
#define RZ_MIPS_SUB 24 |
Definition at line 1800 of file glibc_elf.h.
#define RZ_MIPS_TLS_DTPMOD32 38 /* Module number 32 bit */ |
Definition at line 1814 of file glibc_elf.h.
#define RZ_MIPS_TLS_DTPMOD64 40 /* Module number 64 bit */ |
Definition at line 1816 of file glibc_elf.h.
Definition at line 1815 of file glibc_elf.h.
Definition at line 1817 of file glibc_elf.h.
Definition at line 1820 of file glibc_elf.h.
Definition at line 1821 of file glibc_elf.h.
Definition at line 1818 of file glibc_elf.h.
Definition at line 1822 of file glibc_elf.h.
Definition at line 1819 of file glibc_elf.h.
Definition at line 1823 of file glibc_elf.h.
Definition at line 1824 of file glibc_elf.h.
Definition at line 1825 of file glibc_elf.h.
Definition at line 1826 of file glibc_elf.h.
#define RZ_MN10300_16 2 /* Direct 16 bit. */ |
Definition at line 3333 of file glibc_elf.h.
#define RZ_MN10300_24 9 /* Direct 24 bit. */ |
Definition at line 3340 of file glibc_elf.h.
#define RZ_MN10300_32 1 /* Direct 32 bit. */ |
Definition at line 3332 of file glibc_elf.h.
#define RZ_MN10300_8 3 /* Direct 8 bit. */ |
Definition at line 3334 of file glibc_elf.h.
#define RZ_MN10300_ALIGN |
Definition at line 3365 of file glibc_elf.h.
#define RZ_MN10300_COPY 20 /* Copy symbol at runtime. */ |
Definition at line 3351 of file glibc_elf.h.
#define RZ_MN10300_GLOB_DAT 21 /* Create GOT entry. */ |
Definition at line 3352 of file glibc_elf.h.
#define RZ_MN10300_GNU_VTENTRY 8 /* ... collection annotation. */ |
Definition at line 3339 of file glibc_elf.h.
#define RZ_MN10300_GNU_VTINHERIT 7 /* Ancient C++ vtable garbage... */ |
Definition at line 3338 of file glibc_elf.h.
Definition at line 3350 of file glibc_elf.h.
Definition at line 3349 of file glibc_elf.h.
Definition at line 3348 of file glibc_elf.h.
Definition at line 3345 of file glibc_elf.h.
Definition at line 3344 of file glibc_elf.h.
Definition at line 3343 of file glibc_elf.h.
Definition at line 3342 of file glibc_elf.h.
Definition at line 3341 of file glibc_elf.h.
#define RZ_MN10300_JMP_SLOT 22 /* Create PLT entry. */ |
Definition at line 3353 of file glibc_elf.h.
#define RZ_MN10300_NONE 0 /* No reloc. */ |
Definition at line 3331 of file glibc_elf.h.
#define RZ_MN10300_NUM 35 |
Definition at line 3366 of file glibc_elf.h.
Definition at line 3336 of file glibc_elf.h.
#define RZ_MN10300_PCREL32 4 /* PC-relative 32-bit. */ |
Definition at line 3335 of file glibc_elf.h.
Definition at line 3337 of file glibc_elf.h.
Definition at line 3347 of file glibc_elf.h.
Definition at line 3346 of file glibc_elf.h.
#define RZ_MN10300_RELATIVE 23 /* Adjust by program base. */ |
Definition at line 3354 of file glibc_elf.h.
#define RZ_MN10300_SYM_DIFF |
Definition at line 3364 of file glibc_elf.h.
#define RZ_MN10300_TLS_DTPMOD 30 /* ID of module containing symbol. */ |
Definition at line 3361 of file glibc_elf.h.
Definition at line 3362 of file glibc_elf.h.
Definition at line 3355 of file glibc_elf.h.
#define RZ_MN10300_TLS_GOTIE |
Definition at line 3358 of file glibc_elf.h.
#define RZ_MN10300_TLS_IE |
Definition at line 3359 of file glibc_elf.h.
Definition at line 3356 of file glibc_elf.h.
#define RZ_MN10300_TLS_LDO 26 /* Module-relative offset. */ |
Definition at line 3357 of file glibc_elf.h.
#define RZ_MN10300_TLS_LE |
Definition at line 3360 of file glibc_elf.h.
Definition at line 3363 of file glibc_elf.h.
#define RZ_NDS32_32_RELA 20 |
Definition at line 3860 of file glibc_elf.h.
#define RZ_NDS32_COPY 39 |
Definition at line 3861 of file glibc_elf.h.
#define RZ_NDS32_GLOB_DAT 40 |
Definition at line 3862 of file glibc_elf.h.
#define RZ_NDS32_JMP_SLOT 41 |
Definition at line 3863 of file glibc_elf.h.
#define RZ_NDS32_NONE 0 |
Definition at line 3859 of file glibc_elf.h.
#define RZ_NDS32_RELATIVE 42 |
Definition at line 3864 of file glibc_elf.h.
#define RZ_NDS32_TLS_DESC 119 |
Definition at line 3866 of file glibc_elf.h.
#define RZ_NDS32_TLS_TPOFF 102 |
Definition at line 3865 of file glibc_elf.h.
#define RZ_NIOS2_ALIGN |
Definition at line 3473 of file glibc_elf.h.
Definition at line 3465 of file glibc_elf.h.
Definition at line 3464 of file glibc_elf.h.
Definition at line 3466 of file glibc_elf.h.
Definition at line 3458 of file glibc_elf.h.
Definition at line 3475 of file glibc_elf.h.
#define RZ_NIOS2_CALL26 4 /* Direct call. */ |
Definition at line 3456 of file glibc_elf.h.
Definition at line 3493 of file glibc_elf.h.
#define RZ_NIOS2_CALL_HA 45 /* %hiadj() of function GOT entry. */ |
Definition at line 3497 of file glibc_elf.h.
#define RZ_NIOS2_CALL_LO 44 /* %lo() of function GOT entry. */ |
Definition at line 3496 of file glibc_elf.h.
#define RZ_NIOS2_CALLR 20 /* Indirect call through register. */ |
Definition at line 3472 of file glibc_elf.h.
#define RZ_NIOS2_CJMP 19 /* Conditional branch. */ |
Definition at line 3471 of file glibc_elf.h.
#define RZ_NIOS2_COPY 36 /* Copy symbol at runtime. */ |
Definition at line 3488 of file glibc_elf.h.
#define RZ_NIOS2_GLOB_DAT 37 /* Create GOT entry. */ |
Definition at line 3489 of file glibc_elf.h.
#define RZ_NIOS2_GNU_VTENTRY 17 /* GNU C++ vtable member usage. */ |
Definition at line 3469 of file glibc_elf.h.
#define RZ_NIOS2_GNU_VTINHERIT 16 /* GNU C++ vtable hierarchy. */ |
Definition at line 3468 of file glibc_elf.h.
#define RZ_NIOS2_GOT16 22 /* 16 bit GOT entry. */ |
Definition at line 3474 of file glibc_elf.h.
#define RZ_NIOS2_GOT_HA 43 /* %hiadj() of GOT entry. */ |
Definition at line 3495 of file glibc_elf.h.
#define RZ_NIOS2_GOT_LO 42 /* %lo() of GOT entry. */ |
Definition at line 3494 of file glibc_elf.h.
Definition at line 3492 of file glibc_elf.h.
Definition at line 3477 of file glibc_elf.h.
Definition at line 3476 of file glibc_elf.h.
#define RZ_NIOS2_GPREL 15 /* 16 bit GP pointer offset. */ |
Definition at line 3467 of file glibc_elf.h.
#define RZ_NIOS2_HI16 9 /* High 16 bit. */ |
Definition at line 3461 of file glibc_elf.h.
#define RZ_NIOS2_HIADJ16 11 /* High 16 bit, adjusted. */ |
Definition at line 3463 of file glibc_elf.h.
#define RZ_NIOS2_IMM5 5 /* 5 bit constant expression. */ |
Definition at line 3457 of file glibc_elf.h.
#define RZ_NIOS2_IMM6 7 /* 6 bit constant expression. */ |
Definition at line 3459 of file glibc_elf.h.
#define RZ_NIOS2_IMM8 8 /* 8 bit constant expression. */ |
Definition at line 3460 of file glibc_elf.h.
#define RZ_NIOS2_JUMP_SLOT 38 /* Create PLT entry. */ |
Definition at line 3490 of file glibc_elf.h.
#define RZ_NIOS2_LO16 10 /* Low 16 bit. */ |
Definition at line 3462 of file glibc_elf.h.
#define RZ_NIOS2_NONE 0 /* No reloc. */ |
Definition at line 3452 of file glibc_elf.h.
#define RZ_NIOS2_PCREL16 3 /* PC relative 16 bit. */ |
Definition at line 3455 of file glibc_elf.h.
#define RZ_NIOS2_PCREL_HA 27 /* %hiadj of PC relative offset. */ |
Definition at line 3479 of file glibc_elf.h.
Definition at line 3478 of file glibc_elf.h.
#define RZ_NIOS2_RELATIVE 39 /* Adjust by program base. */ |
Definition at line 3491 of file glibc_elf.h.
#define RZ_NIOS2_S16 1 /* Direct signed 16 bit. */ |
Definition at line 3453 of file glibc_elf.h.
#define RZ_NIOS2_TLS_DTPMOD 33 /* Module number. */ |
Definition at line 3485 of file glibc_elf.h.
#define RZ_NIOS2_TLS_DTPREL 34 /* Module-relative offset. */ |
Definition at line 3486 of file glibc_elf.h.
Definition at line 3480 of file glibc_elf.h.
Definition at line 3483 of file glibc_elf.h.
Definition at line 3481 of file glibc_elf.h.
Definition at line 3482 of file glibc_elf.h.
#define RZ_NIOS2_TLS_LE16 32 /* 16 bit LE TP-relative offset. */ |
Definition at line 3484 of file glibc_elf.h.
#define RZ_NIOS2_TLS_TPREL 35 /* TP-relative offset. */ |
Definition at line 3487 of file glibc_elf.h.
#define RZ_NIOS2_U16 2 /* Direct unsigned 16 bit. */ |
Definition at line 3454 of file glibc_elf.h.
#define RZ_NIOS2_UJMP 18 /* Unconditional branch. */ |
Definition at line 3470 of file glibc_elf.h.
#define RZ_PARISC_COPY 128 /* Copy relocation. */ |
Definition at line 2163 of file glibc_elf.h.
#define RZ_PARISC_DIR14DR 84 /* 14 bits of eff. address. */ |
Definition at line 2133 of file glibc_elf.h.
#define RZ_PARISC_DIR14R 6 /* Right 14 bits of eff. address. */ |
Definition at line 2100 of file glibc_elf.h.
#define RZ_PARISC_DIR14WR 83 /* 14 bits of eff. address. */ |
Definition at line 2132 of file glibc_elf.h.
#define RZ_PARISC_DIR16DF 87 /* 16 bits of eff. address. */ |
Definition at line 2136 of file glibc_elf.h.
#define RZ_PARISC_DIR16F 85 /* 16 bits of eff. address. */ |
Definition at line 2134 of file glibc_elf.h.
#define RZ_PARISC_DIR16WF 86 /* 16 bits of eff. address. */ |
Definition at line 2135 of file glibc_elf.h.
#define RZ_PARISC_DIR17F 4 /* 17 bits of eff. address. */ |
Definition at line 2099 of file glibc_elf.h.
#define RZ_PARISC_DIR17R 3 /* Right 17 bits of eff. address. */ |
Definition at line 2098 of file glibc_elf.h.
#define RZ_PARISC_DIR21L 2 /* Left 21 bits of eff. address. */ |
Definition at line 2097 of file glibc_elf.h.
#define RZ_PARISC_DIR32 1 /* Direct 32-bit reference. */ |
Definition at line 2096 of file glibc_elf.h.
#define RZ_PARISC_DIR64 80 /* 64 bits of eff. address. */ |
Definition at line 2131 of file glibc_elf.h.
#define RZ_PARISC_DPREL14R 22 /* Right 14 bits of rel. address. */ |
Definition at line 2107 of file glibc_elf.h.
#define RZ_PARISC_DPREL21L 18 /* Left 21 bits of rel. address. */ |
Definition at line 2106 of file glibc_elf.h.
#define RZ_PARISC_EPLT 130 /* Dynamic reloc, exported PLT */ |
Definition at line 2165 of file glibc_elf.h.
#define RZ_PARISC_FPTR64 64 /* 64 bits function address. */ |
Definition at line 2120 of file glibc_elf.h.
#define RZ_PARISC_GNU_VTENTRY 232 |
Definition at line 2184 of file glibc_elf.h.
#define RZ_PARISC_GNU_VTINHERIT 233 |
Definition at line 2185 of file glibc_elf.h.
#define RZ_PARISC_GPREL14DR 92 /* GP-rel. address, right 14 bits. */ |
Definition at line 2139 of file glibc_elf.h.
#define RZ_PARISC_GPREL14R 30 /* GP-relative, right 14 bits. */ |
Definition at line 2109 of file glibc_elf.h.
#define RZ_PARISC_GPREL14WR 91 /* GP-rel. address, right 14 bits. */ |
Definition at line 2138 of file glibc_elf.h.
#define RZ_PARISC_GPREL16DF 95 /* 16 bits GP-rel. address. */ |
Definition at line 2142 of file glibc_elf.h.
#define RZ_PARISC_GPREL16F 93 /* 16 bits GP-rel. address. */ |
Definition at line 2140 of file glibc_elf.h.
#define RZ_PARISC_GPREL16WF 94 /* 16 bits GP-rel. address. */ |
Definition at line 2141 of file glibc_elf.h.
#define RZ_PARISC_GPREL21L 26 /* GP-relative, left 21 bits. */ |
Definition at line 2108 of file glibc_elf.h.
#define RZ_PARISC_GPREL64 88 /* 64 bits of GP-rel. address. */ |
Definition at line 2137 of file glibc_elf.h.
#define RZ_PARISC_HIRESERVE 255 |
Definition at line 2204 of file glibc_elf.h.
#define RZ_PARISC_IPLT 129 /* Dynamic reloc, imported PLT */ |
Definition at line 2164 of file glibc_elf.h.
#define RZ_PARISC_LORESERVE 128 |
Definition at line 2162 of file glibc_elf.h.
#define RZ_PARISC_LTOFF14DR 100 /* LT-rel. address, right 14 bits. */ |
Definition at line 2145 of file glibc_elf.h.
#define RZ_PARISC_LTOFF14R 38 /* LT-relative, right 14 bits. */ |
Definition at line 2111 of file glibc_elf.h.
#define RZ_PARISC_LTOFF14WR 99 /* LT-rel. address, right 14 bits. */ |
Definition at line 2144 of file glibc_elf.h.
#define RZ_PARISC_LTOFF16DF 103 /* 16 bits LT-rel. address. */ |
Definition at line 2148 of file glibc_elf.h.
#define RZ_PARISC_LTOFF16F 101 /* 16 bits LT-rel. address. */ |
Definition at line 2146 of file glibc_elf.h.
#define RZ_PARISC_LTOFF16WF 102 /* 16 bits LT-rel. address. */ |
Definition at line 2147 of file glibc_elf.h.
#define RZ_PARISC_LTOFF21L 34 /* LT-relative, left 21 bits. */ |
Definition at line 2110 of file glibc_elf.h.
#define RZ_PARISC_LTOFF64 96 /* 64 bits LT-rel. address. */ |
Definition at line 2143 of file glibc_elf.h.
#define RZ_PARISC_LTOFF_FPTR14DR 124 /* LT-rel. fct. ptr., right 14 bits. */ |
Definition at line 2158 of file glibc_elf.h.
#define RZ_PARISC_LTOFF_FPTR14R 62 /* LT-rel. fct ptr, right 14 bits. */ |
Definition at line 2119 of file glibc_elf.h.
#define RZ_PARISC_LTOFF_FPTR14WR 123 /* LT-rel. fct. ptr., right 14 bits. */ |
Definition at line 2157 of file glibc_elf.h.
#define RZ_PARISC_LTOFF_FPTR16DF 127 /* 16 bits LT-rel. function ptr. */ |
Definition at line 2161 of file glibc_elf.h.
#define RZ_PARISC_LTOFF_FPTR16F 125 /* 16 bits LT-rel. function ptr. */ |
Definition at line 2159 of file glibc_elf.h.
#define RZ_PARISC_LTOFF_FPTR16WF 126 /* 16 bits LT-rel. function ptr. */ |
Definition at line 2160 of file glibc_elf.h.
#define RZ_PARISC_LTOFF_FPTR21L 58 /* LT-rel. fct ptr, left 21 bits. */ |
Definition at line 2118 of file glibc_elf.h.
#define RZ_PARISC_LTOFF_FPTR32 57 /* 32 bits LT-rel. function pointer. */ |
Definition at line 2117 of file glibc_elf.h.
#define RZ_PARISC_LTOFF_FPTR64 120 /* 64 bits LT-rel. function ptr. */ |
Definition at line 2156 of file glibc_elf.h.
#define RZ_PARISC_LTOFF_TP14DR 228 /* LT-TP-rel. address, right 14 bits.*/ |
Definition at line 2180 of file glibc_elf.h.
#define RZ_PARISC_LTOFF_TP14F 167 /* 14 bits LT-TP-rel. address. */ |
Definition at line 2171 of file glibc_elf.h.
#define RZ_PARISC_LTOFF_TP14R 166 /* LT-TP-rel. address, right 14 bits.*/ |
Definition at line 2170 of file glibc_elf.h.
#define RZ_PARISC_LTOFF_TP14WR 227 /* LT-TP-rel. address, right 14 bits.*/ |
Definition at line 2179 of file glibc_elf.h.
#define RZ_PARISC_LTOFF_TP16DF 231 /* 16 bits LT-TP-rel. address. */ |
Definition at line 2183 of file glibc_elf.h.
#define RZ_PARISC_LTOFF_TP16F 229 /* 16 bits LT-TP-rel. address. */ |
Definition at line 2181 of file glibc_elf.h.
#define RZ_PARISC_LTOFF_TP16WF 230 /* 16 bits LT-TP-rel. address. */ |
Definition at line 2182 of file glibc_elf.h.
#define RZ_PARISC_LTOFF_TP21L 162 /* LT-TP-rel. address, left 21 bits. */ |
Definition at line 2169 of file glibc_elf.h.
#define RZ_PARISC_LTOFF_TP64 224 /* 64 bits LT-TP-rel. address. */ |
Definition at line 2178 of file glibc_elf.h.
#define RZ_PARISC_NONE 0 /* No reloc. */ |
Definition at line 2095 of file glibc_elf.h.
#define RZ_PARISC_PCREL14DR 76 /* PC rel. address, right 14 bits. */ |
Definition at line 2127 of file glibc_elf.h.
#define RZ_PARISC_PCREL14R 14 /* Right 14 bits of rel. address. */ |
Definition at line 2105 of file glibc_elf.h.
#define RZ_PARISC_PCREL14WR 75 /* PC-rel. address, right 14 bits. */ |
Definition at line 2126 of file glibc_elf.h.
Definition at line 2130 of file glibc_elf.h.
Definition at line 2128 of file glibc_elf.h.
Definition at line 2129 of file glibc_elf.h.
#define RZ_PARISC_PCREL17F 12 /* 17 bits of rel. address. */ |
Definition at line 2104 of file glibc_elf.h.
#define RZ_PARISC_PCREL17R 11 /* Right 17 bits of rel. address. */ |
Definition at line 2103 of file glibc_elf.h.
#define RZ_PARISC_PCREL21L 10 /* Left 21 bits of rel. address. */ |
Definition at line 2102 of file glibc_elf.h.
Definition at line 2125 of file glibc_elf.h.
#define RZ_PARISC_PCREL32 9 /* 32-bit rel. address. */ |
Definition at line 2101 of file glibc_elf.h.
Definition at line 2124 of file glibc_elf.h.
#define RZ_PARISC_PLABEL14R 70 /* Right 14 bits of fdesc address. */ |
Definition at line 2123 of file glibc_elf.h.
#define RZ_PARISC_PLABEL21L 66 /* Left 21 bits of fdesc address. */ |
Definition at line 2122 of file glibc_elf.h.
#define RZ_PARISC_PLABEL32 65 /* 32 bits function address. */ |
Definition at line 2121 of file glibc_elf.h.
#define RZ_PARISC_PLTOFF14DR 116 /* PLT-rel. address, right 14 bits. */ |
Definition at line 2152 of file glibc_elf.h.
#define RZ_PARISC_PLTOFF14R 54 /* PLT rel. address, right 14 bits. */ |
Definition at line 2116 of file glibc_elf.h.
#define RZ_PARISC_PLTOFF14WR 115 /* PLT-rel. address, right 14 bits. */ |
Definition at line 2151 of file glibc_elf.h.
#define RZ_PARISC_PLTOFF16DF 119 /* 16 bits PLT-rel. address. */ |
Definition at line 2155 of file glibc_elf.h.
#define RZ_PARISC_PLTOFF16F 117 /* 16 bits LT-rel. address. */ |
Definition at line 2153 of file glibc_elf.h.
#define RZ_PARISC_PLTOFF16WF 118 /* 16 bits PLT-rel. address. */ |
Definition at line 2154 of file glibc_elf.h.
#define RZ_PARISC_PLTOFF21L 50 /* PLT rel. address, left 21 bits. */ |
Definition at line 2115 of file glibc_elf.h.
Definition at line 2112 of file glibc_elf.h.
Definition at line 2149 of file glibc_elf.h.
#define RZ_PARISC_SEGBASE 48 /* No relocation, set segment base. */ |
Definition at line 2113 of file glibc_elf.h.
#define RZ_PARISC_SEGREL32 49 /* 32 bits segment rel. address. */ |
Definition at line 2114 of file glibc_elf.h.
#define RZ_PARISC_SEGREL64 112 /* 64 bits segment rel. address. */ |
Definition at line 2150 of file glibc_elf.h.
#define RZ_PARISC_TLS_DTPMOD32 242 /* DTP module 32-bit. */ |
Definition at line 2194 of file glibc_elf.h.
#define RZ_PARISC_TLS_DTPMOD64 243 /* DTP module 64-bit. */ |
Definition at line 2195 of file glibc_elf.h.
#define RZ_PARISC_TLS_DTPOFF32 244 /* DTP offset 32-bit. */ |
Definition at line 2196 of file glibc_elf.h.
#define RZ_PARISC_TLS_DTPOFF64 245 /* DTP offset 32-bit. */ |
Definition at line 2197 of file glibc_elf.h.
#define RZ_PARISC_TLS_GD14R 235 /* GD 14-bit right. */ |
Definition at line 2187 of file glibc_elf.h.
#define RZ_PARISC_TLS_GD21L 234 /* GD 21-bit left. */ |
Definition at line 2186 of file glibc_elf.h.
Definition at line 2188 of file glibc_elf.h.
#define RZ_PARISC_TLS_IE14R RZ_PARISC_LTOFF_TP14R |
Definition at line 2201 of file glibc_elf.h.
#define RZ_PARISC_TLS_IE21L RZ_PARISC_LTOFF_TP21L |
Definition at line 2200 of file glibc_elf.h.
Definition at line 2190 of file glibc_elf.h.
Definition at line 2189 of file glibc_elf.h.
Definition at line 2191 of file glibc_elf.h.
Definition at line 2193 of file glibc_elf.h.
Definition at line 2192 of file glibc_elf.h.
#define RZ_PARISC_TLS_LE14R RZ_PARISC_TPREL14R |
Definition at line 2199 of file glibc_elf.h.
#define RZ_PARISC_TLS_LE21L RZ_PARISC_TPREL21L |
Definition at line 2198 of file glibc_elf.h.
#define RZ_PARISC_TLS_TPREL32 RZ_PARISC_TPREL32 |
Definition at line 2202 of file glibc_elf.h.
#define RZ_PARISC_TLS_TPREL64 RZ_PARISC_TPREL64 |
Definition at line 2203 of file glibc_elf.h.
#define RZ_PARISC_TPREL14DR 220 /* TP-rel. address, right 14 bits. */ |
Definition at line 2174 of file glibc_elf.h.
#define RZ_PARISC_TPREL14R 158 /* TP-rel. address, right 14 bits. */ |
Definition at line 2168 of file glibc_elf.h.
#define RZ_PARISC_TPREL14WR 219 /* TP-rel. address, right 14 bits. */ |
Definition at line 2173 of file glibc_elf.h.
#define RZ_PARISC_TPREL16DF 223 /* 16 bits TP-rel. address. */ |
Definition at line 2177 of file glibc_elf.h.
#define RZ_PARISC_TPREL16F 221 /* 16 bits TP-rel. address. */ |
Definition at line 2175 of file glibc_elf.h.
#define RZ_PARISC_TPREL16WF 222 /* 16 bits TP-rel. address. */ |
Definition at line 2176 of file glibc_elf.h.
#define RZ_PARISC_TPREL21L 154 /* TP-rel. address, left 21 bits. */ |
Definition at line 2167 of file glibc_elf.h.
#define RZ_PARISC_TPREL32 153 /* 32 bits TP-rel. address. */ |
Definition at line 2166 of file glibc_elf.h.
#define RZ_PARISC_TPREL64 216 /* 64 bits TP-rel. address. */ |
Definition at line 2172 of file glibc_elf.h.
#define RZ_PPC64_ADDR14 RZ_PPC_ADDR14 /* 16bit address, word aligned */ |
Definition at line 2446 of file glibc_elf.h.
#define RZ_PPC64_ADDR14_BRNTAKEN RZ_PPC_ADDR14_BRNTAKEN |
Definition at line 2448 of file glibc_elf.h.
#define RZ_PPC64_ADDR14_BRTAKEN RZ_PPC_ADDR14_BRTAKEN |
Definition at line 2447 of file glibc_elf.h.
#define RZ_PPC64_ADDR16 RZ_PPC_ADDR16 /* 16bit absolute address */ |
Definition at line 2442 of file glibc_elf.h.
Definition at line 2496 of file glibc_elf.h.
#define RZ_PPC64_ADDR16_HA RZ_PPC_ADDR16_HA /* adjusted high 16bits. */ |
Definition at line 2445 of file glibc_elf.h.
#define RZ_PPC64_ADDR16_HI RZ_PPC_ADDR16_HI /* high 16bits of address. */ |
Definition at line 2444 of file glibc_elf.h.
#define RZ_PPC64_ADDR16_HIGH 110 |
Definition at line 2554 of file glibc_elf.h.
#define RZ_PPC64_ADDR16_HIGHA 111 |
Definition at line 2555 of file glibc_elf.h.
Definition at line 2478 of file glibc_elf.h.
Definition at line 2479 of file glibc_elf.h.
Definition at line 2480 of file glibc_elf.h.
Definition at line 2481 of file glibc_elf.h.
#define RZ_PPC64_ADDR16_LO RZ_PPC_ADDR16_LO /* lower 16bits of address */ |
Definition at line 2443 of file glibc_elf.h.
Definition at line 2497 of file glibc_elf.h.
#define RZ_PPC64_ADDR24 RZ_PPC_ADDR24 /* 24bit address, word aligned */ |
Definition at line 2441 of file glibc_elf.h.
Definition at line 2476 of file glibc_elf.h.
#define RZ_PPC64_ADDR32 RZ_PPC_ADDR32 /* 32bit absolute address */ |
Definition at line 2440 of file glibc_elf.h.
Definition at line 2477 of file glibc_elf.h.
#define RZ_PPC64_COPY RZ_PPC_COPY |
Definition at line 2458 of file glibc_elf.h.
#define RZ_PPC64_DTPMOD64 68 /* doubleword64 (sym+add)@dtpmod */ |
Definition at line 2510 of file glibc_elf.h.
#define RZ_PPC64_DTPREL16 74 /* half16* (sym+add)@dtprel */ |
Definition at line 2516 of file glibc_elf.h.
#define RZ_PPC64_DTPREL16_DS 101 /* half16ds* (sym+add)@dtprel */ |
Definition at line 2543 of file glibc_elf.h.
#define RZ_PPC64_DTPREL16_HA 77 /* half16 (sym+add)@dtprel@ha */ |
Definition at line 2519 of file glibc_elf.h.
Definition at line 2518 of file glibc_elf.h.
#define RZ_PPC64_DTPREL16_HIGH 114 |
Definition at line 2558 of file glibc_elf.h.
#define RZ_PPC64_DTPREL16_HIGHA 115 |
Definition at line 2559 of file glibc_elf.h.
#define RZ_PPC64_DTPREL16_HIGHER 103 /* half16 (sym+add)@dtprel@higher */ |
Definition at line 2545 of file glibc_elf.h.
#define RZ_PPC64_DTPREL16_HIGHERA 104 /* half16 (sym+add)@dtprel@highera */ |
Definition at line 2546 of file glibc_elf.h.
#define RZ_PPC64_DTPREL16_HIGHEST 105 /* half16 (sym+add)@dtprel@highest */ |
Definition at line 2547 of file glibc_elf.h.
#define RZ_PPC64_DTPREL16_HIGHESTA 106 /* half16 (sym+add)@dtprel@highesta */ |
Definition at line 2548 of file glibc_elf.h.
#define RZ_PPC64_DTPREL16_LO 75 /* half16 (sym+add)@dtprel@l */ |
Definition at line 2517 of file glibc_elf.h.
#define RZ_PPC64_DTPREL16_LO_DS 102 /* half16ds (sym+add)@dtprel@l */ |
Definition at line 2544 of file glibc_elf.h.
#define RZ_PPC64_DTPREL64 78 /* doubleword64 (sym+add)@dtprel */ |
Definition at line 2520 of file glibc_elf.h.
#define RZ_PPC64_GLOB_DAT RZ_PPC_GLOB_DAT |
Definition at line 2459 of file glibc_elf.h.
#define RZ_PPC64_GOT16 RZ_PPC_GOT16 |
Definition at line 2453 of file glibc_elf.h.
Definition at line 2498 of file glibc_elf.h.
#define RZ_PPC64_GOT16_HA RZ_PPC_GOT16_HA |
Definition at line 2456 of file glibc_elf.h.
#define RZ_PPC64_GOT16_HI RZ_PPC_GOT16_HI |
Definition at line 2455 of file glibc_elf.h.
#define RZ_PPC64_GOT16_LO RZ_PPC_GOT16_LO |
Definition at line 2454 of file glibc_elf.h.
Definition at line 2499 of file glibc_elf.h.
#define RZ_PPC64_GOT_DTPREL16_DS 91 /* half16ds* (sym+add)@got@dtprel */ |
Definition at line 2533 of file glibc_elf.h.
#define RZ_PPC64_GOT_DTPREL16_HA 94 /* half16 (sym+add)@got@dtprel@ha */ |
Definition at line 2536 of file glibc_elf.h.
Definition at line 2535 of file glibc_elf.h.
#define RZ_PPC64_GOT_DTPREL16_LO_DS 92 /* half16ds (sym+add)@got@dtprel@l */ |
Definition at line 2534 of file glibc_elf.h.
#define RZ_PPC64_GOT_TLSGD16 79 /* half16* (sym+add)@got@tlsgd */ |
Definition at line 2521 of file glibc_elf.h.
#define RZ_PPC64_GOT_TLSGD16_HA 82 /* half16 (sym+add)@got@tlsgd@ha */ |
Definition at line 2524 of file glibc_elf.h.
Definition at line 2523 of file glibc_elf.h.
#define RZ_PPC64_GOT_TLSGD16_LO 80 /* half16 (sym+add)@got@tlsgd@l */ |
Definition at line 2522 of file glibc_elf.h.
#define RZ_PPC64_GOT_TLSLD16 83 /* half16* (sym+add)@got@tlsld */ |
Definition at line 2525 of file glibc_elf.h.
#define RZ_PPC64_GOT_TLSLD16_HA 86 /* half16 (sym+add)@got@tlsld@ha */ |
Definition at line 2528 of file glibc_elf.h.
Definition at line 2527 of file glibc_elf.h.
#define RZ_PPC64_GOT_TLSLD16_LO 84 /* half16 (sym+add)@got@tlsld@l */ |
Definition at line 2526 of file glibc_elf.h.
#define RZ_PPC64_GOT_TPREL16_DS 87 /* half16ds* (sym+add)@got@tprel */ |
Definition at line 2529 of file glibc_elf.h.
#define RZ_PPC64_GOT_TPREL16_HA 90 /* half16 (sym+add)@got@tprel@ha */ |
Definition at line 2532 of file glibc_elf.h.
Definition at line 2531 of file glibc_elf.h.
#define RZ_PPC64_GOT_TPREL16_LO_DS 88 /* half16ds (sym+add)@got@tprel@l */ |
Definition at line 2530 of file glibc_elf.h.
#define RZ_PPC64_IRELATIVE 248 |
Definition at line 2563 of file glibc_elf.h.
#define RZ_PPC64_JMP_IREL 247 |
Definition at line 2562 of file glibc_elf.h.
#define RZ_PPC64_JMP_SLOT RZ_PPC_JMP_SLOT |
Definition at line 2460 of file glibc_elf.h.
#define RZ_PPC64_NONE RZ_PPC_NONE |
Definition at line 2439 of file glibc_elf.h.
#define RZ_PPC64_PLT16_HA RZ_PPC_PLT16_HA |
Definition at line 2470 of file glibc_elf.h.
#define RZ_PPC64_PLT16_HI RZ_PPC_PLT16_HI |
Definition at line 2469 of file glibc_elf.h.
#define RZ_PPC64_PLT16_LO RZ_PPC_PLT16_LO |
Definition at line 2468 of file glibc_elf.h.
Definition at line 2500 of file glibc_elf.h.
#define RZ_PPC64_PLT32 RZ_PPC_PLT32 |
Definition at line 2466 of file glibc_elf.h.
Definition at line 2484 of file glibc_elf.h.
Definition at line 2491 of file glibc_elf.h.
Definition at line 2505 of file glibc_elf.h.
Definition at line 2494 of file glibc_elf.h.
Definition at line 2493 of file glibc_elf.h.
Definition at line 2492 of file glibc_elf.h.
Definition at line 2506 of file glibc_elf.h.
#define RZ_PPC64_PLTREL32 RZ_PPC_PLTREL32 |
Definition at line 2467 of file glibc_elf.h.
Definition at line 2485 of file glibc_elf.h.
#define RZ_PPC64_REL14 RZ_PPC_REL14 /* PC relative 16 bit */ |
Definition at line 2450 of file glibc_elf.h.
#define RZ_PPC64_REL14_BRNTAKEN RZ_PPC_REL14_BRNTAKEN |
Definition at line 2452 of file glibc_elf.h.
#define RZ_PPC64_REL14_BRTAKEN RZ_PPC_REL14_BRTAKEN |
Definition at line 2451 of file glibc_elf.h.
#define RZ_PPC64_REL16 249 /* half16 (sym+add-.) */ |
Definition at line 2564 of file glibc_elf.h.
#define RZ_PPC64_REL16_HA 252 /* half16 (sym+add-.)@ha */ |
Definition at line 2567 of file glibc_elf.h.
Definition at line 2566 of file glibc_elf.h.
#define RZ_PPC64_REL16_LO 250 /* half16 (sym+add-.)@l */ |
Definition at line 2565 of file glibc_elf.h.
#define RZ_PPC64_REL24 RZ_PPC_REL24 /* PC-rel. 26 bit, word aligned */ |
Definition at line 2449 of file glibc_elf.h.
#define RZ_PPC64_REL32 RZ_PPC_REL32 |
Definition at line 2465 of file glibc_elf.h.
Definition at line 2483 of file glibc_elf.h.
#define RZ_PPC64_RELATIVE RZ_PPC_RELATIVE |
Definition at line 2461 of file glibc_elf.h.
#define RZ_PPC64_SECTOFF RZ_PPC_SECTOFF |
Definition at line 2472 of file glibc_elf.h.
Definition at line 2501 of file glibc_elf.h.
#define RZ_PPC64_SECTOFF_HA RZ_PPC_SECTOFF_HA |
Definition at line 2475 of file glibc_elf.h.
#define RZ_PPC64_SECTOFF_HI RZ_PPC_SECTOFF_HI |
Definition at line 2474 of file glibc_elf.h.
#define RZ_PPC64_SECTOFF_LO RZ_PPC_SECTOFF_LO |
Definition at line 2473 of file glibc_elf.h.
Definition at line 2502 of file glibc_elf.h.
#define RZ_PPC64_TLS 67 /* none (sym+add)@tls */ |
Definition at line 2509 of file glibc_elf.h.
#define RZ_PPC64_TLSGD 107 /* none (sym+add)@tlsgd */ |
Definition at line 2549 of file glibc_elf.h.
#define RZ_PPC64_TLSLD 108 /* none (sym+add)@tlsld */ |
Definition at line 2550 of file glibc_elf.h.
#define RZ_PPC64_TOC 51 /* doubleword64 .TOC */ |
Definition at line 2490 of file glibc_elf.h.
Definition at line 2486 of file glibc_elf.h.
Definition at line 2503 of file glibc_elf.h.
Definition at line 2489 of file glibc_elf.h.
Definition at line 2488 of file glibc_elf.h.
Definition at line 2487 of file glibc_elf.h.
Definition at line 2504 of file glibc_elf.h.
#define RZ_PPC64_TOCSAVE 109 /* none */ |
Definition at line 2551 of file glibc_elf.h.
#define RZ_PPC64_TPREL16 69 /* half16* (sym+add)@tprel */ |
Definition at line 2511 of file glibc_elf.h.
#define RZ_PPC64_TPREL16_DS 95 /* half16ds* (sym+add)@tprel */ |
Definition at line 2537 of file glibc_elf.h.
#define RZ_PPC64_TPREL16_HA 72 /* half16 (sym+add)@tprel@ha */ |
Definition at line 2514 of file glibc_elf.h.
Definition at line 2513 of file glibc_elf.h.
#define RZ_PPC64_TPREL16_HIGH 112 |
Definition at line 2556 of file glibc_elf.h.
#define RZ_PPC64_TPREL16_HIGHA 113 |
Definition at line 2557 of file glibc_elf.h.
#define RZ_PPC64_TPREL16_HIGHER 97 /* half16 (sym+add)@tprel@higher */ |
Definition at line 2539 of file glibc_elf.h.
#define RZ_PPC64_TPREL16_HIGHERA 98 /* half16 (sym+add)@tprel@highera */ |
Definition at line 2540 of file glibc_elf.h.
#define RZ_PPC64_TPREL16_HIGHEST 99 /* half16 (sym+add)@tprel@highest */ |
Definition at line 2541 of file glibc_elf.h.
#define RZ_PPC64_TPREL16_HIGHESTA 100 /* half16 (sym+add)@tprel@highesta */ |
Definition at line 2542 of file glibc_elf.h.
#define RZ_PPC64_TPREL16_LO 70 /* half16 (sym+add)@tprel@l */ |
Definition at line 2512 of file glibc_elf.h.
#define RZ_PPC64_TPREL16_LO_DS 96 /* half16ds (sym+add)@tprel@l */ |
Definition at line 2538 of file glibc_elf.h.
#define RZ_PPC64_TPREL64 73 /* doubleword64 (sym+add)@tprel */ |
Definition at line 2515 of file glibc_elf.h.
#define RZ_PPC64_UADDR16 RZ_PPC_UADDR16 |
Definition at line 2464 of file glibc_elf.h.
#define RZ_PPC64_UADDR32 RZ_PPC_UADDR32 |
Definition at line 2463 of file glibc_elf.h.
Definition at line 2482 of file glibc_elf.h.
Definition at line 2327 of file glibc_elf.h.
#define RZ_PPC_ADDR14_BRNTAKEN 9 |
Definition at line 2329 of file glibc_elf.h.
#define RZ_PPC_ADDR14_BRTAKEN 8 |
Definition at line 2328 of file glibc_elf.h.
#define RZ_PPC_ADDR16 3 /* 16bit absolute address */ |
Definition at line 2323 of file glibc_elf.h.
#define RZ_PPC_ADDR16_HA 6 /* adjusted high 16bit */ |
Definition at line 2326 of file glibc_elf.h.
#define RZ_PPC_ADDR16_HI 5 /* high 16bit of absolute address */ |
Definition at line 2325 of file glibc_elf.h.
#define RZ_PPC_ADDR16_LO 4 /* lower 16bit of absolute address */ |
Definition at line 2324 of file glibc_elf.h.
Definition at line 2322 of file glibc_elf.h.
#define RZ_PPC_ADDR32 1 /* 32bit absolute address */ |
Definition at line 2321 of file glibc_elf.h.
#define RZ_PPC_COPY 19 |
Definition at line 2339 of file glibc_elf.h.
#define RZ_PPC_DIAB_RELSDA_HA 185 /* like EMB_RELSDA, adjusted high 16 */ |
Definition at line 2415 of file glibc_elf.h.
#define RZ_PPC_DIAB_RELSDA_HI 184 /* like EMB_RELSDA, but high 16 bit */ |
Definition at line 2414 of file glibc_elf.h.
#define RZ_PPC_DIAB_RELSDA_LO 183 /* like EMB_RELSDA, but lower 16 bit */ |
Definition at line 2413 of file glibc_elf.h.
#define RZ_PPC_DIAB_SDA21_HA 182 /* like EMB_SDA21, adjusted high 16 */ |
Definition at line 2412 of file glibc_elf.h.
#define RZ_PPC_DIAB_SDA21_HI 181 /* like EMB_SDA21, but high 16 bit */ |
Definition at line 2411 of file glibc_elf.h.
#define RZ_PPC_DIAB_SDA21_LO 180 /* like EMB_SDA21, but lower 16 bit */ |
Definition at line 2410 of file glibc_elf.h.
#define RZ_PPC_DTPMOD32 68 /* word32 (sym+add)@dtpmod */ |
Definition at line 2360 of file glibc_elf.h.
#define RZ_PPC_DTPREL16 74 /* half16* (sym+add)@dtprel */ |
Definition at line 2366 of file glibc_elf.h.
#define RZ_PPC_DTPREL16_HA 77 /* half16 (sym+add)@dtprel@ha */ |
Definition at line 2369 of file glibc_elf.h.
Definition at line 2368 of file glibc_elf.h.
#define RZ_PPC_DTPREL16_LO 75 /* half16 (sym+add)@dtprel@l */ |
Definition at line 2367 of file glibc_elf.h.
#define RZ_PPC_DTPREL32 78 /* word32 (sym+add)@dtprel */ |
Definition at line 2370 of file glibc_elf.h.
#define RZ_PPC_EMB_BIT_FLD 115 |
Definition at line 2406 of file glibc_elf.h.
#define RZ_PPC_EMB_MRKREF 110 |
Definition at line 2401 of file glibc_elf.h.
#define RZ_PPC_EMB_NADDR16 102 |
Definition at line 2393 of file glibc_elf.h.
#define RZ_PPC_EMB_NADDR16_HA 105 |
Definition at line 2396 of file glibc_elf.h.
#define RZ_PPC_EMB_NADDR16_HI 104 |
Definition at line 2395 of file glibc_elf.h.
#define RZ_PPC_EMB_NADDR16_LO 103 |
Definition at line 2394 of file glibc_elf.h.
#define RZ_PPC_EMB_NADDR32 101 |
Definition at line 2392 of file glibc_elf.h.
Definition at line 2407 of file glibc_elf.h.
#define RZ_PPC_EMB_RELSEC16 111 |
Definition at line 2402 of file glibc_elf.h.
#define RZ_PPC_EMB_RELST_HA 114 |
Definition at line 2405 of file glibc_elf.h.
#define RZ_PPC_EMB_RELST_HI 113 |
Definition at line 2404 of file glibc_elf.h.
#define RZ_PPC_EMB_RELST_LO 112 |
Definition at line 2403 of file glibc_elf.h.
Definition at line 2400 of file glibc_elf.h.
#define RZ_PPC_EMB_SDA2I16 107 |
Definition at line 2398 of file glibc_elf.h.
#define RZ_PPC_EMB_SDA2REL 108 |
Definition at line 2399 of file glibc_elf.h.
#define RZ_PPC_EMB_SDAI16 106 |
Definition at line 2397 of file glibc_elf.h.
#define RZ_PPC_GLOB_DAT 20 |
Definition at line 2340 of file glibc_elf.h.
#define RZ_PPC_GOT16 14 |
Definition at line 2334 of file glibc_elf.h.
#define RZ_PPC_GOT16_HA 17 |
Definition at line 2337 of file glibc_elf.h.
#define RZ_PPC_GOT16_HI 16 |
Definition at line 2336 of file glibc_elf.h.
#define RZ_PPC_GOT16_LO 15 |
Definition at line 2335 of file glibc_elf.h.
#define RZ_PPC_GOT_DTPREL16 91 /* half16* (sym+add)@got@dtprel */ |
Definition at line 2383 of file glibc_elf.h.
#define RZ_PPC_GOT_DTPREL16_HA 94 /* half16* (sym+add)@got@dtprel@ha */ |
Definition at line 2386 of file glibc_elf.h.
Definition at line 2385 of file glibc_elf.h.
#define RZ_PPC_GOT_DTPREL16_LO 92 /* half16* (sym+add)@got@dtprel@l */ |
Definition at line 2384 of file glibc_elf.h.
#define RZ_PPC_GOT_TLSGD16 79 /* half16* (sym+add)@got@tlsgd */ |
Definition at line 2371 of file glibc_elf.h.
#define RZ_PPC_GOT_TLSGD16_HA 82 /* half16 (sym+add)@got@tlsgd@ha */ |
Definition at line 2374 of file glibc_elf.h.
Definition at line 2373 of file glibc_elf.h.
#define RZ_PPC_GOT_TLSGD16_LO 80 /* half16 (sym+add)@got@tlsgd@l */ |
Definition at line 2372 of file glibc_elf.h.
#define RZ_PPC_GOT_TLSLD16 83 /* half16* (sym+add)@got@tlsld */ |
Definition at line 2375 of file glibc_elf.h.
#define RZ_PPC_GOT_TLSLD16_HA 86 /* half16 (sym+add)@got@tlsld@ha */ |
Definition at line 2378 of file glibc_elf.h.
Definition at line 2377 of file glibc_elf.h.
#define RZ_PPC_GOT_TLSLD16_LO 84 /* half16 (sym+add)@got@tlsld@l */ |
Definition at line 2376 of file glibc_elf.h.
#define RZ_PPC_GOT_TPREL16 87 /* half16* (sym+add)@got@tprel */ |
Definition at line 2379 of file glibc_elf.h.
#define RZ_PPC_GOT_TPREL16_HA 90 /* half16 (sym+add)@got@tprel@ha */ |
Definition at line 2382 of file glibc_elf.h.
Definition at line 2381 of file glibc_elf.h.
#define RZ_PPC_GOT_TPREL16_LO 88 /* half16 (sym+add)@got@tprel@l */ |
Definition at line 2380 of file glibc_elf.h.
#define RZ_PPC_IRELATIVE 248 |
Definition at line 2418 of file glibc_elf.h.
#define RZ_PPC_JMP_SLOT 21 |
Definition at line 2341 of file glibc_elf.h.
#define RZ_PPC_LOCAL24PC 23 |
Definition at line 2343 of file glibc_elf.h.
#define RZ_PPC_NONE 0 |
Definition at line 2320 of file glibc_elf.h.
#define RZ_PPC_PLT16_HA 31 |
Definition at line 2351 of file glibc_elf.h.
#define RZ_PPC_PLT16_HI 30 |
Definition at line 2350 of file glibc_elf.h.
#define RZ_PPC_PLT16_LO 29 |
Definition at line 2349 of file glibc_elf.h.
#define RZ_PPC_PLT32 27 |
Definition at line 2347 of file glibc_elf.h.
#define RZ_PPC_PLTREL24 18 |
Definition at line 2338 of file glibc_elf.h.
#define RZ_PPC_PLTREL32 28 |
Definition at line 2348 of file glibc_elf.h.
Definition at line 2331 of file glibc_elf.h.
#define RZ_PPC_REL14_BRNTAKEN 13 |
Definition at line 2333 of file glibc_elf.h.
#define RZ_PPC_REL14_BRTAKEN 12 |
Definition at line 2332 of file glibc_elf.h.
#define RZ_PPC_REL16 249 /* half16 (sym+add-.) */ |
Definition at line 2421 of file glibc_elf.h.
#define RZ_PPC_REL16_HA 252 /* half16 (sym+add-.)@ha */ |
Definition at line 2424 of file glibc_elf.h.
Definition at line 2423 of file glibc_elf.h.
#define RZ_PPC_REL16_LO 250 /* half16 (sym+add-.)@l */ |
Definition at line 2422 of file glibc_elf.h.
Definition at line 2330 of file glibc_elf.h.
#define RZ_PPC_REL32 26 |
Definition at line 2346 of file glibc_elf.h.
#define RZ_PPC_RELATIVE 22 |
Definition at line 2342 of file glibc_elf.h.
#define RZ_PPC_SDAREL16 32 |
Definition at line 2352 of file glibc_elf.h.
#define RZ_PPC_SECTOFF 33 |
Definition at line 2353 of file glibc_elf.h.
#define RZ_PPC_SECTOFF_HA 36 |
Definition at line 2356 of file glibc_elf.h.
#define RZ_PPC_SECTOFF_HI 35 |
Definition at line 2355 of file glibc_elf.h.
#define RZ_PPC_SECTOFF_LO 34 |
Definition at line 2354 of file glibc_elf.h.
#define RZ_PPC_TLS 67 /* none (sym+add)@tls */ |
Definition at line 2359 of file glibc_elf.h.
#define RZ_PPC_TLSGD 95 /* none (sym+add)@tlsgd */ |
Definition at line 2387 of file glibc_elf.h.
#define RZ_PPC_TLSLD 96 /* none (sym+add)@tlsld */ |
Definition at line 2388 of file glibc_elf.h.
#define RZ_PPC_TOC16 255 |
Definition at line 2428 of file glibc_elf.h.
#define RZ_PPC_TPREL16 69 /* half16* (sym+add)@tprel */ |
Definition at line 2361 of file glibc_elf.h.
#define RZ_PPC_TPREL16_HA 72 /* half16 (sym+add)@tprel@ha */ |
Definition at line 2364 of file glibc_elf.h.
Definition at line 2363 of file glibc_elf.h.
#define RZ_PPC_TPREL16_LO 70 /* half16 (sym+add)@tprel@l */ |
Definition at line 2362 of file glibc_elf.h.
#define RZ_PPC_TPREL32 73 /* word32 (sym+add)@tprel */ |
Definition at line 2365 of file glibc_elf.h.
#define RZ_PPC_UADDR16 25 |
Definition at line 2345 of file glibc_elf.h.
#define RZ_PPC_UADDR32 24 |
Definition at line 2344 of file glibc_elf.h.
#define RZ_RISCV_32 1 |
Definition at line 3733 of file glibc_elf.h.
#define RZ_RISCV_32_PCREL 57 |
Definition at line 3785 of file glibc_elf.h.
#define RZ_RISCV_64 2 |
Definition at line 3734 of file glibc_elf.h.
#define RZ_RISCV_ADD16 34 |
Definition at line 3762 of file glibc_elf.h.
#define RZ_RISCV_ADD32 35 |
Definition at line 3763 of file glibc_elf.h.
#define RZ_RISCV_ADD64 36 |
Definition at line 3764 of file glibc_elf.h.
#define RZ_RISCV_ADD8 33 |
Definition at line 3761 of file glibc_elf.h.
#define RZ_RISCV_ALIGN 43 |
Definition at line 3771 of file glibc_elf.h.
#define RZ_RISCV_BRANCH 16 |
Definition at line 3744 of file glibc_elf.h.
#define RZ_RISCV_CALL 18 |
Definition at line 3746 of file glibc_elf.h.
#define RZ_RISCV_CALL_PLT 19 |
Definition at line 3747 of file glibc_elf.h.
#define RZ_RISCV_COPY 4 |
Definition at line 3736 of file glibc_elf.h.
#define RZ_RISCV_GNU_VTENTRY 42 |
Definition at line 3770 of file glibc_elf.h.
#define RZ_RISCV_GNU_VTINHERIT 41 |
Definition at line 3769 of file glibc_elf.h.
#define RZ_RISCV_GOT_HI20 20 |
Definition at line 3748 of file glibc_elf.h.
#define RZ_RISCV_GPREL_I 47 |
Definition at line 3775 of file glibc_elf.h.
#define RZ_RISCV_GPREL_S 48 |
Definition at line 3776 of file glibc_elf.h.
#define RZ_RISCV_HI20 26 |
Definition at line 3754 of file glibc_elf.h.
#define RZ_RISCV_IRELATIVE 58 |
Definition at line 3786 of file glibc_elf.h.
#define RZ_RISCV_JAL 17 |
Definition at line 3745 of file glibc_elf.h.
#define RZ_RISCV_JUMP_SLOT 5 |
Definition at line 3737 of file glibc_elf.h.
#define RZ_RISCV_LO12_I 27 |
Definition at line 3755 of file glibc_elf.h.
#define RZ_RISCV_LO12_S 28 |
Definition at line 3756 of file glibc_elf.h.
#define RZ_RISCV_NONE 0 |
Definition at line 3732 of file glibc_elf.h.
#define RZ_RISCV_NUM 59 |
Definition at line 3788 of file glibc_elf.h.
#define RZ_RISCV_PCREL_HI20 23 |
Definition at line 3751 of file glibc_elf.h.
#define RZ_RISCV_PCREL_LO12_I 24 |
Definition at line 3752 of file glibc_elf.h.
#define RZ_RISCV_PCREL_LO12_S 25 |
Definition at line 3753 of file glibc_elf.h.
#define RZ_RISCV_RELATIVE 3 |
Definition at line 3735 of file glibc_elf.h.
#define RZ_RISCV_RELAX 51 |
Definition at line 3779 of file glibc_elf.h.
#define RZ_RISCV_RVC_BRANCH 44 |
Definition at line 3772 of file glibc_elf.h.
#define RZ_RISCV_RVC_JUMP 45 |
Definition at line 3773 of file glibc_elf.h.
#define RZ_RISCV_RVC_LUI 46 |
Definition at line 3774 of file glibc_elf.h.
#define RZ_RISCV_SET16 55 |
Definition at line 3783 of file glibc_elf.h.
#define RZ_RISCV_SET32 56 |
Definition at line 3784 of file glibc_elf.h.
#define RZ_RISCV_SET6 53 |
Definition at line 3781 of file glibc_elf.h.
#define RZ_RISCV_SET8 54 |
Definition at line 3782 of file glibc_elf.h.
#define RZ_RISCV_SUB16 38 |
Definition at line 3766 of file glibc_elf.h.
#define RZ_RISCV_SUB32 39 |
Definition at line 3767 of file glibc_elf.h.
#define RZ_RISCV_SUB6 52 |
Definition at line 3780 of file glibc_elf.h.
#define RZ_RISCV_SUB64 40 |
Definition at line 3768 of file glibc_elf.h.
#define RZ_RISCV_SUB8 37 |
Definition at line 3765 of file glibc_elf.h.
#define RZ_RISCV_TLS_DTPMOD32 6 |
Definition at line 3738 of file glibc_elf.h.
#define RZ_RISCV_TLS_DTPMOD64 7 |
Definition at line 3739 of file glibc_elf.h.
#define RZ_RISCV_TLS_DTPREL32 8 |
Definition at line 3740 of file glibc_elf.h.
#define RZ_RISCV_TLS_DTPREL64 9 |
Definition at line 3741 of file glibc_elf.h.
#define RZ_RISCV_TLS_GD_HI20 22 |
Definition at line 3750 of file glibc_elf.h.
#define RZ_RISCV_TLS_GOT_HI20 21 |
Definition at line 3749 of file glibc_elf.h.
#define RZ_RISCV_TLS_TPREL32 10 |
Definition at line 3742 of file glibc_elf.h.
#define RZ_RISCV_TLS_TPREL64 11 |
Definition at line 3743 of file glibc_elf.h.
#define RZ_RISCV_TPREL_ADD 32 |
Definition at line 3760 of file glibc_elf.h.
#define RZ_RISCV_TPREL_HI20 29 |
Definition at line 3757 of file glibc_elf.h.
#define RZ_RISCV_TPREL_I 49 |
Definition at line 3777 of file glibc_elf.h.
#define RZ_RISCV_TPREL_LO12_I 30 |
Definition at line 3758 of file glibc_elf.h.
#define RZ_RISCV_TPREL_LO12_S 31 |
Definition at line 3759 of file glibc_elf.h.
#define RZ_RISCV_TPREL_S 50 |
Definition at line 3778 of file glibc_elf.h.
#define RZ_SH_ALIGN 29 |
Definition at line 3158 of file glibc_elf.h.
#define RZ_SH_CODE 30 |
Definition at line 3159 of file glibc_elf.h.
#define RZ_SH_COPY 162 |
Definition at line 3175 of file glibc_elf.h.
#define RZ_SH_COUNT 28 |
Definition at line 3157 of file glibc_elf.h.
#define RZ_SH_DATA 31 |
Definition at line 3160 of file glibc_elf.h.
#define RZ_SH_DIR32 1 |
Definition at line 3145 of file glibc_elf.h.
#define RZ_SH_DIR8BP 7 |
Definition at line 3151 of file glibc_elf.h.
#define RZ_SH_DIR8L 9 |
Definition at line 3153 of file glibc_elf.h.
#define RZ_SH_DIR8W 8 |
Definition at line 3152 of file glibc_elf.h.
#define RZ_SH_DIR8WPL 5 |
Definition at line 3149 of file glibc_elf.h.
#define RZ_SH_DIR8WPN 3 |
Definition at line 3147 of file glibc_elf.h.
#define RZ_SH_DIR8WPZ 6 |
Definition at line 3150 of file glibc_elf.h.
#define RZ_SH_GLOB_DAT 163 |
Definition at line 3176 of file glibc_elf.h.
#define RZ_SH_GNU_VTENTRY 35 |
Definition at line 3164 of file glibc_elf.h.
#define RZ_SH_GNU_VTINHERIT 34 |
Definition at line 3163 of file glibc_elf.h.
#define RZ_SH_GOT32 160 |
Definition at line 3173 of file glibc_elf.h.
#define RZ_SH_GOTOFF 166 |
Definition at line 3179 of file glibc_elf.h.
#define RZ_SH_GOTPC 167 |
Definition at line 3180 of file glibc_elf.h.
#define RZ_SH_IND12W 4 |
Definition at line 3148 of file glibc_elf.h.
#define RZ_SH_JMP_SLOT 164 |
Definition at line 3177 of file glibc_elf.h.
#define RZ_SH_LABEL 32 |
Definition at line 3161 of file glibc_elf.h.
#define RZ_SH_NONE 0 |
Definition at line 3144 of file glibc_elf.h.
#define RZ_SH_NUM 256 |
Definition at line 3182 of file glibc_elf.h.
#define RZ_SH_PLT32 161 |
Definition at line 3174 of file glibc_elf.h.
#define RZ_SH_REL32 2 |
Definition at line 3146 of file glibc_elf.h.
#define RZ_SH_RELATIVE 165 |
Definition at line 3178 of file glibc_elf.h.
#define RZ_SH_SWITCH16 25 |
Definition at line 3154 of file glibc_elf.h.
#define RZ_SH_SWITCH32 26 |
Definition at line 3155 of file glibc_elf.h.
#define RZ_SH_SWITCH8 33 |
Definition at line 3162 of file glibc_elf.h.
#define RZ_SH_TLS_DTPMOD32 149 |
Definition at line 3170 of file glibc_elf.h.
#define RZ_SH_TLS_DTPOFF32 150 |
Definition at line 3171 of file glibc_elf.h.
#define RZ_SH_TLS_GD_32 144 |
Definition at line 3165 of file glibc_elf.h.
#define RZ_SH_TLS_IE_32 147 |
Definition at line 3168 of file glibc_elf.h.
#define RZ_SH_TLS_LD_32 145 |
Definition at line 3166 of file glibc_elf.h.
#define RZ_SH_TLS_LDO_32 146 |
Definition at line 3167 of file glibc_elf.h.
#define RZ_SH_TLS_LE_32 148 |
Definition at line 3169 of file glibc_elf.h.
#define RZ_SH_TLS_TPOFF32 151 |
Definition at line 3172 of file glibc_elf.h.
#define RZ_SH_USES 27 |
Definition at line 3156 of file glibc_elf.h.
#define RZ_SPARC_10 30 /* Direct 10 bit */ |
Definition at line 1504 of file glibc_elf.h.
#define RZ_SPARC_11 31 /* Direct 11 bit */ |
Definition at line 1505 of file glibc_elf.h.
#define RZ_SPARC_13 11 /* Direct 13 bit */ |
Definition at line 1482 of file glibc_elf.h.
#define RZ_SPARC_16 2 /* Direct 16 bit */ |
Definition at line 1473 of file glibc_elf.h.
#define RZ_SPARC_22 10 /* Direct 22 bit */ |
Definition at line 1481 of file glibc_elf.h.
#define RZ_SPARC_32 3 /* Direct 32 bit */ |
Definition at line 1474 of file glibc_elf.h.
#define RZ_SPARC_5 44 /* Direct 5 bit */ |
Definition at line 1518 of file glibc_elf.h.
#define RZ_SPARC_6 45 /* Direct 6 bit */ |
Definition at line 1519 of file glibc_elf.h.
#define RZ_SPARC_64 32 /* Direct 64 bit */ |
Definition at line 1506 of file glibc_elf.h.
#define RZ_SPARC_7 43 /* Direct 7 bit */ |
Definition at line 1517 of file glibc_elf.h.
#define RZ_SPARC_8 1 /* Direct 8 bit */ |
Definition at line 1472 of file glibc_elf.h.
#define RZ_SPARC_COPY 19 /* Copy symbol at runtime */ |
Definition at line 1490 of file glibc_elf.h.
Definition at line 1476 of file glibc_elf.h.
Definition at line 1477 of file glibc_elf.h.
Definition at line 1520 of file glibc_elf.h.
Definition at line 1475 of file glibc_elf.h.
#define RZ_SPARC_GLOB_DAT 20 /* Create GOT entry */ |
Definition at line 1491 of file glibc_elf.h.
#define RZ_SPARC_GLOB_JMP 42 /* was part of v9 ABI but was removed */ |
Definition at line 1516 of file glibc_elf.h.
#define RZ_SPARC_GNU_VTENTRY 251 |
Definition at line 1566 of file glibc_elf.h.
#define RZ_SPARC_GNU_VTINHERIT 250 |
Definition at line 1565 of file glibc_elf.h.
Definition at line 1484 of file glibc_elf.h.
Definition at line 1485 of file glibc_elf.h.
Definition at line 1486 of file glibc_elf.h.
#define RZ_SPARC_GOTDATA_HIX22 80 |
Definition at line 1554 of file glibc_elf.h.
#define RZ_SPARC_GOTDATA_LOX10 81 |
Definition at line 1555 of file glibc_elf.h.
#define RZ_SPARC_GOTDATA_OP 84 |
Definition at line 1558 of file glibc_elf.h.
#define RZ_SPARC_GOTDATA_OP_HIX22 82 |
Definition at line 1556 of file glibc_elf.h.
#define RZ_SPARC_GOTDATA_OP_LOX10 83 |
Definition at line 1557 of file glibc_elf.h.
#define RZ_SPARC_H34 85 |
Definition at line 1559 of file glibc_elf.h.
#define RZ_SPARC_H44 50 /* Direct high 12 of 44 bit */ |
Definition at line 1524 of file glibc_elf.h.
Definition at line 1508 of file glibc_elf.h.
#define RZ_SPARC_HI22 9 /* High 22 bit */ |
Definition at line 1480 of file glibc_elf.h.
Definition at line 1499 of file glibc_elf.h.
#define RZ_SPARC_HIX22 48 /* High 22 bit complemented */ |
Definition at line 1522 of file glibc_elf.h.
#define RZ_SPARC_HM10 35 /* High middle 10 bits of ... */ |
Definition at line 1509 of file glibc_elf.h.
#define RZ_SPARC_IRELATIVE 249 |
Definition at line 1564 of file glibc_elf.h.
#define RZ_SPARC_JMP_IREL 248 |
Definition at line 1563 of file glibc_elf.h.
#define RZ_SPARC_JMP_SLOT 21 /* Create PLT entry */ |
Definition at line 1492 of file glibc_elf.h.
#define RZ_SPARC_L44 52 /* Direct low 10 of 44 bit */ |
Definition at line 1526 of file glibc_elf.h.
#define RZ_SPARC_LM22 36 /* Low middle 22 bits of ... */ |
Definition at line 1510 of file glibc_elf.h.
#define RZ_SPARC_LO10 12 /* Truncated 10 bit */ |
Definition at line 1483 of file glibc_elf.h.
Definition at line 1500 of file glibc_elf.h.
#define RZ_SPARC_LOX10 49 /* Truncated 11 bit complemented */ |
Definition at line 1523 of file glibc_elf.h.
#define RZ_SPARC_M44 51 /* Direct mid 22 of 44 bit */ |
Definition at line 1525 of file glibc_elf.h.
#define RZ_SPARC_NONE 0 /* No reloc */ |
Definition at line 1471 of file glibc_elf.h.
#define RZ_SPARC_NUM 253 |
Definition at line 1569 of file glibc_elf.h.
#define RZ_SPARC_OLO10 33 /* 10bit with secondary 13bit addend */ |
Definition at line 1507 of file glibc_elf.h.
Definition at line 1487 of file glibc_elf.h.
Definition at line 1488 of file glibc_elf.h.
Definition at line 1511 of file glibc_elf.h.
#define RZ_SPARC_PC_HM10 38 /* High middle 10 bit of ... */ |
Definition at line 1512 of file glibc_elf.h.
#define RZ_SPARC_PC_LM22 39 /* Low miggle 22 bits of ... */ |
Definition at line 1513 of file glibc_elf.h.
Definition at line 1503 of file glibc_elf.h.
Definition at line 1502 of file glibc_elf.h.
Definition at line 1501 of file glibc_elf.h.
Definition at line 1498 of file glibc_elf.h.
Definition at line 1521 of file glibc_elf.h.
#define RZ_SPARC_REGISTER 53 /* Global register usage */ |
Definition at line 1527 of file glibc_elf.h.
#define RZ_SPARC_RELATIVE 22 /* Adjust by program base */ |
Definition at line 1493 of file glibc_elf.h.
#define RZ_SPARC_REV32 252 |
Definition at line 1567 of file glibc_elf.h.
#define RZ_SPARC_SIZE32 86 |
Definition at line 1560 of file glibc_elf.h.
#define RZ_SPARC_SIZE64 87 |
Definition at line 1561 of file glibc_elf.h.
#define RZ_SPARC_TLS_DTPMOD32 74 |
Definition at line 1548 of file glibc_elf.h.
#define RZ_SPARC_TLS_DTPMOD64 75 |
Definition at line 1549 of file glibc_elf.h.
#define RZ_SPARC_TLS_DTPOFF32 76 |
Definition at line 1550 of file glibc_elf.h.
#define RZ_SPARC_TLS_DTPOFF64 77 |
Definition at line 1551 of file glibc_elf.h.
#define RZ_SPARC_TLS_GD_ADD 58 |
Definition at line 1532 of file glibc_elf.h.
#define RZ_SPARC_TLS_GD_CALL 59 |
Definition at line 1533 of file glibc_elf.h.
#define RZ_SPARC_TLS_GD_HI22 56 |
Definition at line 1530 of file glibc_elf.h.
#define RZ_SPARC_TLS_GD_LO10 57 |
Definition at line 1531 of file glibc_elf.h.
#define RZ_SPARC_TLS_IE_ADD 71 |
Definition at line 1545 of file glibc_elf.h.
#define RZ_SPARC_TLS_IE_HI22 67 |
Definition at line 1541 of file glibc_elf.h.
#define RZ_SPARC_TLS_IE_LD 69 |
Definition at line 1543 of file glibc_elf.h.
#define RZ_SPARC_TLS_IE_LDX 70 |
Definition at line 1544 of file glibc_elf.h.
#define RZ_SPARC_TLS_IE_LO10 68 |
Definition at line 1542 of file glibc_elf.h.
#define RZ_SPARC_TLS_LDM_ADD 62 |
Definition at line 1536 of file glibc_elf.h.
#define RZ_SPARC_TLS_LDM_CALL 63 |
Definition at line 1537 of file glibc_elf.h.
#define RZ_SPARC_TLS_LDM_HI22 60 |
Definition at line 1534 of file glibc_elf.h.
#define RZ_SPARC_TLS_LDM_LO10 61 |
Definition at line 1535 of file glibc_elf.h.
#define RZ_SPARC_TLS_LDO_ADD 66 |
Definition at line 1540 of file glibc_elf.h.
#define RZ_SPARC_TLS_LDO_HIX22 64 |
Definition at line 1538 of file glibc_elf.h.
#define RZ_SPARC_TLS_LDO_LOX10 65 |
Definition at line 1539 of file glibc_elf.h.
#define RZ_SPARC_TLS_LE_HIX22 72 |
Definition at line 1546 of file glibc_elf.h.
#define RZ_SPARC_TLS_LE_LOX10 73 |
Definition at line 1547 of file glibc_elf.h.
#define RZ_SPARC_TLS_TPOFF32 78 |
Definition at line 1552 of file glibc_elf.h.
#define RZ_SPARC_TLS_TPOFF64 79 |
Definition at line 1553 of file glibc_elf.h.
#define RZ_SPARC_UA16 55 /* Direct 16 bit unaligned */ |
Definition at line 1529 of file glibc_elf.h.
#define RZ_SPARC_UA32 23 /* Direct 32 bit unaligned */ |
Definition at line 1494 of file glibc_elf.h.
#define RZ_SPARC_UA64 54 /* Direct 64 bit unaligned */ |
Definition at line 1528 of file glibc_elf.h.
#define RZ_SPARC_WDISP10 88 |
Definition at line 1562 of file glibc_elf.h.
Definition at line 1514 of file glibc_elf.h.
Definition at line 1515 of file glibc_elf.h.
Definition at line 1479 of file glibc_elf.h.
Definition at line 1478 of file glibc_elf.h.
Definition at line 1489 of file glibc_elf.h.
#define RZ_TILEGX_16 3 /* Direct 16 bit */ |
Definition at line 3600 of file glibc_elf.h.
Definition at line 3604 of file glibc_elf.h.
#define RZ_TILEGX_32 2 /* Direct 32 bit */ |
Definition at line 3599 of file glibc_elf.h.
Definition at line 3603 of file glibc_elf.h.
#define RZ_TILEGX_64 1 /* Direct 64 bit */ |
Definition at line 3598 of file glibc_elf.h.
Definition at line 3602 of file glibc_elf.h.
#define RZ_TILEGX_8 4 /* Direct 8 bit */ |
Definition at line 3601 of file glibc_elf.h.
Definition at line 3605 of file glibc_elf.h.
Definition at line 3617 of file glibc_elf.h.
#define RZ_TILEGX_COPY 16 /* Copy relocation */ |
Definition at line 3613 of file glibc_elf.h.
Definition at line 3624 of file glibc_elf.h.
#define RZ_TILEGX_GLOB_DAT 17 /* Create GOT entry */ |
Definition at line 3614 of file glibc_elf.h.
Definition at line 3719 of file glibc_elf.h.
#define RZ_TILEGX_GNU_VTINHERIT 128 /* GNU C++ vtable hierarchy */ |
Definition at line 3718 of file glibc_elf.h.
#define RZ_TILEGX_HW0 9 /* hword 0 16-bit */ |
Definition at line 3606 of file glibc_elf.h.
#define RZ_TILEGX_HW0_LAST 13 /* last hword 0 16-bit */ |
Definition at line 3610 of file glibc_elf.h.
#define RZ_TILEGX_HW1 10 /* hword 1 16-bit */ |
Definition at line 3607 of file glibc_elf.h.
#define RZ_TILEGX_HW1_LAST 14 /* last hword 1 16-bit */ |
Definition at line 3611 of file glibc_elf.h.
#define RZ_TILEGX_HW2 11 /* hword 2 16-bit */ |
Definition at line 3608 of file glibc_elf.h.
#define RZ_TILEGX_HW2_LAST 15 /* last hword 2 16-bit */ |
Definition at line 3612 of file glibc_elf.h.
#define RZ_TILEGX_HW3 12 /* hword 3 16-bit */ |
Definition at line 3609 of file glibc_elf.h.
#define RZ_TILEGX_IMM16_X0_HW0 36 /* X0 pipe hword 0 */ |
Definition at line 3633 of file glibc_elf.h.
Definition at line 3661 of file glibc_elf.h.
#define RZ_TILEGX_IMM16_X0_HW0_LAST 44 /* X0 pipe last hword 0 */ |
Definition at line 3641 of file glibc_elf.h.
Definition at line 3669 of file glibc_elf.h.
Definition at line 3655 of file glibc_elf.h.
Definition at line 3690 of file glibc_elf.h.
Definition at line 3683 of file glibc_elf.h.
Definition at line 3696 of file glibc_elf.h.
Definition at line 3679 of file glibc_elf.h.
Definition at line 3647 of file glibc_elf.h.
Definition at line 3663 of file glibc_elf.h.
Definition at line 3675 of file glibc_elf.h.
Definition at line 3688 of file glibc_elf.h.
Definition at line 3677 of file glibc_elf.h.
#define RZ_TILEGX_IMM16_X0_HW1 38 /* X0 pipe hword 1 */ |
Definition at line 3635 of file glibc_elf.h.
#define RZ_TILEGX_IMM16_X0_HW1_LAST 46 /* X0 pipe last hword 1 */ |
Definition at line 3643 of file glibc_elf.h.
Definition at line 3671 of file glibc_elf.h.
Definition at line 3657 of file glibc_elf.h.
Definition at line 3692 of file glibc_elf.h.
Definition at line 3685 of file glibc_elf.h.
Definition at line 3698 of file glibc_elf.h.
Definition at line 3681 of file glibc_elf.h.
Definition at line 3649 of file glibc_elf.h.
Definition at line 3665 of file glibc_elf.h.
#define RZ_TILEGX_IMM16_X0_HW2 40 /* X0 pipe hword 2 */ |
Definition at line 3637 of file glibc_elf.h.
#define RZ_TILEGX_IMM16_X0_HW2_LAST 48 /* X0 pipe last hword 2 */ |
Definition at line 3645 of file glibc_elf.h.
Definition at line 3659 of file glibc_elf.h.
Definition at line 3694 of file glibc_elf.h.
Definition at line 3651 of file glibc_elf.h.
Definition at line 3667 of file glibc_elf.h.
#define RZ_TILEGX_IMM16_X0_HW3 42 /* X0 pipe hword 3 */ |
Definition at line 3639 of file glibc_elf.h.
Definition at line 3653 of file glibc_elf.h.
Definition at line 3673 of file glibc_elf.h.
#define RZ_TILEGX_IMM16_X1_HW0 37 /* X1 pipe hword 0 */ |
Definition at line 3634 of file glibc_elf.h.
Definition at line 3662 of file glibc_elf.h.
#define RZ_TILEGX_IMM16_X1_HW0_LAST 45 /* X1 pipe last hword 0 */ |
Definition at line 3642 of file glibc_elf.h.
Definition at line 3670 of file glibc_elf.h.
Definition at line 3656 of file glibc_elf.h.
Definition at line 3691 of file glibc_elf.h.
Definition at line 3684 of file glibc_elf.h.
Definition at line 3697 of file glibc_elf.h.
Definition at line 3680 of file glibc_elf.h.
Definition at line 3648 of file glibc_elf.h.
Definition at line 3664 of file glibc_elf.h.
Definition at line 3676 of file glibc_elf.h.
Definition at line 3689 of file glibc_elf.h.
Definition at line 3678 of file glibc_elf.h.
#define RZ_TILEGX_IMM16_X1_HW1 39 /* X1 pipe hword 1 */ |
Definition at line 3636 of file glibc_elf.h.
#define RZ_TILEGX_IMM16_X1_HW1_LAST 47 /* X1 pipe last hword 1 */ |
Definition at line 3644 of file glibc_elf.h.
Definition at line 3672 of file glibc_elf.h.
Definition at line 3658 of file glibc_elf.h.
Definition at line 3693 of file glibc_elf.h.
Definition at line 3686 of file glibc_elf.h.
Definition at line 3699 of file glibc_elf.h.
Definition at line 3682 of file glibc_elf.h.
Definition at line 3650 of file glibc_elf.h.
Definition at line 3666 of file glibc_elf.h.
#define RZ_TILEGX_IMM16_X1_HW2 41 /* X1 pipe hword 2 */ |
Definition at line 3638 of file glibc_elf.h.
#define RZ_TILEGX_IMM16_X1_HW2_LAST 49 /* X1 pipe last hword 2 */ |
Definition at line 3646 of file glibc_elf.h.
Definition at line 3660 of file glibc_elf.h.
Definition at line 3695 of file glibc_elf.h.
Definition at line 3652 of file glibc_elf.h.
Definition at line 3668 of file glibc_elf.h.
#define RZ_TILEGX_IMM16_X1_HW3 43 /* X1 pipe hword 3 */ |
Definition at line 3640 of file glibc_elf.h.
Definition at line 3654 of file glibc_elf.h.
Definition at line 3674 of file glibc_elf.h.
Definition at line 3620 of file glibc_elf.h.
#define RZ_TILEGX_IMM8_X0_TLS_ADD 118 /* X0 pipe "addi" for TLS GD/IE */ |
Definition at line 3713 of file glibc_elf.h.
#define RZ_TILEGX_IMM8_X0_TLS_GD_ADD 113 /* X0 pipe "addi" for TLS GD */ |
Definition at line 3708 of file glibc_elf.h.
Definition at line 3622 of file glibc_elf.h.
#define RZ_TILEGX_IMM8_X1_TLS_ADD 119 /* X1 pipe "addi" for TLS GD/IE */ |
Definition at line 3714 of file glibc_elf.h.
#define RZ_TILEGX_IMM8_X1_TLS_GD_ADD 114 /* X1 pipe "addi" for TLS GD */ |
Definition at line 3709 of file glibc_elf.h.
Definition at line 3621 of file glibc_elf.h.
#define RZ_TILEGX_IMM8_Y0_TLS_ADD 120 /* Y0 pipe "addi" for TLS GD/IE */ |
Definition at line 3715 of file glibc_elf.h.
#define RZ_TILEGX_IMM8_Y0_TLS_GD_ADD 115 /* Y0 pipe "addi" for TLS GD */ |
Definition at line 3710 of file glibc_elf.h.
Definition at line 3623 of file glibc_elf.h.
#define RZ_TILEGX_IMM8_Y1_TLS_ADD 121 /* Y1 pipe "addi" for TLS GD/IE */ |
Definition at line 3716 of file glibc_elf.h.
#define RZ_TILEGX_IMM8_Y1_TLS_GD_ADD 116 /* Y1 pipe "addi" for TLS GD */ |
Definition at line 3711 of file glibc_elf.h.
#define RZ_TILEGX_JMP_SLOT 18 /* Create PLT entry */ |
Definition at line 3615 of file glibc_elf.h.
Definition at line 3618 of file glibc_elf.h.
Definition at line 3619 of file glibc_elf.h.
#define RZ_TILEGX_MF_IMM14_X1 29 /* X1 pipe mfspr */ |
Definition at line 3626 of file glibc_elf.h.
#define RZ_TILEGX_MMEND_X0 31 /* X0 pipe mm "end" */ |
Definition at line 3628 of file glibc_elf.h.
#define RZ_TILEGX_MMSTART_X0 30 /* X0 pipe mm "start" */ |
Definition at line 3627 of file glibc_elf.h.
#define RZ_TILEGX_MT_IMM14_X1 28 /* X1 pipe mtspr */ |
Definition at line 3625 of file glibc_elf.h.
#define RZ_TILEGX_NONE 0 /* No reloc */ |
Definition at line 3597 of file glibc_elf.h.
#define RZ_TILEGX_NUM 130 |
Definition at line 3721 of file glibc_elf.h.
#define RZ_TILEGX_RELATIVE 19 /* Adjust by program base */ |
Definition at line 3616 of file glibc_elf.h.
Definition at line 3629 of file glibc_elf.h.
Definition at line 3630 of file glibc_elf.h.
Definition at line 3631 of file glibc_elf.h.
Definition at line 3632 of file glibc_elf.h.
Definition at line 3704 of file glibc_elf.h.
Definition at line 3701 of file glibc_elf.h.
Definition at line 3705 of file glibc_elf.h.
Definition at line 3702 of file glibc_elf.h.
#define RZ_TILEGX_TLS_GD_CALL 112 /* "jal" for TLS GD */ |
Definition at line 3707 of file glibc_elf.h.
#define RZ_TILEGX_TLS_IE_LOAD 117 /* "ld_tls" for TLS IE */ |
Definition at line 3712 of file glibc_elf.h.
Definition at line 3706 of file glibc_elf.h.
Definition at line 3703 of file glibc_elf.h.
#define RZ_TILEPRO_16 2 /* Direct 16 bit */ |
Definition at line 3502 of file glibc_elf.h.
Definition at line 3505 of file glibc_elf.h.
#define RZ_TILEPRO_32 1 /* Direct 32 bit */ |
Definition at line 3501 of file glibc_elf.h.
Definition at line 3504 of file glibc_elf.h.
#define RZ_TILEPRO_8 3 /* Direct 8 bit */ |
Definition at line 3503 of file glibc_elf.h.
Definition at line 3506 of file glibc_elf.h.
Definition at line 3514 of file glibc_elf.h.
#define RZ_TILEPRO_COPY 10 /* Copy relocation */ |
Definition at line 3510 of file glibc_elf.h.
Definition at line 3555 of file glibc_elf.h.
#define RZ_TILEPRO_GLOB_DAT 11 /* Create GOT entry */ |
Definition at line 3511 of file glibc_elf.h.
Definition at line 3592 of file glibc_elf.h.
#define RZ_TILEPRO_GNU_VTINHERIT 128 /* GNU C++ vtable hierarchy */ |
Definition at line 3591 of file glibc_elf.h.
#define RZ_TILEPRO_HA16 9 /* High 16 bit, adjusted */ |
Definition at line 3509 of file glibc_elf.h.
#define RZ_TILEPRO_HI16 8 /* High 16 bit */ |
Definition at line 3508 of file glibc_elf.h.
Definition at line 3523 of file glibc_elf.h.
Definition at line 3539 of file glibc_elf.h.
Definition at line 3545 of file glibc_elf.h.
Definition at line 3543 of file glibc_elf.h.
Definition at line 3541 of file glibc_elf.h.
Definition at line 3529 of file glibc_elf.h.
Definition at line 3537 of file glibc_elf.h.
Definition at line 3527 of file glibc_elf.h.
Definition at line 3535 of file glibc_elf.h.
Definition at line 3525 of file glibc_elf.h.
Definition at line 3533 of file glibc_elf.h.
Definition at line 3531 of file glibc_elf.h.
Definition at line 3563 of file glibc_elf.h.
Definition at line 3569 of file glibc_elf.h.
Definition at line 3567 of file glibc_elf.h.
Definition at line 3565 of file glibc_elf.h.
Definition at line 3571 of file glibc_elf.h.
Definition at line 3577 of file glibc_elf.h.
Definition at line 3575 of file glibc_elf.h.
Definition at line 3573 of file glibc_elf.h.
Definition at line 3582 of file glibc_elf.h.
Definition at line 3588 of file glibc_elf.h.
Definition at line 3586 of file glibc_elf.h.
Definition at line 3584 of file glibc_elf.h.
Definition at line 3524 of file glibc_elf.h.
Definition at line 3540 of file glibc_elf.h.
Definition at line 3546 of file glibc_elf.h.
Definition at line 3544 of file glibc_elf.h.
Definition at line 3542 of file glibc_elf.h.
Definition at line 3530 of file glibc_elf.h.
Definition at line 3538 of file glibc_elf.h.
Definition at line 3528 of file glibc_elf.h.
Definition at line 3536 of file glibc_elf.h.
Definition at line 3526 of file glibc_elf.h.
Definition at line 3534 of file glibc_elf.h.
Definition at line 3532 of file glibc_elf.h.
Definition at line 3564 of file glibc_elf.h.
Definition at line 3570 of file glibc_elf.h.
Definition at line 3568 of file glibc_elf.h.
Definition at line 3566 of file glibc_elf.h.
Definition at line 3572 of file glibc_elf.h.
Definition at line 3578 of file glibc_elf.h.
Definition at line 3576 of file glibc_elf.h.
Definition at line 3574 of file glibc_elf.h.
Definition at line 3583 of file glibc_elf.h.
Definition at line 3589 of file glibc_elf.h.
Definition at line 3587 of file glibc_elf.h.
Definition at line 3585 of file glibc_elf.h.
Definition at line 3517 of file glibc_elf.h.
#define RZ_TILEPRO_IMM8_X0_TLS_GD_ADD 61 /* X0 pipe "addi" for TLS GD */ |
Definition at line 3558 of file glibc_elf.h.
Definition at line 3519 of file glibc_elf.h.
#define RZ_TILEPRO_IMM8_X1_TLS_GD_ADD 62 /* X1 pipe "addi" for TLS GD */ |
Definition at line 3559 of file glibc_elf.h.
Definition at line 3518 of file glibc_elf.h.
#define RZ_TILEPRO_IMM8_Y0_TLS_GD_ADD 63 /* Y0 pipe "addi" for TLS GD */ |
Definition at line 3560 of file glibc_elf.h.
Definition at line 3520 of file glibc_elf.h.
#define RZ_TILEPRO_IMM8_Y1_TLS_GD_ADD 64 /* Y1 pipe "addi" for TLS GD */ |
Definition at line 3561 of file glibc_elf.h.
#define RZ_TILEPRO_JMP_SLOT 12 /* Create PLT entry */ |
Definition at line 3512 of file glibc_elf.h.
Definition at line 3515 of file glibc_elf.h.
Definition at line 3516 of file glibc_elf.h.
#define RZ_TILEPRO_LO16 7 /* Low 16 bit */ |
Definition at line 3507 of file glibc_elf.h.
#define RZ_TILEPRO_MF_IMM15_X1 22 /* X1 pipe mfspr */ |
Definition at line 3522 of file glibc_elf.h.
#define RZ_TILEPRO_MMEND_X0 48 /* X0 pipe mm "end" */ |
Definition at line 3548 of file glibc_elf.h.
#define RZ_TILEPRO_MMEND_X1 50 /* X1 pipe mm "end" */ |
Definition at line 3550 of file glibc_elf.h.
#define RZ_TILEPRO_MMSTART_X0 47 /* X0 pipe mm "start" */ |
Definition at line 3547 of file glibc_elf.h.
#define RZ_TILEPRO_MMSTART_X1 49 /* X1 pipe mm "start" */ |
Definition at line 3549 of file glibc_elf.h.
#define RZ_TILEPRO_MT_IMM15_X1 21 /* X1 pipe mtspr */ |
Definition at line 3521 of file glibc_elf.h.
#define RZ_TILEPRO_NONE 0 /* No reloc */ |
Definition at line 3500 of file glibc_elf.h.
#define RZ_TILEPRO_NUM 130 |
Definition at line 3594 of file glibc_elf.h.
#define RZ_TILEPRO_RELATIVE 13 /* Adjust by program base */ |
Definition at line 3513 of file glibc_elf.h.
Definition at line 3551 of file glibc_elf.h.
Definition at line 3552 of file glibc_elf.h.
Definition at line 3553 of file glibc_elf.h.
Definition at line 3554 of file glibc_elf.h.
#define RZ_TILEPRO_TLS_DTPMOD32 82 /* ID of module containing symbol */ |
Definition at line 3579 of file glibc_elf.h.
Definition at line 3580 of file glibc_elf.h.
#define RZ_TILEPRO_TLS_GD_CALL 60 /* "jal" for TLS GD */ |
Definition at line 3557 of file glibc_elf.h.
#define RZ_TILEPRO_TLS_IE_LOAD 65 /* "lw_tls" for TLS IE */ |
Definition at line 3562 of file glibc_elf.h.
Definition at line 3581 of file glibc_elf.h.
#define RZ_X86_64_16 12 /* Direct 16 bit zero extended */ |
Definition at line 3294 of file glibc_elf.h.
#define RZ_X86_64_32 10 /* Direct 32 bit zero extended */ |
Definition at line 3292 of file glibc_elf.h.
#define RZ_X86_64_32S 11 /* Direct 32 bit sign extended */ |
Definition at line 3293 of file glibc_elf.h.
#define RZ_X86_64_64 1 /* Direct 64 bit */ |
Definition at line 3283 of file glibc_elf.h.
#define RZ_X86_64_8 14 /* Direct 8 bit sign extended */ |
Definition at line 3296 of file glibc_elf.h.
#define RZ_X86_64_COPY 5 /* Copy symbol at runtime */ |
Definition at line 3287 of file glibc_elf.h.
#define RZ_X86_64_DTPMOD64 16 /* ID of module containing symbol */ |
Definition at line 3298 of file glibc_elf.h.
Definition at line 3303 of file glibc_elf.h.
Definition at line 3299 of file glibc_elf.h.
#define RZ_X86_64_GLOB_DAT 6 /* Create GOT entry */ |
Definition at line 3288 of file glibc_elf.h.
Definition at line 3285 of file glibc_elf.h.
Definition at line 3309 of file glibc_elf.h.
Definition at line 3307 of file glibc_elf.h.
#define RZ_X86_64_GOTPC32 |
Definition at line 3308 of file glibc_elf.h.
#define RZ_X86_64_GOTPC32_TLSDESC 34 /* GOT offset for TLS descriptor. */ |
Definition at line 3316 of file glibc_elf.h.
Definition at line 3311 of file glibc_elf.h.
#define RZ_X86_64_GOTPCREL |
Definition at line 3291 of file glibc_elf.h.
#define RZ_X86_64_GOTPCREL64 |
Definition at line 3310 of file glibc_elf.h.
#define RZ_X86_64_GOTPCRELX |
Definition at line 3323 of file glibc_elf.h.
#define RZ_X86_64_GOTPLT64 30 /* like GOT64, says PLT entry needed */ |
Definition at line 3312 of file glibc_elf.h.
#define RZ_X86_64_GOTTPOFF |
Definition at line 3304 of file glibc_elf.h.
#define RZ_X86_64_IRELATIVE 37 /* Adjust indirectly by program base */ |
Definition at line 3319 of file glibc_elf.h.
#define RZ_X86_64_JUMP_SLOT 7 /* Create PLT entry */ |
Definition at line 3289 of file glibc_elf.h.
#define RZ_X86_64_NONE 0 /* No reloc */ |
Definition at line 3282 of file glibc_elf.h.
#define RZ_X86_64_NUM 43 |
Definition at line 3325 of file glibc_elf.h.
Definition at line 3295 of file glibc_elf.h.
Definition at line 3284 of file glibc_elf.h.
Definition at line 3306 of file glibc_elf.h.
Definition at line 3297 of file glibc_elf.h.
#define RZ_X86_64_PLT32 4 /* 32 bit PLT address */ |
Definition at line 3286 of file glibc_elf.h.
#define RZ_X86_64_PLTOFF64 |
Definition at line 3313 of file glibc_elf.h.
#define RZ_X86_64_RELATIVE 8 /* Adjust by program base */ |
Definition at line 3290 of file glibc_elf.h.
#define RZ_X86_64_RELATIVE64 38 /* 64-bit adjust by program base */ |
Definition at line 3320 of file glibc_elf.h.
#define RZ_X86_64_REX_GOTPCRELX |
Definition at line 3324 of file glibc_elf.h.
#define RZ_X86_64_SIZE32 32 /* Size of symbol plus 32-bit addend */ |
Definition at line 3314 of file glibc_elf.h.
#define RZ_X86_64_SIZE64 33 /* Size of symbol plus 64-bit addend */ |
Definition at line 3315 of file glibc_elf.h.
#define RZ_X86_64_TLSDESC 36 /* TLS descriptor. */ |
Definition at line 3318 of file glibc_elf.h.
#define RZ_X86_64_TLSDESC_CALL |
Definition at line 3317 of file glibc_elf.h.
#define RZ_X86_64_TLSGD |
Definition at line 3301 of file glibc_elf.h.
#define RZ_X86_64_TLSLD |
Definition at line 3302 of file glibc_elf.h.
Definition at line 3305 of file glibc_elf.h.
Definition at line 3300 of file glibc_elf.h.
#define SELFMAG 4 |
Definition at line 122 of file glibc_elf.h.
#define SHF_ALLOC (1 << 1) /* Occupies memory during execution */ |
Definition at line 471 of file glibc_elf.h.
#define SHF_ALPHA_GPREL 0x10000000 |
Definition at line 2254 of file glibc_elf.h.
#define SHF_ARM_COMDEF |
Definition at line 2637 of file glibc_elf.h.
Definition at line 2636 of file glibc_elf.h.
#define SHF_COMPRESSED (1 << 11) /* Section with compressed data. */ |
Definition at line 480 of file glibc_elf.h.
#define SHF_EXCLUDE |
Definition at line 484 of file glibc_elf.h.
#define SHF_EXECINSTR (1 << 2) /* Executable */ |
Definition at line 472 of file glibc_elf.h.
#define SHF_GROUP (1 << 9) /* Section is member of a group. */ |
Definition at line 478 of file glibc_elf.h.
#define SHF_HEXAGON_GPREL 0x10000000 /* Section resides in the small data area */ |
Definition at line 3979 of file glibc_elf.h.
Definition at line 3028 of file glibc_elf.h.
#define SHF_IA_64_SHORT 0x10000000 /* section near gp */ |
Definition at line 3027 of file glibc_elf.h.
#define SHF_INFO_LINK (1 << 6) /* `sh_info' contains SHT index */ |
Definition at line 475 of file glibc_elf.h.
#define SHF_LINK_ORDER (1 << 7) /* Preserve order after combining */ |
Definition at line 476 of file glibc_elf.h.
#define SHF_MASKOS 0x0ff00000 /* OS-specific. */ |
Definition at line 481 of file glibc_elf.h.
#define SHF_MASKPROC 0xf0000000 /* Processor-specific */ |
Definition at line 482 of file glibc_elf.h.
#define SHF_MERGE (1 << 4) /* Might be merged */ |
Definition at line 473 of file glibc_elf.h.
#define SHF_MIPS_ADDR 0x40000000 |
Definition at line 1668 of file glibc_elf.h.
#define SHF_MIPS_GPREL 0x10000000 /* Must be in global data area. */ |
Definition at line 1666 of file glibc_elf.h.
#define SHF_MIPS_LOCAL 0x04000000 |
Definition at line 1671 of file glibc_elf.h.
#define SHF_MIPS_MERGE 0x20000000 |
Definition at line 1667 of file glibc_elf.h.
#define SHF_MIPS_NAMES 0x02000000 |
Definition at line 1672 of file glibc_elf.h.
#define SHF_MIPS_NODUPE 0x01000000 |
Definition at line 1673 of file glibc_elf.h.
#define SHF_MIPS_NOSTRIP 0x08000000 |
Definition at line 1670 of file glibc_elf.h.
#define SHF_MIPS_STRINGS 0x80000000 |
Definition at line 1669 of file glibc_elf.h.
#define SHF_ORDERED |
Definition at line 483 of file glibc_elf.h.
#define SHF_OS_NONCONFORMING |
Definition at line 477 of file glibc_elf.h.
#define SHF_PARISC_HUGE 0x40000000 /* Section far from gp. */ |
Definition at line 2083 of file glibc_elf.h.
#define SHF_PARISC_SBP 0x80000000 /* Static branch prediction code. */ |
Definition at line 2084 of file glibc_elf.h.
#define SHF_PARISC_SHORT 0x20000000 /* Section with short addressing. */ |
Definition at line 2082 of file glibc_elf.h.
#define SHF_STRINGS (1 << 5) /* Contains nul-terminated strings */ |
Definition at line 474 of file glibc_elf.h.
#define SHF_TLS (1 << 10) /* Section hold thread-local data. */ |
Definition at line 479 of file glibc_elf.h.
#define SHF_WRITE (1 << 0) /* Writable */ |
Definition at line 470 of file glibc_elf.h.
#define SHN_ABS 0xfff1 /* Associated symbol is absolute */ |
Definition at line 424 of file glibc_elf.h.
#define SHN_AFTER |
Definition at line 420 of file glibc_elf.h.
#define SHN_BEFORE |
Definition at line 419 of file glibc_elf.h.
#define SHN_COMMON 0xfff2 /* Associated symbol is common */ |
Definition at line 425 of file glibc_elf.h.
#define SHN_HEXAGON_SCOMMON 0xff00 /* Other access sizes */ |
Definition at line 3972 of file glibc_elf.h.
Definition at line 3973 of file glibc_elf.h.
#define SHN_HEXAGON_SCOMMON_2 0xff02 /* Half-word-sized access */ |
Definition at line 3974 of file glibc_elf.h.
Definition at line 3975 of file glibc_elf.h.
Definition at line 3976 of file glibc_elf.h.
#define SHN_HIOS 0xff3f /* End of OS-specific */ |
Definition at line 423 of file glibc_elf.h.
#define SHN_HIPROC 0xff1f /* End of processor-specific */ |
Definition at line 421 of file glibc_elf.h.
#define SHN_HIRESERVE 0xffff /* End of reserved indices */ |
Definition at line 427 of file glibc_elf.h.
#define SHN_LOOS 0xff20 /* Start of OS-specific */ |
Definition at line 422 of file glibc_elf.h.
#define SHN_LOPROC 0xff00 /* Start of processor-specific */ |
Definition at line 418 of file glibc_elf.h.
#define SHN_LORESERVE 0xff00 /* Start of reserved indices */ |
Definition at line 417 of file glibc_elf.h.
#define SHN_MIPS_ACOMMON 0xff00 /* Allocated common symbols. */ |
Definition at line 1615 of file glibc_elf.h.
#define SHN_MIPS_DATA 0xff02 /* Allocated data symbols. */ |
Definition at line 1617 of file glibc_elf.h.
#define SHN_MIPS_SCOMMON 0xff03 /* Small common symbols. */ |
Definition at line 1618 of file glibc_elf.h.
#define SHN_MIPS_SUNDEFINED 0xff04 /* Small undefined symbols. */ |
Definition at line 1619 of file glibc_elf.h.
#define SHN_MIPS_TEXT 0xff01 /* Allocated test symbols. */ |
Definition at line 1616 of file glibc_elf.h.
#define SHN_PARISC_ANSI_COMMON |
Definition at line 2071 of file glibc_elf.h.
Definition at line 2072 of file glibc_elf.h.
#define SHN_UNDEF 0 /* Undefined section */ |
Definition at line 416 of file glibc_elf.h.
#define SHN_XINDEX 0xffff /* Index is in extra table. */ |
Definition at line 426 of file glibc_elf.h.
#define SHT_ALPHA_DEBUG 0x70000001 |
Definition at line 2249 of file glibc_elf.h.
#define SHT_ALPHA_REGINFO 0x70000002 |
Definition at line 2250 of file glibc_elf.h.
#define SHT_ARM_ATTRIBUTES (SHT_LOPROC + 3) /* ARM attributes section. */ |
Definition at line 2650 of file glibc_elf.h.
#define SHT_ARM_EXIDX (SHT_LOPROC + 1) /* ARM unwind section. */ |
Definition at line 2648 of file glibc_elf.h.
#define SHT_ARM_PREEMPTMAP (SHT_LOPROC + 2) /* Preemption details. */ |
Definition at line 2649 of file glibc_elf.h.
#define SHT_CHECKSUM 0x6ffffff8 /* Checksum for DSO content. */ |
Definition at line 453 of file glibc_elf.h.
#define SHT_CSKY_ATTRIBUTES (SHT_LOPROC + 1) |
Definition at line 3003 of file glibc_elf.h.
#define SHT_DYNAMIC 6 /* Dynamic linking information */ |
Definition at line 437 of file glibc_elf.h.
#define SHT_DYNSYM 11 /* Dynamic linker symbol table */ |
Definition at line 442 of file glibc_elf.h.
#define SHT_FINI_ARRAY 15 /* Array of destructors */ |
Definition at line 444 of file glibc_elf.h.
#define SHT_GNU_ATTRIBUTES 0x6ffffff5 /* Object attributes. */ |
Definition at line 450 of file glibc_elf.h.
#define SHT_GNU_HASH 0x6ffffff6 /* GNU-style hash table. */ |
Definition at line 451 of file glibc_elf.h.
#define SHT_GNU_LIBLIST 0x6ffffff7 /* Prelink library list */ |
Definition at line 452 of file glibc_elf.h.
#define SHT_GNU_verdef 0x6ffffffd /* Version definition section. */ |
Definition at line 458 of file glibc_elf.h.
#define SHT_GNU_verneed 0x6ffffffe /* Version needs section. */ |
Definition at line 459 of file glibc_elf.h.
#define SHT_GNU_versym 0x6fffffff /* Version symbol table. */ |
Definition at line 460 of file glibc_elf.h.
#define SHT_GROUP 17 /* Section group */ |
Definition at line 446 of file glibc_elf.h.
#define SHT_HASH 5 /* Symbol hash table */ |
Definition at line 436 of file glibc_elf.h.
#define SHT_HEX_ORDERED 0x70000000 /* Link editor is to sort the entries in this section based on their sizes. */ |
Definition at line 3982 of file glibc_elf.h.
Definition at line 462 of file glibc_elf.h.
#define SHT_HIPROC 0x7fffffff /* End of processor-specific */ |
Definition at line 464 of file glibc_elf.h.
#define SHT_HISUNW 0x6fffffff /* Sun-specific high bound. */ |
Definition at line 461 of file glibc_elf.h.
#define SHT_HIUSER 0x8fffffff /* End of application-specific */ |
Definition at line 466 of file glibc_elf.h.
#define SHT_IA_64_EXT (SHT_LOPROC + 0) /* extension bits */ |
Definition at line 3023 of file glibc_elf.h.
#define SHT_IA_64_UNWIND (SHT_LOPROC + 1) /* unwind bits */ |
Definition at line 3024 of file glibc_elf.h.
#define SHT_INIT_ARRAY 14 /* Array of constructors */ |
Definition at line 443 of file glibc_elf.h.
#define SHT_LOOS 0x60000000 /* Start OS-specific. */ |
Definition at line 449 of file glibc_elf.h.
#define SHT_LOPROC 0x70000000 /* Start of processor-specific */ |
Definition at line 463 of file glibc_elf.h.
#define SHT_LOSUNW 0x6ffffffa /* Sun-specific low bound. */ |
Definition at line 454 of file glibc_elf.h.
#define SHT_LOUSER 0x80000000 /* Start of application-specific */ |
Definition at line 465 of file glibc_elf.h.
#define SHT_MIPS_AUXSYM 0x70000016 |
Definition at line 1642 of file glibc_elf.h.
#define SHT_MIPS_CONFLICT 0x70000002 /* Conflicting symbols. */ |
Definition at line 1625 of file glibc_elf.h.
#define SHT_MIPS_CONTENT 0x7000000c |
Definition at line 1634 of file glibc_elf.h.
#define SHT_MIPS_DEBUG 0x70000005 /* MIPS ECOFF debugging info. */ |
Definition at line 1628 of file glibc_elf.h.
#define SHT_MIPS_DELTACLASS 0x7000001d |
Definition at line 1649 of file glibc_elf.h.
#define SHT_MIPS_DELTADECL 0x7000001f |
Definition at line 1651 of file glibc_elf.h.
#define SHT_MIPS_DELTAINST 0x7000001c |
Definition at line 1648 of file glibc_elf.h.
#define SHT_MIPS_DELTASYM 0x7000001b |
Definition at line 1647 of file glibc_elf.h.
#define SHT_MIPS_DENSE 0x70000013 |
Definition at line 1639 of file glibc_elf.h.
#define SHT_MIPS_DWARF 0x7000001e /* DWARF debugging information. */ |
Definition at line 1650 of file glibc_elf.h.
#define SHT_MIPS_EH_REGION 0x70000027 |
Definition at line 1659 of file glibc_elf.h.
#define SHT_MIPS_EVENTS 0x70000021 /* Event section. */ |
Definition at line 1653 of file glibc_elf.h.
#define SHT_MIPS_EXTSYM 0x70000012 |
Definition at line 1638 of file glibc_elf.h.
#define SHT_MIPS_FDESC 0x70000011 |
Definition at line 1637 of file glibc_elf.h.
#define SHT_MIPS_GPTAB 0x70000003 /* Global data area sizes. */ |
Definition at line 1626 of file glibc_elf.h.
#define SHT_MIPS_IFACE 0x7000000b |
Definition at line 1633 of file glibc_elf.h.
#define SHT_MIPS_LIBLIST 0x70000000 /* Shared objects used in link. */ |
Definition at line 1623 of file glibc_elf.h.
#define SHT_MIPS_LINE 0x70000019 |
Definition at line 1645 of file glibc_elf.h.
#define SHT_MIPS_LOCSTR 0x70000018 |
Definition at line 1644 of file glibc_elf.h.
#define SHT_MIPS_LOCSYM 0x70000015 |
Definition at line 1641 of file glibc_elf.h.
#define SHT_MIPS_MSYM 0x70000001 |
Definition at line 1624 of file glibc_elf.h.
#define SHT_MIPS_OPTIONS 0x7000000d /* Miscellaneous options. */ |
Definition at line 1635 of file glibc_elf.h.
#define SHT_MIPS_OPTSYM 0x70000017 |
Definition at line 1643 of file glibc_elf.h.
#define SHT_MIPS_PACKAGE 0x70000007 |
Definition at line 1630 of file glibc_elf.h.
#define SHT_MIPS_PACKSYM 0x70000008 |
Definition at line 1631 of file glibc_elf.h.
#define SHT_MIPS_PDESC 0x70000014 |
Definition at line 1640 of file glibc_elf.h.
#define SHT_MIPS_PDR_EXCEPTION 0x70000029 |
Definition at line 1661 of file glibc_elf.h.
#define SHT_MIPS_PIXIE 0x70000023 |
Definition at line 1655 of file glibc_elf.h.
Definition at line 1629 of file glibc_elf.h.
#define SHT_MIPS_RELD 0x70000009 |
Definition at line 1632 of file glibc_elf.h.
#define SHT_MIPS_RFDESC 0x7000001a |
Definition at line 1646 of file glibc_elf.h.
#define SHT_MIPS_SHDR 0x70000010 |
Definition at line 1636 of file glibc_elf.h.
#define SHT_MIPS_SYMBOL_LIB 0x70000020 |
Definition at line 1652 of file glibc_elf.h.
#define SHT_MIPS_TRANSLATE 0x70000022 |
Definition at line 1654 of file glibc_elf.h.
#define SHT_MIPS_UCODE 0x70000004 /* Reserved for SGI/MIPS compilers */ |
Definition at line 1627 of file glibc_elf.h.
#define SHT_MIPS_WHIRL 0x70000026 |
Definition at line 1658 of file glibc_elf.h.
#define SHT_MIPS_XHASH 0x7000002b |
Definition at line 1662 of file glibc_elf.h.
#define SHT_MIPS_XLATE 0x70000024 |
Definition at line 1656 of file glibc_elf.h.
#define SHT_MIPS_XLATE_DEBUG 0x70000025 |
Definition at line 1657 of file glibc_elf.h.
#define SHT_MIPS_XLATE_OLD 0x70000028 |
Definition at line 1660 of file glibc_elf.h.
#define SHT_NOBITS 8 /* Program space with no data (bss) */ |
Definition at line 439 of file glibc_elf.h.
#define SHT_NOTE 7 /* Notes */ |
Definition at line 438 of file glibc_elf.h.
Definition at line 431 of file glibc_elf.h.
#define SHT_NUM 19 /* Number of defined types. */ |
Definition at line 448 of file glibc_elf.h.
#define SHT_PARISC_DOC 0x70000002 /* Debug info for optimized code. */ |
Definition at line 2078 of file glibc_elf.h.
#define SHT_PARISC_EXT 0x70000000 /* Contains product specific ext. */ |
Definition at line 2076 of file glibc_elf.h.
#define SHT_PARISC_UNWIND 0x70000001 /* Unwind information. */ |
Definition at line 2077 of file glibc_elf.h.
#define SHT_PREINIT_ARRAY 16 /* Array of pre-constructors */ |
Definition at line 445 of file glibc_elf.h.
#define SHT_PROGBITS 1 /* Program data */ |
Definition at line 432 of file glibc_elf.h.
#define SHT_REL 9 /* Relocation entries, no addends */ |
Definition at line 440 of file glibc_elf.h.
#define SHT_RELA 4 /* Relocation entries with addends */ |
Definition at line 435 of file glibc_elf.h.
#define SHT_SHLIB 10 /* Reserved */ |
Definition at line 441 of file glibc_elf.h.
#define SHT_STRTAB 3 /* String table */ |
Definition at line 434 of file glibc_elf.h.
#define SHT_SUNW_COMDAT 0x6ffffffb |
Definition at line 456 of file glibc_elf.h.
#define SHT_SUNW_move 0x6ffffffa |
Definition at line 455 of file glibc_elf.h.
#define SHT_SUNW_syminfo 0x6ffffffc |
Definition at line 457 of file glibc_elf.h.
#define SHT_SYMTAB 2 /* Symbol table */ |
Definition at line 433 of file glibc_elf.h.
#define SHT_SYMTAB_SHNDX 18 /* Extended section indeces */ |
Definition at line 447 of file glibc_elf.h.
#define SHT_X86_64_UNWIND 0x70000001 /* Unwind information. */ |
Definition at line 3328 of file glibc_elf.h.
#define STB_GLOBAL 1 /* Global symbol */ |
Definition at line 579 of file glibc_elf.h.
#define STB_GNU_UNIQUE 10 /* Unique symbol. */ |
Definition at line 583 of file glibc_elf.h.
#define STB_HIOS 12 /* End of OS-specific */ |
Definition at line 584 of file glibc_elf.h.
#define STB_HIPROC 15 /* End of processor-specific */ |
Definition at line 586 of file glibc_elf.h.
#define STB_LOCAL 0 /* Local symbol */ |
Definition at line 578 of file glibc_elf.h.
#define STB_LOOS 10 /* Start of OS-specific */ |
Definition at line 582 of file glibc_elf.h.
#define STB_LOPROC 13 /* Start of processor-specific */ |
Definition at line 585 of file glibc_elf.h.
#define STB_MIPS_SPLIT_COMMON 13 |
Definition at line 1686 of file glibc_elf.h.
#define STB_NUM 3 /* Number of defined types. */ |
Definition at line 581 of file glibc_elf.h.
#define STB_WEAK 2 /* Weak symbol */ |
Definition at line 580 of file glibc_elf.h.
#define STN_UNDEF 0 /* End of a chain. */ |
Definition at line 608 of file glibc_elf.h.
#define STO_AARCH64_VARIANT_PCS 0x80 |
Definition at line 2797 of file glibc_elf.h.
#define STO_ALPHA_NOPV 0x80 /* No PV required. */ |
Definition at line 2257 of file glibc_elf.h.
#define STO_ALPHA_STD_GPLOAD 0x88 /* PV only used for initial ldgp. */ |
Definition at line 2258 of file glibc_elf.h.
#define STO_MIPS_DEFAULT 0x0 |
Definition at line 1678 of file glibc_elf.h.
#define STO_MIPS_HIDDEN 0x2 |
Definition at line 1680 of file glibc_elf.h.
#define STO_MIPS_INTERNAL 0x1 |
Definition at line 1679 of file glibc_elf.h.
#define STO_MIPS_PLT 0x8 |
Definition at line 1682 of file glibc_elf.h.
#define STO_MIPS_PROTECTED 0x3 |
Definition at line 1681 of file glibc_elf.h.
#define STO_MIPS_SC_ALIGN_UNUSED 0xff |
Definition at line 1683 of file glibc_elf.h.
#define STO_PPC64_LOCAL_BIT 5 |
Definition at line 2588 of file glibc_elf.h.
#define STO_PPC64_LOCAL_MASK (7 << STO_PPC64_LOCAL_BIT) |
Definition at line 2589 of file glibc_elf.h.
#define STT_ARM_16BIT STT_HIPROC /* A Thumb label. */ |
Definition at line 2633 of file glibc_elf.h.
#define STT_ARM_TFUNC STT_LOPROC /* A Thumb function. */ |
Definition at line 2632 of file glibc_elf.h.
#define STT_COMMON 5 /* Symbol is a common data object */ |
Definition at line 595 of file glibc_elf.h.
Definition at line 592 of file glibc_elf.h.
#define STT_GNU_IFUNC 10 /* Symbol is indirect code object */ |
Definition at line 599 of file glibc_elf.h.
#define STT_HIOS 12 /* End of OS-specific */ |
Definition at line 600 of file glibc_elf.h.
#define STT_HIPROC 15 /* End of processor-specific */ |
Definition at line 602 of file glibc_elf.h.
#define STT_HP_OPAQUE (STT_LOOS + 0x1) |
Definition at line 2090 of file glibc_elf.h.
#define STT_HP_STUB (STT_LOOS + 0x2) |
Definition at line 2091 of file glibc_elf.h.
#define STT_LOOS 10 /* Start of OS-specific */ |
Definition at line 598 of file glibc_elf.h.
#define STT_LOPROC 13 /* Start of processor-specific */ |
Definition at line 601 of file glibc_elf.h.
#define STT_NOTYPE 0 /* Symbol type is unspecified */ |
Definition at line 590 of file glibc_elf.h.
#define STT_NUM 7 /* Number of defined types. */ |
Definition at line 597 of file glibc_elf.h.
#define STT_OBJECT 1 /* Symbol is a data object */ |
Definition at line 591 of file glibc_elf.h.
#define STT_PARISC_MILLICODE 13 /* Millicode function entry point. */ |
Definition at line 2088 of file glibc_elf.h.
Definition at line 593 of file glibc_elf.h.
Definition at line 1454 of file glibc_elf.h.
#define STT_TLS 6 /* Symbol is thread-local data object*/ |
Definition at line 596 of file glibc_elf.h.
#define STV_DEFAULT 0 /* Default symbol visibility rules */ |
Definition at line 618 of file glibc_elf.h.
#define STV_HIDDEN 2 /* Sym unavailable in other modules */ |
Definition at line 620 of file glibc_elf.h.
#define STV_INTERNAL 1 /* Processor specific hidden class */ |
Definition at line 619 of file glibc_elf.h.
#define STV_PROTECTED 3 /* Not preemptible, not exported */ |
Definition at line 621 of file glibc_elf.h.
Definition at line 553 of file glibc_elf.h.
#define SYMINFO_BT_PARENT 0xfffe /* Symbol bound to parent */ |
Definition at line 552 of file glibc_elf.h.
#define SYMINFO_BT_SELF 0xffff /* Symbol bound to self */ |
Definition at line 551 of file glibc_elf.h.
#define SYMINFO_CURRENT 1 |
Definition at line 562 of file glibc_elf.h.
#define SYMINFO_FLG_COPY 0x0004 /* Symbol is a copy-reloc */ |
Definition at line 558 of file glibc_elf.h.
#define SYMINFO_FLG_DIRECT 0x0001 /* Direct bound symbol */ |
Definition at line 556 of file glibc_elf.h.
#define SYMINFO_FLG_LAZYLOAD |
Definition at line 559 of file glibc_elf.h.
#define SYMINFO_FLG_PASSTHRU 0x0002 /* Pass-thru symbol for translator */ |
Definition at line 557 of file glibc_elf.h.
#define SYMINFO_NONE 0 |
Definition at line 561 of file glibc_elf.h.
#define SYMINFO_NUM 2 |
Definition at line 563 of file glibc_elf.h.
#define VER_DEF_CURRENT 1 /* Current version */ |
Definition at line 1010 of file glibc_elf.h.
#define VER_DEF_NONE 0 /* No version */ |
Definition at line 1009 of file glibc_elf.h.
#define VER_DEF_NUM 2 /* Given version number */ |
Definition at line 1011 of file glibc_elf.h.
#define VER_FLG_BASE 0x1 /* Version definition of file itself */ |
Definition at line 1014 of file glibc_elf.h.
#define VER_FLG_WEAK 0x2 /* Weak version identifier */ |
Definition at line 1091 of file glibc_elf.h.
#define VER_FLG_WEAK 0x2 /* Weak version identifier */ |
Definition at line 1091 of file glibc_elf.h.
#define VER_NDX_ELIMINATE 0xff01 /* Symbol is to be eliminated. */ |
Definition at line 1021 of file glibc_elf.h.
#define VER_NDX_GLOBAL 1 /* Symbol is global. */ |
Definition at line 1019 of file glibc_elf.h.
#define VER_NDX_LOCAL 0 /* Symbol is local. */ |
Definition at line 1018 of file glibc_elf.h.
#define VER_NDX_LORESERVE 0xff00 /* Beginning of reserved entries. */ |
Definition at line 1020 of file glibc_elf.h.
#define VER_NEED_CURRENT 1 /* Current version */ |
Definition at line 1065 of file glibc_elf.h.
#define VER_NEED_NONE 0 /* No version */ |
Definition at line 1064 of file glibc_elf.h.
#define VER_NEED_NUM 2 /* Given version number */ |
Definition at line 1066 of file glibc_elf.h.
typedef uint32_t Elf32_Addr |
Definition at line 49 of file glibc_elf.h.
typedef Elf32_Addr Elf32_Conflict |
Definition at line 1954 of file glibc_elf.h.
Definition at line 53 of file glibc_elf.h.
typedef uint16_t Elf32_Section |
Definition at line 57 of file glibc_elf.h.
typedef int32_t Elf32_Sword |
Definition at line 38 of file glibc_elf.h.
typedef int64_t Elf32_Sxword |
Definition at line 44 of file glibc_elf.h.
typedef Elf32_Half Elf32_Versym |
Definition at line 61 of file glibc_elf.h.
typedef uint32_t Elf32_Word |
Definition at line 37 of file glibc_elf.h.
typedef uint64_t Elf32_Xword |
Definition at line 43 of file glibc_elf.h.
typedef uint64_t Elf64_Addr |
Definition at line 50 of file glibc_elf.h.
typedef uint16_t Elf64_Half |
Definition at line 34 of file glibc_elf.h.
Definition at line 54 of file glibc_elf.h.
typedef uint16_t Elf64_Section |
Definition at line 58 of file glibc_elf.h.
typedef int32_t Elf64_Sword |
Definition at line 40 of file glibc_elf.h.
typedef int64_t Elf64_Sxword |
Definition at line 46 of file glibc_elf.h.
typedef Elf64_Half Elf64_Versym |
Definition at line 62 of file glibc_elf.h.
typedef uint32_t Elf64_Word |
Definition at line 39 of file glibc_elf.h.
typedef uint64_t Elf64_Xword |
Definition at line 45 of file glibc_elf.h.
anonymous enum |
Definition at line 2030 of file glibc_elf.h.
__BEGIN_DECLS typedef uint16_t Elf32_Half |
Definition at line 33 of file glibc_elf.h.