198b9484cSchristos /* MIPS ELF support for BFD. 2*02f41505Schristos Copyright (C) 1993-2024 Free Software Foundation, Inc. 398b9484cSchristos 498b9484cSchristos By Ian Lance Taylor, Cygnus Support, <ian@cygnus.com>, from 598b9484cSchristos information in the System V Application Binary Interface, MIPS 698b9484cSchristos Processor Supplement. 798b9484cSchristos 898b9484cSchristos This file is part of BFD, the Binary File Descriptor library. 998b9484cSchristos 1098b9484cSchristos This program is free software; you can redistribute it and/or modify 1198b9484cSchristos it under the terms of the GNU General Public License as published by 1298b9484cSchristos the Free Software Foundation; either version 3 of the License, or 1398b9484cSchristos (at your option) any later version. 1498b9484cSchristos 1598b9484cSchristos This program is distributed in the hope that it will be useful, 1698b9484cSchristos but WITHOUT ANY WARRANTY; without even the implied warranty of 1798b9484cSchristos MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 1898b9484cSchristos GNU General Public License for more details. 1998b9484cSchristos 2098b9484cSchristos You should have received a copy of the GNU General Public License 2198b9484cSchristos along with this program; if not, write to the Free Software 2298b9484cSchristos Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, 2398b9484cSchristos MA 02110-1301, USA. */ 2498b9484cSchristos 2598b9484cSchristos /* This file holds definitions specific to the MIPS ELF ABI. Note 2698b9484cSchristos that most of this is not actually implemented by BFD. */ 2798b9484cSchristos 2898b9484cSchristos #ifndef _ELF_MIPS_H 2998b9484cSchristos #define _ELF_MIPS_H 3098b9484cSchristos 3198b9484cSchristos #include "elf/reloc-macros.h" 3298b9484cSchristos 33ba340e45Schristos #ifdef __cplusplus 34ba340e45Schristos extern "C" { 35ba340e45Schristos #endif 36ba340e45Schristos 3798b9484cSchristos /* Relocation types. */ 3898b9484cSchristos START_RELOC_NUMBERS (elf_mips_reloc_type) 3998b9484cSchristos RELOC_NUMBER (R_MIPS_NONE, 0) 4098b9484cSchristos RELOC_NUMBER (R_MIPS_16, 1) 4198b9484cSchristos RELOC_NUMBER (R_MIPS_32, 2) /* In Elf 64: alias R_MIPS_ADD */ 4298b9484cSchristos RELOC_NUMBER (R_MIPS_REL32, 3) /* In Elf 64: alias R_MIPS_REL */ 4398b9484cSchristos RELOC_NUMBER (R_MIPS_26, 4) 4498b9484cSchristos RELOC_NUMBER (R_MIPS_HI16, 5) 4598b9484cSchristos RELOC_NUMBER (R_MIPS_LO16, 6) 4698b9484cSchristos RELOC_NUMBER (R_MIPS_GPREL16, 7) /* In Elf 64: alias R_MIPS_GPREL */ 4798b9484cSchristos RELOC_NUMBER (R_MIPS_LITERAL, 8) 4898b9484cSchristos RELOC_NUMBER (R_MIPS_GOT16, 9) /* In Elf 64: alias R_MIPS_GOT */ 4998b9484cSchristos RELOC_NUMBER (R_MIPS_PC16, 10) 5098b9484cSchristos RELOC_NUMBER (R_MIPS_CALL16, 11) /* In Elf 64: alias R_MIPS_CALL */ 5198b9484cSchristos RELOC_NUMBER (R_MIPS_GPREL32, 12) 5298b9484cSchristos /* The remaining relocs are defined on Irix, although they are not 5398b9484cSchristos in the MIPS ELF ABI. */ 5498b9484cSchristos RELOC_NUMBER (R_MIPS_UNUSED1, 13) 5598b9484cSchristos RELOC_NUMBER (R_MIPS_UNUSED2, 14) 5698b9484cSchristos RELOC_NUMBER (R_MIPS_UNUSED3, 15) 5798b9484cSchristos RELOC_NUMBER (R_MIPS_SHIFT5, 16) 5898b9484cSchristos RELOC_NUMBER (R_MIPS_SHIFT6, 17) 5998b9484cSchristos RELOC_NUMBER (R_MIPS_64, 18) 6098b9484cSchristos RELOC_NUMBER (R_MIPS_GOT_DISP, 19) 6198b9484cSchristos RELOC_NUMBER (R_MIPS_GOT_PAGE, 20) 6298b9484cSchristos RELOC_NUMBER (R_MIPS_GOT_OFST, 21) 6398b9484cSchristos RELOC_NUMBER (R_MIPS_GOT_HI16, 22) 6498b9484cSchristos RELOC_NUMBER (R_MIPS_GOT_LO16, 23) 6598b9484cSchristos RELOC_NUMBER (R_MIPS_SUB, 24) 6698b9484cSchristos RELOC_NUMBER (R_MIPS_INSERT_A, 25) 6798b9484cSchristos RELOC_NUMBER (R_MIPS_INSERT_B, 26) 6898b9484cSchristos RELOC_NUMBER (R_MIPS_DELETE, 27) 6998b9484cSchristos RELOC_NUMBER (R_MIPS_HIGHER, 28) 7098b9484cSchristos RELOC_NUMBER (R_MIPS_HIGHEST, 29) 7198b9484cSchristos RELOC_NUMBER (R_MIPS_CALL_HI16, 30) 7298b9484cSchristos RELOC_NUMBER (R_MIPS_CALL_LO16, 31) 7398b9484cSchristos RELOC_NUMBER (R_MIPS_SCN_DISP, 32) 7498b9484cSchristos RELOC_NUMBER (R_MIPS_REL16, 33) 7598b9484cSchristos RELOC_NUMBER (R_MIPS_ADD_IMMEDIATE, 34) 7698b9484cSchristos RELOC_NUMBER (R_MIPS_PJUMP, 35) 7798b9484cSchristos RELOC_NUMBER (R_MIPS_RELGOT, 36) 7898b9484cSchristos RELOC_NUMBER (R_MIPS_JALR, 37) 7998b9484cSchristos /* TLS relocations. */ 8098b9484cSchristos RELOC_NUMBER (R_MIPS_TLS_DTPMOD32, 38) 8198b9484cSchristos RELOC_NUMBER (R_MIPS_TLS_DTPREL32, 39) 8298b9484cSchristos RELOC_NUMBER (R_MIPS_TLS_DTPMOD64, 40) 8398b9484cSchristos RELOC_NUMBER (R_MIPS_TLS_DTPREL64, 41) 8498b9484cSchristos RELOC_NUMBER (R_MIPS_TLS_GD, 42) 8598b9484cSchristos RELOC_NUMBER (R_MIPS_TLS_LDM, 43) 8698b9484cSchristos RELOC_NUMBER (R_MIPS_TLS_DTPREL_HI16, 44) 8798b9484cSchristos RELOC_NUMBER (R_MIPS_TLS_DTPREL_LO16, 45) 8898b9484cSchristos RELOC_NUMBER (R_MIPS_TLS_GOTTPREL, 46) 8998b9484cSchristos RELOC_NUMBER (R_MIPS_TLS_TPREL32, 47) 9098b9484cSchristos RELOC_NUMBER (R_MIPS_TLS_TPREL64, 48) 9198b9484cSchristos RELOC_NUMBER (R_MIPS_TLS_TPREL_HI16, 49) 9298b9484cSchristos RELOC_NUMBER (R_MIPS_TLS_TPREL_LO16, 50) 9398b9484cSchristos RELOC_NUMBER (R_MIPS_GLOB_DAT, 51) 94968cf8f2Schristos /* Space to grow */ 95968cf8f2Schristos RELOC_NUMBER (R_MIPS_PC21_S2, 60) 96968cf8f2Schristos RELOC_NUMBER (R_MIPS_PC26_S2, 61) 97968cf8f2Schristos RELOC_NUMBER (R_MIPS_PC18_S3, 62) 98968cf8f2Schristos RELOC_NUMBER (R_MIPS_PC19_S2, 63) 99968cf8f2Schristos RELOC_NUMBER (R_MIPS_PCHI16, 64) 100968cf8f2Schristos RELOC_NUMBER (R_MIPS_PCLO16, 65) 101968cf8f2Schristos FAKE_RELOC (R_MIPS_max, 66) 10298b9484cSchristos /* These relocs are used for the mips16. */ 10398b9484cSchristos FAKE_RELOC (R_MIPS16_min, 100) 10498b9484cSchristos RELOC_NUMBER (R_MIPS16_26, 100) 10598b9484cSchristos RELOC_NUMBER (R_MIPS16_GPREL, 101) 10698b9484cSchristos RELOC_NUMBER (R_MIPS16_GOT16, 102) 10798b9484cSchristos RELOC_NUMBER (R_MIPS16_CALL16, 103) 10898b9484cSchristos RELOC_NUMBER (R_MIPS16_HI16, 104) 10998b9484cSchristos RELOC_NUMBER (R_MIPS16_LO16, 105) 110a2e2270fSchristos RELOC_NUMBER (R_MIPS16_TLS_GD, 106) 111a2e2270fSchristos RELOC_NUMBER (R_MIPS16_TLS_LDM, 107) 112a2e2270fSchristos RELOC_NUMBER (R_MIPS16_TLS_DTPREL_HI16, 108) 113a2e2270fSchristos RELOC_NUMBER (R_MIPS16_TLS_DTPREL_LO16, 109) 114a2e2270fSchristos RELOC_NUMBER (R_MIPS16_TLS_GOTTPREL, 110) 115a2e2270fSchristos RELOC_NUMBER (R_MIPS16_TLS_TPREL_HI16, 111) 116a2e2270fSchristos RELOC_NUMBER (R_MIPS16_TLS_TPREL_LO16, 112) 117ba340e45Schristos RELOC_NUMBER (R_MIPS16_PC16_S1, 113) 118ba340e45Schristos FAKE_RELOC (R_MIPS16_max, 114) 11998b9484cSchristos /* These relocations are specific to VxWorks. */ 12098b9484cSchristos RELOC_NUMBER (R_MIPS_COPY, 126) 12198b9484cSchristos RELOC_NUMBER (R_MIPS_JUMP_SLOT, 127) 122a2e2270fSchristos 123a2e2270fSchristos /* These relocations are specific to microMIPS. */ 124a2e2270fSchristos FAKE_RELOC (R_MICROMIPS_min, 130) 125a2e2270fSchristos RELOC_NUMBER (R_MICROMIPS_26_S1, 133) 126a2e2270fSchristos RELOC_NUMBER (R_MICROMIPS_HI16, 134) 127a2e2270fSchristos RELOC_NUMBER (R_MICROMIPS_LO16, 135) 128a2e2270fSchristos RELOC_NUMBER (R_MICROMIPS_GPREL16, 136) /* In Elf 64: 129a2e2270fSchristos alias R_MICROMIPS_GPREL */ 130a2e2270fSchristos RELOC_NUMBER (R_MICROMIPS_LITERAL, 137) 131a2e2270fSchristos RELOC_NUMBER (R_MICROMIPS_GOT16, 138) /* In Elf 64: 132a2e2270fSchristos alias R_MICROMIPS_GOT */ 133a2e2270fSchristos RELOC_NUMBER (R_MICROMIPS_PC7_S1, 139) 134a2e2270fSchristos RELOC_NUMBER (R_MICROMIPS_PC10_S1, 140) 135a2e2270fSchristos RELOC_NUMBER (R_MICROMIPS_PC16_S1, 141) 136a2e2270fSchristos RELOC_NUMBER (R_MICROMIPS_CALL16, 142) /* In Elf 64: 137a2e2270fSchristos alias R_MICROMIPS_CALL */ 138a2e2270fSchristos RELOC_NUMBER (R_MICROMIPS_GOT_DISP, 145) 139a2e2270fSchristos RELOC_NUMBER (R_MICROMIPS_GOT_PAGE, 146) 140a2e2270fSchristos RELOC_NUMBER (R_MICROMIPS_GOT_OFST, 147) 141a2e2270fSchristos RELOC_NUMBER (R_MICROMIPS_GOT_HI16, 148) 142a2e2270fSchristos RELOC_NUMBER (R_MICROMIPS_GOT_LO16, 149) 143a2e2270fSchristos RELOC_NUMBER (R_MICROMIPS_SUB, 150) 144a2e2270fSchristos RELOC_NUMBER (R_MICROMIPS_HIGHER, 151) 145a2e2270fSchristos RELOC_NUMBER (R_MICROMIPS_HIGHEST, 152) 146a2e2270fSchristos RELOC_NUMBER (R_MICROMIPS_CALL_HI16, 153) 147a2e2270fSchristos RELOC_NUMBER (R_MICROMIPS_CALL_LO16, 154) 148a2e2270fSchristos RELOC_NUMBER (R_MICROMIPS_SCN_DISP, 155) 149a2e2270fSchristos RELOC_NUMBER (R_MICROMIPS_JALR, 156) 150a2e2270fSchristos RELOC_NUMBER (R_MICROMIPS_HI0_LO16, 157) 151a2e2270fSchristos /* TLS relocations. */ 152a2e2270fSchristos RELOC_NUMBER (R_MICROMIPS_TLS_GD, 162) 153a2e2270fSchristos RELOC_NUMBER (R_MICROMIPS_TLS_LDM, 163) 154a2e2270fSchristos RELOC_NUMBER (R_MICROMIPS_TLS_DTPREL_HI16, 164) 155a2e2270fSchristos RELOC_NUMBER (R_MICROMIPS_TLS_DTPREL_LO16, 165) 156a2e2270fSchristos RELOC_NUMBER (R_MICROMIPS_TLS_GOTTPREL, 166) 157a2e2270fSchristos RELOC_NUMBER (R_MICROMIPS_TLS_TPREL_HI16, 169) 158a2e2270fSchristos RELOC_NUMBER (R_MICROMIPS_TLS_TPREL_LO16, 170) 159a2e2270fSchristos /* microMIPS GP- and PC-relative relocations. */ 160a2e2270fSchristos RELOC_NUMBER (R_MICROMIPS_GPREL7_S2, 172) 161a2e2270fSchristos RELOC_NUMBER (R_MICROMIPS_PC23_S2, 173) 162a2e2270fSchristos FAKE_RELOC (R_MICROMIPS_max, 174) 163a2e2270fSchristos 16498b9484cSchristos /* This was a GNU extension used by embedded-PIC. It was co-opted by 16503467a24Schristos mips-linux for exception-handling data. GCC stopped using it in 16603467a24Schristos May, 2004, then started using it again for compact unwind tables. */ 16798b9484cSchristos RELOC_NUMBER (R_MIPS_PC32, 248) 16803467a24Schristos RELOC_NUMBER (R_MIPS_EH, 249) 16998b9484cSchristos /* FIXME: this relocation is used internally by gas. */ 17098b9484cSchristos RELOC_NUMBER (R_MIPS_GNU_REL16_S2, 250) 17198b9484cSchristos /* These are GNU extensions to enable C++ vtable garbage collection. */ 17298b9484cSchristos RELOC_NUMBER (R_MIPS_GNU_VTINHERIT, 253) 17398b9484cSchristos RELOC_NUMBER (R_MIPS_GNU_VTENTRY, 254) 17498b9484cSchristos END_RELOC_NUMBERS (R_MIPS_maxext) 17598b9484cSchristos 17698b9484cSchristos /* Processor specific flags for the ELF header e_flags field. */ 17798b9484cSchristos 17898b9484cSchristos /* At least one .noreorder directive appears in the source. */ 17998b9484cSchristos #define EF_MIPS_NOREORDER 0x00000001 18098b9484cSchristos 18198b9484cSchristos /* File contains position independent code. */ 18298b9484cSchristos #define EF_MIPS_PIC 0x00000002 18398b9484cSchristos 18498b9484cSchristos /* Code in file uses the standard calling sequence for calling 18598b9484cSchristos position independent code. */ 18698b9484cSchristos #define EF_MIPS_CPIC 0x00000004 18798b9484cSchristos 18898b9484cSchristos /* ??? Unknown flag, set in IRIX 6's BSDdup2.o in libbsd.a. */ 18998b9484cSchristos #define EF_MIPS_XGOT 0x00000008 19098b9484cSchristos 19198b9484cSchristos /* Code in file uses UCODE (obsolete) */ 19298b9484cSchristos #define EF_MIPS_UCODE 0x00000010 19398b9484cSchristos 19498b9484cSchristos /* Code in file uses new ABI (-n32 on Irix 6). */ 19598b9484cSchristos #define EF_MIPS_ABI2 0x00000020 19698b9484cSchristos 19798b9484cSchristos /* Process the .MIPS.options section first by ld */ 19898b9484cSchristos #define EF_MIPS_OPTIONS_FIRST 0x00000080 19998b9484cSchristos 200a2e2270fSchristos /* Indicates code compiled for a 64-bit machine in 32-bit mode 201a2e2270fSchristos (regs are 32-bits wide). */ 202a2e2270fSchristos #define EF_MIPS_32BITMODE 0x00000100 203a2e2270fSchristos 20403467a24Schristos /* 32-bit machine but FP registers are 64 bit (-mfp64). */ 20503467a24Schristos #define EF_MIPS_FP64 0x00000200 20603467a24Schristos 20703467a24Schristos /* Code in file uses the IEEE 754-2008 NaN encoding convention. */ 20803467a24Schristos #define EF_MIPS_NAN2008 0x00000400 20903467a24Schristos 21098b9484cSchristos /* Architectural Extensions used by this file */ 21198b9484cSchristos #define EF_MIPS_ARCH_ASE 0x0f000000 21298b9484cSchristos 21398b9484cSchristos /* Use MDMX multimedia extensions */ 21498b9484cSchristos #define EF_MIPS_ARCH_ASE_MDMX 0x08000000 21598b9484cSchristos 21698b9484cSchristos /* Use MIPS-16 ISA extensions */ 21798b9484cSchristos #define EF_MIPS_ARCH_ASE_M16 0x04000000 21898b9484cSchristos 219a2e2270fSchristos /* Use MICROMIPS ISA extensions. */ 220a2e2270fSchristos #define EF_MIPS_ARCH_ASE_MICROMIPS 0x02000000 22198b9484cSchristos 22298b9484cSchristos /* Four bit MIPS architecture field. */ 22398b9484cSchristos #define EF_MIPS_ARCH 0xf0000000 22498b9484cSchristos 22598b9484cSchristos /* -mips1 code. */ 226*02f41505Schristos #define EF_MIPS_ARCH_1 0x00000000 22798b9484cSchristos 22898b9484cSchristos /* -mips2 code. */ 229*02f41505Schristos #define EF_MIPS_ARCH_2 0x10000000 23098b9484cSchristos 23198b9484cSchristos /* -mips3 code. */ 232*02f41505Schristos #define EF_MIPS_ARCH_3 0x20000000 23398b9484cSchristos 23498b9484cSchristos /* -mips4 code. */ 235*02f41505Schristos #define EF_MIPS_ARCH_4 0x30000000 23698b9484cSchristos 23798b9484cSchristos /* -mips5 code. */ 238*02f41505Schristos #define EF_MIPS_ARCH_5 0x40000000 23998b9484cSchristos 24098b9484cSchristos /* -mips32 code. */ 241*02f41505Schristos #define EF_MIPS_ARCH_32 0x50000000 24298b9484cSchristos 24398b9484cSchristos /* -mips64 code. */ 244*02f41505Schristos #define EF_MIPS_ARCH_64 0x60000000 24598b9484cSchristos 24698b9484cSchristos /* -mips32r2 code. */ 247*02f41505Schristos #define EF_MIPS_ARCH_32R2 0x70000000 24898b9484cSchristos 24998b9484cSchristos /* -mips64r2 code. */ 250*02f41505Schristos #define EF_MIPS_ARCH_64R2 0x80000000 25198b9484cSchristos 252968cf8f2Schristos /* -mips32r6 code. */ 253*02f41505Schristos #define EF_MIPS_ARCH_32R6 0x90000000 254968cf8f2Schristos 255968cf8f2Schristos /* -mips64r6 code. */ 256*02f41505Schristos #define EF_MIPS_ARCH_64R6 0xa0000000 257968cf8f2Schristos 25898b9484cSchristos /* The ABI of the file. Also see EF_MIPS_ABI2 above. */ 25998b9484cSchristos #define EF_MIPS_ABI 0x0000F000 26098b9484cSchristos 26198b9484cSchristos /* The original o32 abi. */ 262*02f41505Schristos #define EF_MIPS_ABI_O32 0x00001000 26398b9484cSchristos 26498b9484cSchristos /* O32 extended to work on 64 bit architectures */ 265*02f41505Schristos #define EF_MIPS_ABI_O64 0x00002000 26698b9484cSchristos 26798b9484cSchristos /* EABI in 32 bit mode */ 268*02f41505Schristos #define EF_MIPS_ABI_EABI32 0x00003000 26998b9484cSchristos 27098b9484cSchristos /* EABI in 64 bit mode */ 271*02f41505Schristos #define EF_MIPS_ABI_EABI64 0x00004000 272*02f41505Schristos 273*02f41505Schristos /* In order to support backwards compatibility we also 274*02f41505Schristos define the old versions of some of these constants. */ 275*02f41505Schristos #define E_MIPS_ARCH_1 EF_MIPS_ARCH_1 276*02f41505Schristos #define E_MIPS_ARCH_2 EF_MIPS_ARCH_2 277*02f41505Schristos #define E_MIPS_ARCH_3 EF_MIPS_ARCH_3 278*02f41505Schristos #define E_MIPS_ARCH_4 EF_MIPS_ARCH_4 279*02f41505Schristos #define E_MIPS_ARCH_5 EF_MIPS_ARCH_5 280*02f41505Schristos #define E_MIPS_ARCH_32 EF_MIPS_ARCH_32 281*02f41505Schristos #define E_MIPS_ARCH_64 EF_MIPS_ARCH_64 282*02f41505Schristos #define E_MIPS_ARCH_32R2 EF_MIPS_ARCH_32R2 283*02f41505Schristos #define E_MIPS_ARCH_64R2 EF_MIPS_ARCH_64R2 284*02f41505Schristos #define E_MIPS_ARCH_32R6 EF_MIPS_ARCH_32R6 285*02f41505Schristos #define E_MIPS_ARCH_64R6 EF_MIPS_ARCH_64R6 286*02f41505Schristos #define E_MIPS_ABI_O32 EF_MIPS_ABI_O32 287*02f41505Schristos #define E_MIPS_ABI_O64 EF_MIPS_ABI_O64 288*02f41505Schristos #define E_MIPS_ABI_EABI32 EF_MIPS_ABI_EABI32 289*02f41505Schristos #define E_MIPS_ABI_EABI64 EF_MIPS_ABI_EABI64 29098b9484cSchristos 29198b9484cSchristos 29298b9484cSchristos /* Machine variant if we know it. This field was invented at Cygnus, 29398b9484cSchristos but it is hoped that other vendors will adopt it. If some standard 29498b9484cSchristos is developed, this code should be changed to follow it. */ 29598b9484cSchristos 29698b9484cSchristos #define EF_MIPS_MACH 0x00FF0000 29798b9484cSchristos 29898b9484cSchristos /* Cygnus is choosing values between 80 and 9F; 29998b9484cSchristos 00 - 7F should be left for a future standard; 30098b9484cSchristos the rest are open. */ 30198b9484cSchristos 302*02f41505Schristos #define EF_MIPS_MACH_3900 0x00810000 303*02f41505Schristos #define EF_MIPS_MACH_4010 0x00820000 304*02f41505Schristos #define EF_MIPS_MACH_4100 0x00830000 305*02f41505Schristos #define EF_MIPS_MACH_ALLEGREX 0x00840000 306*02f41505Schristos #define EF_MIPS_MACH_4650 0x00850000 307*02f41505Schristos #define EF_MIPS_MACH_4120 0x00870000 308*02f41505Schristos #define EF_MIPS_MACH_4111 0x00880000 309*02f41505Schristos #define EF_MIPS_MACH_SB1 0x008a0000 310*02f41505Schristos #define EF_MIPS_MACH_OCTEON 0x008b0000 311*02f41505Schristos #define EF_MIPS_MACH_XLR 0x008c0000 312*02f41505Schristos #define EF_MIPS_MACH_OCTEON2 0x008d0000 313*02f41505Schristos #define EF_MIPS_MACH_OCTEON3 0x008e0000 314*02f41505Schristos #define EF_MIPS_MACH_5400 0x00910000 315*02f41505Schristos #define EF_MIPS_MACH_5900 0x00920000 316*02f41505Schristos #define EF_MIPS_MACH_IAMR2 0x00930000 317*02f41505Schristos #define EF_MIPS_MACH_5500 0x00980000 318*02f41505Schristos #define EF_MIPS_MACH_9000 0x00990000 319*02f41505Schristos #define EF_MIPS_MACH_LS2E 0x00A00000 320*02f41505Schristos #define EF_MIPS_MACH_LS2F 0x00A10000 321*02f41505Schristos #define EF_MIPS_MACH_GS464 0x00A20000 322*02f41505Schristos #define EF_MIPS_MACH_GS464E 0x00A30000 323*02f41505Schristos #define EF_MIPS_MACH_GS264E 0x00A40000 324*02f41505Schristos 325*02f41505Schristos /* In order to support backwards compatibility we also 326*02f41505Schristos define the old versions of some of these constants. */ 327*02f41505Schristos #define E_MIPS_MACH_3900 EF_MIPS_MACH_3900 328*02f41505Schristos #define E_MIPS_MACH_4010 EF_MIPS_MACH_4010 329*02f41505Schristos #define E_MIPS_MACH_4100 EF_MIPS_MACH_4100 330*02f41505Schristos #define E_MIPS_MACH_ALLEGREX EF_MIPS_MACH_ALLEGREX 331*02f41505Schristos #define E_MIPS_MACH_4650 EF_MIPS_MACH_4650 332*02f41505Schristos #define E_MIPS_MACH_4120 EF_MIPS_MACH_4120 333*02f41505Schristos #define E_MIPS_MACH_4111 EF_MIPS_MACH_4111 334*02f41505Schristos #define E_MIPS_MACH_SB1 EF_MIPS_MACH_SB1 335*02f41505Schristos #define E_MIPS_MACH_OCTEON EF_MIPS_MACH_OCTEON 336*02f41505Schristos #define E_MIPS_MACH_XLR EF_MIPS_MACH_XLR 337*02f41505Schristos #define E_MIPS_MACH_OCTEON2 EF_MIPS_MACH_OCTEON2 338*02f41505Schristos #define E_MIPS_MACH_OCTEON3 EF_MIPS_MACH_OCTEON3 339*02f41505Schristos #define E_MIPS_MACH_5400 EF_MIPS_MACH_5400 340*02f41505Schristos #define E_MIPS_MACH_5900 EF_MIPS_MACH_5900 341*02f41505Schristos #define E_MIPS_MACH_IAMR2 EF_MIPS_MACH_IAMR2 342*02f41505Schristos #define E_MIPS_MACH_5500 EF_MIPS_MACH_5500 343*02f41505Schristos #define E_MIPS_MACH_9000 EF_MIPS_MACH_9000 344*02f41505Schristos #define E_MIPS_MACH_LS2E EF_MIPS_MACH_LS2E 345*02f41505Schristos #define E_MIPS_MACH_LS2F EF_MIPS_MACH_LS2F 346*02f41505Schristos #define E_MIPS_MACH_GS464 EF_MIPS_MACH_GS464 347*02f41505Schristos #define E_MIPS_MACH_GS464E EF_MIPS_MACH_GS464E 348*02f41505Schristos #define E_MIPS_MACH_GS264E EF_MIPS_MACH_GS264E 349*02f41505Schristos 35098b9484cSchristos /* Processor specific section indices. These sections do not actually 35198b9484cSchristos exist. Symbols with a st_shndx field corresponding to one of these 35298b9484cSchristos values have a special meaning. */ 35398b9484cSchristos 35498b9484cSchristos /* Defined and allocated common symbol. Value is virtual address. If 35598b9484cSchristos relocated, alignment must be preserved. */ 35698b9484cSchristos #define SHN_MIPS_ACOMMON SHN_LORESERVE 35798b9484cSchristos 35898b9484cSchristos /* Defined and allocated text symbol. Value is virtual address. 35998b9484cSchristos Occur in the dynamic symbol table of Alpha OSF/1 and Irix 5 executables. */ 36098b9484cSchristos #define SHN_MIPS_TEXT (SHN_LORESERVE + 1) 36198b9484cSchristos 36298b9484cSchristos /* Defined and allocated data symbol. Value is virtual address. 36398b9484cSchristos Occur in the dynamic symbol table of Alpha OSF/1 and Irix 5 executables. */ 36498b9484cSchristos #define SHN_MIPS_DATA (SHN_LORESERVE + 2) 36598b9484cSchristos 36698b9484cSchristos /* Small common symbol. */ 36798b9484cSchristos #define SHN_MIPS_SCOMMON (SHN_LORESERVE + 3) 36898b9484cSchristos 36998b9484cSchristos /* Small undefined symbol. */ 37098b9484cSchristos #define SHN_MIPS_SUNDEFINED (SHN_LORESERVE + 4) 37198b9484cSchristos 37298b9484cSchristos /* Processor specific section types. */ 37398b9484cSchristos 37498b9484cSchristos /* Section contains the set of dynamic shared objects used when 37598b9484cSchristos statically linking. */ 37698b9484cSchristos #define SHT_MIPS_LIBLIST 0x70000000 37798b9484cSchristos 37898b9484cSchristos /* I'm not sure what this is, but it's used on Irix 5. */ 37998b9484cSchristos #define SHT_MIPS_MSYM 0x70000001 38098b9484cSchristos 38198b9484cSchristos /* Section contains list of symbols whose definitions conflict with 38298b9484cSchristos symbols defined in shared objects. */ 38398b9484cSchristos #define SHT_MIPS_CONFLICT 0x70000002 38498b9484cSchristos 38598b9484cSchristos /* Section contains the global pointer table. */ 38698b9484cSchristos #define SHT_MIPS_GPTAB 0x70000003 38798b9484cSchristos 38898b9484cSchristos /* Section contains microcode information. The exact format is 38998b9484cSchristos unspecified. */ 39098b9484cSchristos #define SHT_MIPS_UCODE 0x70000004 39198b9484cSchristos 39298b9484cSchristos /* Section contains some sort of debugging information. The exact 39398b9484cSchristos format is unspecified. It's probably ECOFF symbols. */ 39498b9484cSchristos #define SHT_MIPS_DEBUG 0x70000005 39598b9484cSchristos 39698b9484cSchristos /* Section contains register usage information. */ 39798b9484cSchristos #define SHT_MIPS_REGINFO 0x70000006 39898b9484cSchristos 39998b9484cSchristos /* ??? */ 40098b9484cSchristos #define SHT_MIPS_PACKAGE 0x70000007 40198b9484cSchristos 40298b9484cSchristos /* ??? */ 40398b9484cSchristos #define SHT_MIPS_PACKSYM 0x70000008 40498b9484cSchristos 40598b9484cSchristos /* ??? */ 40698b9484cSchristos #define SHT_MIPS_RELD 0x70000009 40798b9484cSchristos 40898b9484cSchristos /* Section contains interface information. */ 40998b9484cSchristos #define SHT_MIPS_IFACE 0x7000000b 41098b9484cSchristos 41198b9484cSchristos /* Section contains description of contents of another section. */ 41298b9484cSchristos #define SHT_MIPS_CONTENT 0x7000000c 41398b9484cSchristos 41498b9484cSchristos /* Section contains miscellaneous options. */ 41598b9484cSchristos #define SHT_MIPS_OPTIONS 0x7000000d 41698b9484cSchristos 41798b9484cSchristos /* ??? */ 41898b9484cSchristos #define SHT_MIPS_SHDR 0x70000010 41998b9484cSchristos 42098b9484cSchristos /* ??? */ 42198b9484cSchristos #define SHT_MIPS_FDESC 0x70000011 42298b9484cSchristos 42398b9484cSchristos /* ??? */ 42498b9484cSchristos #define SHT_MIPS_EXTSYM 0x70000012 42598b9484cSchristos 42698b9484cSchristos /* ??? */ 42798b9484cSchristos #define SHT_MIPS_DENSE 0x70000013 42898b9484cSchristos 42998b9484cSchristos /* ??? */ 43098b9484cSchristos #define SHT_MIPS_PDESC 0x70000014 43198b9484cSchristos 43298b9484cSchristos /* ??? */ 43398b9484cSchristos #define SHT_MIPS_LOCSYM 0x70000015 43498b9484cSchristos 43598b9484cSchristos /* ??? */ 43698b9484cSchristos #define SHT_MIPS_AUXSYM 0x70000016 43798b9484cSchristos 43898b9484cSchristos /* ??? */ 43998b9484cSchristos #define SHT_MIPS_OPTSYM 0x70000017 44098b9484cSchristos 44198b9484cSchristos /* ??? */ 44298b9484cSchristos #define SHT_MIPS_LOCSTR 0x70000018 44398b9484cSchristos 44498b9484cSchristos /* ??? */ 44598b9484cSchristos #define SHT_MIPS_LINE 0x70000019 44698b9484cSchristos 44798b9484cSchristos /* ??? */ 44898b9484cSchristos #define SHT_MIPS_RFDESC 0x7000001a 44998b9484cSchristos 45098b9484cSchristos /* Delta C++: symbol table */ 45198b9484cSchristos #define SHT_MIPS_DELTASYM 0x7000001b 45298b9484cSchristos 45398b9484cSchristos /* Delta C++: instance table */ 45498b9484cSchristos #define SHT_MIPS_DELTAINST 0x7000001c 45598b9484cSchristos 45698b9484cSchristos /* Delta C++: class table */ 45798b9484cSchristos #define SHT_MIPS_DELTACLASS 0x7000001d 45898b9484cSchristos 45998b9484cSchristos /* DWARF debugging section. */ 46098b9484cSchristos #define SHT_MIPS_DWARF 0x7000001e 46198b9484cSchristos 46298b9484cSchristos /* Delta C++: declarations */ 46398b9484cSchristos #define SHT_MIPS_DELTADECL 0x7000001f 46498b9484cSchristos 46598b9484cSchristos /* List of libraries the binary depends on. Includes a time stamp, version 46698b9484cSchristos number. */ 46798b9484cSchristos #define SHT_MIPS_SYMBOL_LIB 0x70000020 46898b9484cSchristos 46998b9484cSchristos /* Events section. */ 47098b9484cSchristos #define SHT_MIPS_EVENTS 0x70000021 47198b9484cSchristos 47298b9484cSchristos /* ??? */ 47398b9484cSchristos #define SHT_MIPS_TRANSLATE 0x70000022 47498b9484cSchristos 47598b9484cSchristos /* Special pixie sections */ 47698b9484cSchristos #define SHT_MIPS_PIXIE 0x70000023 47798b9484cSchristos 47898b9484cSchristos /* Address translation table (for debug info) */ 47998b9484cSchristos #define SHT_MIPS_XLATE 0x70000024 48098b9484cSchristos 48198b9484cSchristos /* SGI internal address translation table (for debug info) */ 48298b9484cSchristos #define SHT_MIPS_XLATE_DEBUG 0x70000025 48398b9484cSchristos 48498b9484cSchristos /* Intermediate code */ 48598b9484cSchristos #define SHT_MIPS_WHIRL 0x70000026 48698b9484cSchristos 48798b9484cSchristos /* C++ exception handling region info */ 48898b9484cSchristos #define SHT_MIPS_EH_REGION 0x70000027 48998b9484cSchristos 49098b9484cSchristos /* Obsolete address translation table (for debug info) */ 49198b9484cSchristos #define SHT_MIPS_XLATE_OLD 0x70000028 49298b9484cSchristos 49398b9484cSchristos /* Runtime procedure descriptor table exception information (ucode) ??? */ 49498b9484cSchristos #define SHT_MIPS_PDR_EXCEPTION 0x70000029 49598b9484cSchristos 496968cf8f2Schristos /* ABI related flags section. */ 497968cf8f2Schristos #define SHT_MIPS_ABIFLAGS 0x7000002a 49898b9484cSchristos 4998dffb485Schristos /* GNU style symbol hash table with xlat. */ 5008dffb485Schristos #define SHT_MIPS_XHASH 0x7000002b 5018dffb485Schristos 50298b9484cSchristos /* A section of type SHT_MIPS_LIBLIST contains an array of the 50398b9484cSchristos following structure. The sh_link field is the section index of the 50498b9484cSchristos string table. The sh_info field is the number of entries in the 50598b9484cSchristos section. */ 50698b9484cSchristos typedef struct 50798b9484cSchristos { 50898b9484cSchristos /* String table index for name of shared object. */ 50998b9484cSchristos unsigned long l_name; 51098b9484cSchristos /* Time stamp. */ 51198b9484cSchristos unsigned long l_time_stamp; 51298b9484cSchristos /* Checksum of symbol names and common sizes. */ 51398b9484cSchristos unsigned long l_checksum; 51498b9484cSchristos /* String table index for version. */ 51598b9484cSchristos unsigned long l_version; 51698b9484cSchristos /* Flags. */ 51798b9484cSchristos unsigned long l_flags; 51898b9484cSchristos } Elf32_Lib; 51998b9484cSchristos 52098b9484cSchristos /* The external version of Elf32_Lib. */ 52198b9484cSchristos typedef struct 52298b9484cSchristos { 52398b9484cSchristos unsigned char l_name[4]; 52498b9484cSchristos unsigned char l_time_stamp[4]; 52598b9484cSchristos unsigned char l_checksum[4]; 52698b9484cSchristos unsigned char l_version[4]; 52798b9484cSchristos unsigned char l_flags[4]; 52898b9484cSchristos } Elf32_External_Lib; 52998b9484cSchristos 53098b9484cSchristos /* The l_flags field of an Elf32_Lib structure may contain the 53198b9484cSchristos following flags. */ 53298b9484cSchristos 53398b9484cSchristos /* Require an exact match at runtime. */ 53498b9484cSchristos #define LL_EXACT_MATCH 0x00000001 53598b9484cSchristos 53698b9484cSchristos /* Ignore version incompatibilities at runtime. */ 53798b9484cSchristos #define LL_IGNORE_INT_VER 0x00000002 53898b9484cSchristos 53998b9484cSchristos /* Require matching minor version number. */ 54098b9484cSchristos #define LL_REQUIRE_MINOR 0x00000004 54198b9484cSchristos 54298b9484cSchristos /* ??? */ 54398b9484cSchristos #define LL_EXPORTS 0x00000008 54498b9484cSchristos 54598b9484cSchristos /* Delay loading of this library until really needed. */ 54698b9484cSchristos #define LL_DELAY_LOAD 0x00000010 54798b9484cSchristos 54898b9484cSchristos /* ??? Delta C++ stuff ??? */ 54998b9484cSchristos #define LL_DELTA 0x00000020 55098b9484cSchristos 55198b9484cSchristos 55298b9484cSchristos /* A section of type SHT_MIPS_CONFLICT is an array of indices into the 55398b9484cSchristos .dynsym section. Each element has the following type. */ 55498b9484cSchristos typedef unsigned long Elf32_Conflict; 55598b9484cSchristos typedef unsigned char Elf32_External_Conflict[4]; 55698b9484cSchristos 55798b9484cSchristos typedef unsigned long Elf64_Conflict; 55898b9484cSchristos typedef unsigned char Elf64_External_Conflict[8]; 55998b9484cSchristos 56098b9484cSchristos /* A section of type SHT_MIPS_GPTAB contains information about how 56198b9484cSchristos much GP space would be required for different -G arguments. This 56298b9484cSchristos information is only used so that the linker can provide informative 56398b9484cSchristos suggestions as to the best -G value to use. The sh_info field is 56498b9484cSchristos the index of the section for which this information applies. The 56598b9484cSchristos contents of the section are an array of the following union. The 56698b9484cSchristos first element uses the gt_header field. The remaining elements use 56798b9484cSchristos the gt_entry field. */ 56898b9484cSchristos typedef union 56998b9484cSchristos { 57098b9484cSchristos struct 57198b9484cSchristos { 57298b9484cSchristos /* -G value actually used for this object file. */ 57398b9484cSchristos unsigned long gt_current_g_value; 57498b9484cSchristos /* Unused. */ 57598b9484cSchristos unsigned long gt_unused; 57698b9484cSchristos } gt_header; 57798b9484cSchristos struct 57898b9484cSchristos { 57998b9484cSchristos /* If this -G argument has been used... */ 58098b9484cSchristos unsigned long gt_g_value; 58198b9484cSchristos /* ...this many GP section bytes would be required. */ 58298b9484cSchristos unsigned long gt_bytes; 58398b9484cSchristos } gt_entry; 58498b9484cSchristos } Elf32_gptab; 58598b9484cSchristos 58698b9484cSchristos /* The external version of Elf32_gptab. */ 58798b9484cSchristos 58898b9484cSchristos typedef union 58998b9484cSchristos { 59098b9484cSchristos struct 59198b9484cSchristos { 59298b9484cSchristos unsigned char gt_current_g_value[4]; 59398b9484cSchristos unsigned char gt_unused[4]; 59498b9484cSchristos } gt_header; 59598b9484cSchristos struct 59698b9484cSchristos { 59798b9484cSchristos unsigned char gt_g_value[4]; 59898b9484cSchristos unsigned char gt_bytes[4]; 59998b9484cSchristos } gt_entry; 60098b9484cSchristos } Elf32_External_gptab; 60198b9484cSchristos 60298b9484cSchristos /* A section of type SHT_MIPS_REGINFO contains the following 60398b9484cSchristos structure. */ 60498b9484cSchristos typedef struct 60598b9484cSchristos { 60698b9484cSchristos /* Mask of general purpose registers used. */ 6078dffb485Schristos uint32_t ri_gprmask; 60898b9484cSchristos /* Mask of co-processor registers used. */ 6098dffb485Schristos uint32_t ri_cprmask[4]; 61098b9484cSchristos /* GP register value for this object file. */ 6118dffb485Schristos uint32_t ri_gp_value; 61298b9484cSchristos } Elf32_RegInfo; 61398b9484cSchristos 61498b9484cSchristos /* The external version of the Elf_RegInfo structure. */ 61598b9484cSchristos typedef struct 61698b9484cSchristos { 61798b9484cSchristos unsigned char ri_gprmask[4]; 61898b9484cSchristos unsigned char ri_cprmask[4][4]; 61998b9484cSchristos unsigned char ri_gp_value[4]; 62098b9484cSchristos } Elf32_External_RegInfo; 62198b9484cSchristos 62298b9484cSchristos /* MIPS ELF .reginfo swapping routines. */ 62398b9484cSchristos extern void bfd_mips_elf32_swap_reginfo_in 62498b9484cSchristos (bfd *, const Elf32_External_RegInfo *, Elf32_RegInfo *); 62598b9484cSchristos extern void bfd_mips_elf32_swap_reginfo_out 62698b9484cSchristos (bfd *, const Elf32_RegInfo *, Elf32_External_RegInfo *); 62798b9484cSchristos 62898b9484cSchristos /* Processor specific section flags. */ 62998b9484cSchristos 63098b9484cSchristos /* This section must be in the global data area. */ 63198b9484cSchristos #define SHF_MIPS_GPREL 0x10000000 63298b9484cSchristos 63398b9484cSchristos /* This section should be merged. */ 63498b9484cSchristos #define SHF_MIPS_MERGE 0x20000000 63598b9484cSchristos 63698b9484cSchristos /* This section contains address data of size implied by section 63798b9484cSchristos element size. */ 63898b9484cSchristos #define SHF_MIPS_ADDR 0x40000000 63998b9484cSchristos 64098b9484cSchristos /* This section contains string data. */ 64198b9484cSchristos #define SHF_MIPS_STRING 0x80000000 64298b9484cSchristos 64398b9484cSchristos /* This section may not be stripped. */ 64498b9484cSchristos #define SHF_MIPS_NOSTRIP 0x08000000 64598b9484cSchristos 64698b9484cSchristos /* This section is local to threads. */ 64798b9484cSchristos #define SHF_MIPS_LOCAL 0x04000000 64898b9484cSchristos 64998b9484cSchristos /* Linker should generate implicit weak names for this section. */ 65098b9484cSchristos #define SHF_MIPS_NAMES 0x02000000 65198b9484cSchristos 65298b9484cSchristos /* Section contais text/data which may be replicated in other sections. 65398b9484cSchristos Linker should retain only one copy. */ 65498b9484cSchristos #define SHF_MIPS_NODUPES 0x01000000 65598b9484cSchristos 65698b9484cSchristos /* Processor specific program header types. */ 65798b9484cSchristos 65898b9484cSchristos /* Register usage information. Identifies one .reginfo section. */ 65998b9484cSchristos #define PT_MIPS_REGINFO 0x70000000 66098b9484cSchristos 66198b9484cSchristos /* Runtime procedure table. */ 66298b9484cSchristos #define PT_MIPS_RTPROC 0x70000001 66398b9484cSchristos 66498b9484cSchristos /* .MIPS.options section. */ 66598b9484cSchristos #define PT_MIPS_OPTIONS 0x70000002 666968cf8f2Schristos 667968cf8f2Schristos /* Records ABI related flags. */ 668968cf8f2Schristos #define PT_MIPS_ABIFLAGS 0x70000003 66998b9484cSchristos 67098b9484cSchristos /* Processor specific dynamic array tags. */ 67198b9484cSchristos 67298b9484cSchristos /* 32 bit version number for runtime linker interface. */ 67398b9484cSchristos #define DT_MIPS_RLD_VERSION 0x70000001 67498b9484cSchristos 67598b9484cSchristos /* Time stamp. */ 67698b9484cSchristos #define DT_MIPS_TIME_STAMP 0x70000002 67798b9484cSchristos 67898b9484cSchristos /* Checksum of external strings and common sizes. */ 67998b9484cSchristos #define DT_MIPS_ICHECKSUM 0x70000003 68098b9484cSchristos 68198b9484cSchristos /* Index of version string in string table. */ 68298b9484cSchristos #define DT_MIPS_IVERSION 0x70000004 68398b9484cSchristos 68498b9484cSchristos /* 32 bits of flags. */ 68598b9484cSchristos #define DT_MIPS_FLAGS 0x70000005 68698b9484cSchristos 68798b9484cSchristos /* Base address of the segment. */ 68898b9484cSchristos #define DT_MIPS_BASE_ADDRESS 0x70000006 68998b9484cSchristos 69098b9484cSchristos /* ??? */ 69198b9484cSchristos #define DT_MIPS_MSYM 0x70000007 69298b9484cSchristos 69398b9484cSchristos /* Address of .conflict section. */ 69498b9484cSchristos #define DT_MIPS_CONFLICT 0x70000008 69598b9484cSchristos 69698b9484cSchristos /* Address of .liblist section. */ 69798b9484cSchristos #define DT_MIPS_LIBLIST 0x70000009 69898b9484cSchristos 69998b9484cSchristos /* Number of local global offset table entries. */ 70098b9484cSchristos #define DT_MIPS_LOCAL_GOTNO 0x7000000a 70198b9484cSchristos 70298b9484cSchristos /* Number of entries in the .conflict section. */ 70398b9484cSchristos #define DT_MIPS_CONFLICTNO 0x7000000b 70498b9484cSchristos 70598b9484cSchristos /* Number of entries in the .liblist section. */ 70698b9484cSchristos #define DT_MIPS_LIBLISTNO 0x70000010 70798b9484cSchristos 70898b9484cSchristos /* Number of entries in the .dynsym section. */ 70998b9484cSchristos #define DT_MIPS_SYMTABNO 0x70000011 71098b9484cSchristos 71198b9484cSchristos /* Index of first external dynamic symbol not referenced locally. */ 71298b9484cSchristos #define DT_MIPS_UNREFEXTNO 0x70000012 71398b9484cSchristos 71498b9484cSchristos /* Index of first dynamic symbol in global offset table. */ 71598b9484cSchristos #define DT_MIPS_GOTSYM 0x70000013 71698b9484cSchristos 71798b9484cSchristos /* Number of page table entries in global offset table. */ 71898b9484cSchristos #define DT_MIPS_HIPAGENO 0x70000014 71998b9484cSchristos 72098b9484cSchristos /* Address of run time loader map, used for debugging. */ 72198b9484cSchristos #define DT_MIPS_RLD_MAP 0x70000016 72298b9484cSchristos 72398b9484cSchristos /* Delta C++ class definition. */ 72498b9484cSchristos #define DT_MIPS_DELTA_CLASS 0x70000017 72598b9484cSchristos 72698b9484cSchristos /* Number of entries in DT_MIPS_DELTA_CLASS. */ 72798b9484cSchristos #define DT_MIPS_DELTA_CLASS_NO 0x70000018 72898b9484cSchristos 72998b9484cSchristos /* Delta C++ class instances. */ 73098b9484cSchristos #define DT_MIPS_DELTA_INSTANCE 0x70000019 73198b9484cSchristos 73298b9484cSchristos /* Number of entries in DT_MIPS_DELTA_INSTANCE. */ 73398b9484cSchristos #define DT_MIPS_DELTA_INSTANCE_NO 0x7000001a 73498b9484cSchristos 73598b9484cSchristos /* Delta relocations. */ 73698b9484cSchristos #define DT_MIPS_DELTA_RELOC 0x7000001b 73798b9484cSchristos 73898b9484cSchristos /* Number of entries in DT_MIPS_DELTA_RELOC. */ 73998b9484cSchristos #define DT_MIPS_DELTA_RELOC_NO 0x7000001c 74098b9484cSchristos 74198b9484cSchristos /* Delta symbols that Delta relocations refer to. */ 74298b9484cSchristos #define DT_MIPS_DELTA_SYM 0x7000001d 74398b9484cSchristos 74498b9484cSchristos /* Number of entries in DT_MIPS_DELTA_SYM. */ 74598b9484cSchristos #define DT_MIPS_DELTA_SYM_NO 0x7000001e 74698b9484cSchristos 74798b9484cSchristos /* Delta symbols that hold class declarations. */ 74898b9484cSchristos #define DT_MIPS_DELTA_CLASSSYM 0x70000020 74998b9484cSchristos 75098b9484cSchristos /* Number of entries in DT_MIPS_DELTA_CLASSSYM. */ 75198b9484cSchristos #define DT_MIPS_DELTA_CLASSSYM_NO 0x70000021 75298b9484cSchristos 75398b9484cSchristos /* Flags indicating information about C++ flavor. */ 75498b9484cSchristos #define DT_MIPS_CXX_FLAGS 0x70000022 75598b9484cSchristos 75698b9484cSchristos /* Pixie information (???). */ 75798b9484cSchristos #define DT_MIPS_PIXIE_INIT 0x70000023 75898b9484cSchristos 75998b9484cSchristos /* Address of .MIPS.symlib */ 76098b9484cSchristos #define DT_MIPS_SYMBOL_LIB 0x70000024 76198b9484cSchristos 76298b9484cSchristos /* The GOT index of the first PTE for a segment */ 76398b9484cSchristos #define DT_MIPS_LOCALPAGE_GOTIDX 0x70000025 76498b9484cSchristos 76598b9484cSchristos /* The GOT index of the first PTE for a local symbol */ 76698b9484cSchristos #define DT_MIPS_LOCAL_GOTIDX 0x70000026 76798b9484cSchristos 76898b9484cSchristos /* The GOT index of the first PTE for a hidden symbol */ 76998b9484cSchristos #define DT_MIPS_HIDDEN_GOTIDX 0x70000027 77098b9484cSchristos 77198b9484cSchristos /* The GOT index of the first PTE for a protected symbol */ 77298b9484cSchristos #define DT_MIPS_PROTECTED_GOTIDX 0x70000028 77398b9484cSchristos 77498b9484cSchristos /* Address of `.MIPS.options'. */ 77598b9484cSchristos #define DT_MIPS_OPTIONS 0x70000029 77698b9484cSchristos 77798b9484cSchristos /* Address of `.interface'. */ 77898b9484cSchristos #define DT_MIPS_INTERFACE 0x7000002a 77998b9484cSchristos 78098b9484cSchristos /* ??? */ 78198b9484cSchristos #define DT_MIPS_DYNSTR_ALIGN 0x7000002b 78298b9484cSchristos 78398b9484cSchristos /* Size of the .interface section. */ 78498b9484cSchristos #define DT_MIPS_INTERFACE_SIZE 0x7000002c 78598b9484cSchristos 78698b9484cSchristos /* Size of rld_text_resolve function stored in the GOT. */ 78798b9484cSchristos #define DT_MIPS_RLD_TEXT_RESOLVE_ADDR 0x7000002d 78898b9484cSchristos 78998b9484cSchristos /* Default suffix of DSO to be added by rld on dlopen() calls. */ 79098b9484cSchristos #define DT_MIPS_PERF_SUFFIX 0x7000002e 79198b9484cSchristos 79298b9484cSchristos /* Size of compact relocation section (O32). */ 79398b9484cSchristos #define DT_MIPS_COMPACT_SIZE 0x7000002f 79498b9484cSchristos 79598b9484cSchristos /* GP value for auxiliary GOTs. */ 79698b9484cSchristos #define DT_MIPS_GP_VALUE 0x70000030 79798b9484cSchristos 79898b9484cSchristos /* Address of auxiliary .dynamic. */ 79998b9484cSchristos #define DT_MIPS_AUX_DYNAMIC 0x70000031 80098b9484cSchristos 80198b9484cSchristos /* Address of the base of the PLTGOT. */ 80298b9484cSchristos #define DT_MIPS_PLTGOT 0x70000032 80398b9484cSchristos 80498b9484cSchristos /* Points to the base of a writable PLT. */ 80598b9484cSchristos #define DT_MIPS_RWPLT 0x70000034 806212397c6Schristos 807212397c6Schristos /* Relative offset of run time loader map, used for debugging. */ 808212397c6Schristos #define DT_MIPS_RLD_MAP_REL 0x70000035 8098dffb485Schristos 8108dffb485Schristos /* Address of .MIPS.xhash section. */ 8118dffb485Schristos #define DT_MIPS_XHASH 0x70000036 81298b9484cSchristos 81398b9484cSchristos /* Flags which may appear in a DT_MIPS_FLAGS entry. */ 81498b9484cSchristos 81598b9484cSchristos /* No flags. */ 81698b9484cSchristos #define RHF_NONE 0x00000000 81798b9484cSchristos 81898b9484cSchristos /* Uses shortcut pointers. */ 81998b9484cSchristos #define RHF_QUICKSTART 0x00000001 82098b9484cSchristos 82198b9484cSchristos /* Hash size is not a power of two. */ 82298b9484cSchristos #define RHF_NOTPOT 0x00000002 82398b9484cSchristos 82498b9484cSchristos /* Ignore LD_LIBRARY_PATH. */ 82598b9484cSchristos #define RHS_NO_LIBRARY_REPLACEMENT 0x00000004 82698b9484cSchristos 82798b9484cSchristos /* DSO address may not be relocated. */ 82898b9484cSchristos #define RHF_NO_MOVE 0x00000008 82998b9484cSchristos 83098b9484cSchristos /* SGI specific features. */ 83198b9484cSchristos #define RHF_SGI_ONLY 0x00000010 83298b9484cSchristos 83398b9484cSchristos /* Guarantee that .init will finish executing before any non-init 83498b9484cSchristos code in DSO is called. */ 83598b9484cSchristos #define RHF_GUARANTEE_INIT 0x00000020 83698b9484cSchristos 83798b9484cSchristos /* Contains Delta C++ code. */ 83898b9484cSchristos #define RHF_DELTA_C_PLUS_PLUS 0x00000040 83998b9484cSchristos 84098b9484cSchristos /* Guarantee that .init will start executing before any non-init 84198b9484cSchristos code in DSO is called. */ 84298b9484cSchristos #define RHF_GUARANTEE_START_INIT 0x00000080 84398b9484cSchristos 84498b9484cSchristos /* Generated by pixie. */ 84598b9484cSchristos #define RHF_PIXIE 0x00000100 84698b9484cSchristos 84798b9484cSchristos /* Delay-load DSO by default. */ 84898b9484cSchristos #define RHF_DEFAULT_DELAY_LOAD 0x00000200 84998b9484cSchristos 85098b9484cSchristos /* Object may be requickstarted */ 85198b9484cSchristos #define RHF_REQUICKSTART 0x00000400 85298b9484cSchristos 85398b9484cSchristos /* Object has been requickstarted */ 85498b9484cSchristos #define RHF_REQUICKSTARTED 0x00000800 85598b9484cSchristos 85698b9484cSchristos /* Generated by cord. */ 85798b9484cSchristos #define RHF_CORD 0x00001000 85898b9484cSchristos 85998b9484cSchristos /* Object contains no unresolved undef symbols. */ 86098b9484cSchristos #define RHF_NO_UNRES_UNDEF 0x00002000 86198b9484cSchristos 86298b9484cSchristos /* Symbol table is in a safe order. */ 86398b9484cSchristos #define RHF_RLD_ORDER_SAFE 0x00004000 86498b9484cSchristos 86598b9484cSchristos /* Special values for the st_other field in the symbol table. These 86698b9484cSchristos are used in an Irix 5 dynamic symbol table. */ 86798b9484cSchristos 86898b9484cSchristos #define STO_DEFAULT STV_DEFAULT 86998b9484cSchristos #define STO_INTERNAL STV_INTERNAL 87098b9484cSchristos #define STO_HIDDEN STV_HIDDEN 87198b9484cSchristos #define STO_PROTECTED STV_PROTECTED 87298b9484cSchristos 873a2e2270fSchristos /* Two topmost bits denote the MIPS ISA for .text symbols: 874a2e2270fSchristos + 00 -- standard MIPS code, 875a2e2270fSchristos + 10 -- microMIPS code, 876a2e2270fSchristos + 11 -- MIPS16 code; requires the following two bits to be set too. 877a2e2270fSchristos Note that one of the MIPS16 bits overlaps with STO_MIPS_PIC. See below 878a2e2270fSchristos for details. */ 879a2e2270fSchristos #define STO_MIPS_ISA (3 << 6) 880a2e2270fSchristos 881a2e2270fSchristos /* The mask spanning the rest of MIPS psABI flags. At most one is expected 882a2e2270fSchristos to be set except for STO_MIPS16. */ 883a2e2270fSchristos #define STO_MIPS_FLAGS (~(STO_MIPS_ISA | ELF_ST_VISIBILITY (-1))) 884a2e2270fSchristos 88598b9484cSchristos /* The MIPS psABI was updated in 2008 with support for PLTs and copy 88698b9484cSchristos relocs. There are therefore two types of nonzero SHN_UNDEF functions: 88798b9484cSchristos PLT entries and traditional MIPS lazy binding stubs. We mark the former 88898b9484cSchristos with STO_MIPS_PLT to distinguish them from the latter. */ 88998b9484cSchristos #define STO_MIPS_PLT 0x8 89003467a24Schristos #define ELF_ST_IS_MIPS_PLT(other) \ 89103467a24Schristos ((ELF_ST_IS_MIPS16 (other) \ 89203467a24Schristos ? ((other) & (~STO_MIPS16 & STO_MIPS_FLAGS)) \ 89303467a24Schristos : ((other) & STO_MIPS_FLAGS)) == STO_MIPS_PLT) 89403467a24Schristos #define ELF_ST_SET_MIPS_PLT(other) \ 89503467a24Schristos ((ELF_ST_IS_MIPS16 (other) \ 89603467a24Schristos ? ((other) & (STO_MIPS16 | ~STO_MIPS_FLAGS)) \ 89703467a24Schristos : ((other) & ~STO_MIPS_FLAGS)) | STO_MIPS_PLT) 89898b9484cSchristos 89998b9484cSchristos /* This value is used to mark PIC functions in an object that mixes 900a2e2270fSchristos PIC and non-PIC. Note that this bit overlaps with STO_MIPS16, 901a2e2270fSchristos although MIPS16 symbols are never considered to be MIPS_PIC. */ 90298b9484cSchristos #define STO_MIPS_PIC 0x20 903a2e2270fSchristos #define ELF_ST_IS_MIPS_PIC(other) (((other) & STO_MIPS_FLAGS) == STO_MIPS_PIC) 90403467a24Schristos #define ELF_ST_SET_MIPS_PIC(other) \ 90503467a24Schristos ((ELF_ST_IS_MIPS16 (other) \ 90603467a24Schristos ? ((other) & ~(STO_MIPS16 | STO_MIPS_FLAGS)) \ 90703467a24Schristos : ((other) & ~STO_MIPS_FLAGS)) | STO_MIPS_PIC) 90898b9484cSchristos 90998b9484cSchristos /* This value is used for a mips16 .text symbol. */ 91098b9484cSchristos #define STO_MIPS16 0xf0 911a2e2270fSchristos #define ELF_ST_IS_MIPS16(other) (((other) & STO_MIPS16) == STO_MIPS16) 912a2e2270fSchristos #define ELF_ST_SET_MIPS16(other) ((other) | STO_MIPS16) 913a2e2270fSchristos 914a2e2270fSchristos /* This value is used for a microMIPS .text symbol. To distinguish from 915a2e2270fSchristos STO_MIPS16, we set top two bits to be 10 to denote STO_MICROMIPS. The 916a2e2270fSchristos mask is STO_MIPS_ISA. */ 917a2e2270fSchristos #define STO_MICROMIPS (2 << 6) 918a2e2270fSchristos #define ELF_ST_IS_MICROMIPS(other) (((other) & STO_MIPS_ISA) == STO_MICROMIPS) 919a2e2270fSchristos #define ELF_ST_SET_MICROMIPS(other) (((other) & ~STO_MIPS_ISA) | STO_MICROMIPS) 920a2e2270fSchristos 921a2e2270fSchristos /* Whether code compression (either of the MIPS16 or the microMIPS ASEs) 922a2e2270fSchristos has been indicated for a .text symbol. */ 923a2e2270fSchristos #define ELF_ST_IS_COMPRESSED(other) \ 924a2e2270fSchristos (ELF_ST_IS_MIPS16 (other) || ELF_ST_IS_MICROMIPS (other)) 92598b9484cSchristos 92698b9484cSchristos /* This bit is used on Irix to indicate a symbol whose definition 92798b9484cSchristos is optional - if, at final link time, it cannot be found, no 92898b9484cSchristos error message should be produced. */ 92998b9484cSchristos #define STO_OPTIONAL (1 << 2) 93098b9484cSchristos /* A macro to examine the STO_OPTIONAL bit. */ 93198b9484cSchristos #define ELF_MIPS_IS_OPTIONAL(other) ((other) & STO_OPTIONAL) 93298b9484cSchristos 93398b9484cSchristos /* The 64-bit MIPS ELF ABI uses an unusual reloc format. Each 93498b9484cSchristos relocation entry specifies up to three actual relocations, all at 93598b9484cSchristos the same address. The first relocation which required a symbol 93698b9484cSchristos uses the symbol in the r_sym field. The second relocation which 93798b9484cSchristos requires a symbol uses the symbol in the r_ssym field. If all 93898b9484cSchristos three relocations require a symbol, the third one uses a zero 93998b9484cSchristos value. */ 94098b9484cSchristos 94198b9484cSchristos /* An entry in a 64 bit SHT_REL section. */ 94298b9484cSchristos 94398b9484cSchristos typedef struct 94498b9484cSchristos { 94598b9484cSchristos /* Address of relocation. */ 94698b9484cSchristos unsigned char r_offset[8]; 94798b9484cSchristos /* Symbol index. */ 94898b9484cSchristos unsigned char r_sym[4]; 94998b9484cSchristos /* Special symbol. */ 95098b9484cSchristos unsigned char r_ssym[1]; 95198b9484cSchristos /* Third relocation. */ 95298b9484cSchristos unsigned char r_type3[1]; 95398b9484cSchristos /* Second relocation. */ 95498b9484cSchristos unsigned char r_type2[1]; 95598b9484cSchristos /* First relocation. */ 95698b9484cSchristos unsigned char r_type[1]; 95798b9484cSchristos } Elf64_Mips_External_Rel; 95898b9484cSchristos 95998b9484cSchristos typedef struct 96098b9484cSchristos { 96198b9484cSchristos /* Address of relocation. */ 96298b9484cSchristos bfd_vma r_offset; 96398b9484cSchristos /* Symbol index. */ 96498b9484cSchristos unsigned long r_sym; 96598b9484cSchristos /* Special symbol. */ 96698b9484cSchristos unsigned char r_ssym; 96798b9484cSchristos /* Third relocation. */ 96898b9484cSchristos unsigned char r_type3; 96998b9484cSchristos /* Second relocation. */ 97098b9484cSchristos unsigned char r_type2; 97198b9484cSchristos /* First relocation. */ 97298b9484cSchristos unsigned char r_type; 97398b9484cSchristos } Elf64_Mips_Internal_Rel; 97498b9484cSchristos 97598b9484cSchristos /* An entry in a 64 bit SHT_RELA section. */ 97698b9484cSchristos 97798b9484cSchristos typedef struct 97898b9484cSchristos { 97998b9484cSchristos /* Address of relocation. */ 98098b9484cSchristos unsigned char r_offset[8]; 98198b9484cSchristos /* Symbol index. */ 98298b9484cSchristos unsigned char r_sym[4]; 98398b9484cSchristos /* Special symbol. */ 98498b9484cSchristos unsigned char r_ssym[1]; 98598b9484cSchristos /* Third relocation. */ 98698b9484cSchristos unsigned char r_type3[1]; 98798b9484cSchristos /* Second relocation. */ 98898b9484cSchristos unsigned char r_type2[1]; 98998b9484cSchristos /* First relocation. */ 99098b9484cSchristos unsigned char r_type[1]; 99198b9484cSchristos /* Addend. */ 99298b9484cSchristos unsigned char r_addend[8]; 99398b9484cSchristos } Elf64_Mips_External_Rela; 99498b9484cSchristos 99598b9484cSchristos typedef struct 99698b9484cSchristos { 99798b9484cSchristos /* Address of relocation. */ 99898b9484cSchristos bfd_vma r_offset; 99998b9484cSchristos /* Symbol index. */ 100098b9484cSchristos unsigned long r_sym; 100198b9484cSchristos /* Special symbol. */ 100298b9484cSchristos unsigned char r_ssym; 100398b9484cSchristos /* Third relocation. */ 100498b9484cSchristos unsigned char r_type3; 100598b9484cSchristos /* Second relocation. */ 100698b9484cSchristos unsigned char r_type2; 100798b9484cSchristos /* First relocation. */ 100898b9484cSchristos unsigned char r_type; 100998b9484cSchristos /* Addend. */ 101098b9484cSchristos bfd_signed_vma r_addend; 101198b9484cSchristos } Elf64_Mips_Internal_Rela; 101298b9484cSchristos 101398b9484cSchristos /* MIPS ELF 64 relocation info access macros. */ 101498b9484cSchristos #define ELF64_MIPS_R_SSYM(i) (((i) >> 24) & 0xff) 101598b9484cSchristos #define ELF64_MIPS_R_TYPE3(i) (((i) >> 16) & 0xff) 101698b9484cSchristos #define ELF64_MIPS_R_TYPE2(i) (((i) >> 8) & 0xff) 101798b9484cSchristos #define ELF64_MIPS_R_TYPE(i) ((i) & 0xff) 101898b9484cSchristos 101998b9484cSchristos /* Values found in the r_ssym field of a relocation entry. */ 102098b9484cSchristos 102198b9484cSchristos /* No relocation. */ 102298b9484cSchristos #define RSS_UNDEF 0 102398b9484cSchristos 102498b9484cSchristos /* Value of GP. */ 102598b9484cSchristos #define RSS_GP 1 102698b9484cSchristos 102798b9484cSchristos /* Value of GP in object being relocated. */ 102898b9484cSchristos #define RSS_GP0 2 102998b9484cSchristos 103098b9484cSchristos /* Address of location being relocated. */ 103198b9484cSchristos #define RSS_LOC 3 103298b9484cSchristos 103398b9484cSchristos /* A SHT_MIPS_OPTIONS section contains a series of options, each of 103498b9484cSchristos which starts with this header. */ 103598b9484cSchristos 103698b9484cSchristos typedef struct 103798b9484cSchristos { 103898b9484cSchristos /* Type of option. */ 103998b9484cSchristos unsigned char kind[1]; 104098b9484cSchristos /* Size of option descriptor, including header. */ 104198b9484cSchristos unsigned char size[1]; 104298b9484cSchristos /* Section index of affected section, or 0 for global option. */ 104398b9484cSchristos unsigned char section[2]; 104498b9484cSchristos /* Information specific to this kind of option. */ 104598b9484cSchristos unsigned char info[4]; 104698b9484cSchristos } Elf_External_Options; 104798b9484cSchristos 104898b9484cSchristos typedef struct 104998b9484cSchristos { 105098b9484cSchristos /* Type of option. */ 105198b9484cSchristos unsigned char kind; 105298b9484cSchristos /* Size of option descriptor, including header. */ 105398b9484cSchristos unsigned char size; 105498b9484cSchristos /* Section index of affected section, or 0 for global option. */ 10558dffb485Schristos uint16_t section; 105698b9484cSchristos /* Information specific to this kind of option. */ 10578dffb485Schristos uint32_t info; 105898b9484cSchristos } Elf_Internal_Options; 105998b9484cSchristos 106098b9484cSchristos /* MIPS ELF option header swapping routines. */ 106198b9484cSchristos extern void bfd_mips_elf_swap_options_in 106298b9484cSchristos (bfd *, const Elf_External_Options *, Elf_Internal_Options *); 106398b9484cSchristos extern void bfd_mips_elf_swap_options_out 106498b9484cSchristos (bfd *, const Elf_Internal_Options *, Elf_External_Options *); 106598b9484cSchristos 106698b9484cSchristos /* Values which may appear in the kind field of an Elf_Options 106798b9484cSchristos structure. */ 106898b9484cSchristos 106998b9484cSchristos /* Undefined. */ 107098b9484cSchristos #define ODK_NULL 0 107198b9484cSchristos 107298b9484cSchristos /* Register usage and GP value. */ 107398b9484cSchristos #define ODK_REGINFO 1 107498b9484cSchristos 107598b9484cSchristos /* Exception processing information. */ 107698b9484cSchristos #define ODK_EXCEPTIONS 2 107798b9484cSchristos 107898b9484cSchristos /* Section padding information. */ 107998b9484cSchristos #define ODK_PAD 3 108098b9484cSchristos 108198b9484cSchristos /* Hardware workarounds performed. */ 108298b9484cSchristos #define ODK_HWPATCH 4 108398b9484cSchristos 108498b9484cSchristos /* Fill value used by the linker. */ 108598b9484cSchristos #define ODK_FILL 5 108698b9484cSchristos 108798b9484cSchristos /* Reserved space for desktop tools. */ 108898b9484cSchristos #define ODK_TAGS 6 108998b9484cSchristos 109098b9484cSchristos /* Hardware workarounds, AND bits when merging. */ 109198b9484cSchristos #define ODK_HWAND 7 109298b9484cSchristos 109398b9484cSchristos /* Hardware workarounds, OR bits when merging. */ 109498b9484cSchristos #define ODK_HWOR 8 109598b9484cSchristos 109698b9484cSchristos /* GP group to use for text/data sections. */ 109798b9484cSchristos #define ODK_GP_GROUP 9 109898b9484cSchristos 109998b9484cSchristos /* ID information. */ 110098b9484cSchristos #define ODK_IDENT 10 110198b9484cSchristos 110298b9484cSchristos /* In the 32 bit ABI, an ODK_REGINFO option is just a Elf32_RegInfo 110398b9484cSchristos structure. In the 64 bit ABI, it is the following structure. The 110498b9484cSchristos info field of the options header is not used. */ 110598b9484cSchristos 110698b9484cSchristos typedef struct 110798b9484cSchristos { 110898b9484cSchristos /* Mask of general purpose registers used. */ 110998b9484cSchristos unsigned char ri_gprmask[4]; 111098b9484cSchristos /* Padding. */ 111198b9484cSchristos unsigned char ri_pad[4]; 111298b9484cSchristos /* Mask of co-processor registers used. */ 111398b9484cSchristos unsigned char ri_cprmask[4][4]; 111498b9484cSchristos /* GP register value for this object file. */ 111598b9484cSchristos unsigned char ri_gp_value[8]; 111698b9484cSchristos } Elf64_External_RegInfo; 111798b9484cSchristos 111898b9484cSchristos typedef struct 111998b9484cSchristos { 112098b9484cSchristos /* Mask of general purpose registers used. */ 11218dffb485Schristos uint32_t ri_gprmask; 112298b9484cSchristos /* Padding. */ 11238dffb485Schristos uint32_t ri_pad; 112498b9484cSchristos /* Mask of co-processor registers used. */ 11258dffb485Schristos uint32_t ri_cprmask[4]; 112698b9484cSchristos /* GP register value for this object file. */ 11278dffb485Schristos uint64_t ri_gp_value; 112898b9484cSchristos } Elf64_Internal_RegInfo; 112998b9484cSchristos 1130968cf8f2Schristos /* ABI Flags structure version 0. */ 1131968cf8f2Schristos 1132968cf8f2Schristos typedef struct 1133968cf8f2Schristos { 1134968cf8f2Schristos /* Version of flags structure. */ 1135968cf8f2Schristos unsigned char version[2]; 1136968cf8f2Schristos /* The level of the ISA: 1-5, 32, 64. */ 1137968cf8f2Schristos unsigned char isa_level[1]; 1138968cf8f2Schristos /* The revision of ISA: 0 for MIPS V and below, 1-n otherwise. */ 1139968cf8f2Schristos unsigned char isa_rev[1]; 1140968cf8f2Schristos /* The size of general purpose registers. */ 1141968cf8f2Schristos unsigned char gpr_size[1]; 1142968cf8f2Schristos /* The size of co-processor 1 registers. */ 1143968cf8f2Schristos unsigned char cpr1_size[1]; 1144968cf8f2Schristos /* The size of co-processor 2 registers. */ 1145968cf8f2Schristos unsigned char cpr2_size[1]; 1146968cf8f2Schristos /* The floating-point ABI. */ 1147968cf8f2Schristos unsigned char fp_abi[1]; 1148968cf8f2Schristos /* Processor-specific extension. */ 1149968cf8f2Schristos unsigned char isa_ext[4]; 1150968cf8f2Schristos /* Mask of ASEs used. */ 1151968cf8f2Schristos unsigned char ases[4]; 1152968cf8f2Schristos /* Mask of general flags. */ 1153968cf8f2Schristos unsigned char flags1[4]; 1154968cf8f2Schristos unsigned char flags2[4]; 1155968cf8f2Schristos } Elf_External_ABIFlags_v0; 1156968cf8f2Schristos 1157796c32c9Schristos typedef struct elf_internal_abiflags_v0 1158968cf8f2Schristos { 1159968cf8f2Schristos /* Version of flags structure. */ 1160968cf8f2Schristos unsigned short version; 1161968cf8f2Schristos /* The level of the ISA: 1-5, 32, 64. */ 1162968cf8f2Schristos unsigned char isa_level; 1163968cf8f2Schristos /* The revision of ISA: 0 for MIPS V and below, 1-n otherwise. */ 1164968cf8f2Schristos unsigned char isa_rev; 1165968cf8f2Schristos /* The size of general purpose registers. */ 1166968cf8f2Schristos unsigned char gpr_size; 1167968cf8f2Schristos /* The size of co-processor 1 registers. */ 1168968cf8f2Schristos unsigned char cpr1_size; 1169968cf8f2Schristos /* The size of co-processor 2 registers. */ 1170968cf8f2Schristos unsigned char cpr2_size; 1171968cf8f2Schristos /* The floating-point ABI. */ 1172968cf8f2Schristos unsigned char fp_abi; 1173968cf8f2Schristos /* Processor-specific extension. */ 1174968cf8f2Schristos unsigned long isa_ext; 1175968cf8f2Schristos /* Mask of ASEs used. */ 1176968cf8f2Schristos unsigned long ases; 1177968cf8f2Schristos /* Mask of general flags. */ 1178968cf8f2Schristos unsigned long flags1; 1179968cf8f2Schristos unsigned long flags2; 1180968cf8f2Schristos } Elf_Internal_ABIFlags_v0; 1181968cf8f2Schristos 118298b9484cSchristos typedef struct 118398b9484cSchristos { 118498b9484cSchristos /* The hash value computed from the name of the corresponding 118598b9484cSchristos dynamic symbol. */ 118698b9484cSchristos unsigned char ms_hash_value[4]; 118798b9484cSchristos /* Contains both the dynamic relocation index and the symbol flags 118898b9484cSchristos field. The macros ELF32_MS_REL_INDEX and ELF32_MS_FLAGS are used 118998b9484cSchristos to access the individual values. The dynamic relocation index 119098b9484cSchristos identifies the first entry in the .rel.dyn section that 119198b9484cSchristos references the dynamic symbol corresponding to this msym entry. 119298b9484cSchristos If the index is 0, no dynamic relocations are associated with the 119398b9484cSchristos symbol. The symbol flags field is reserved for future use. */ 119498b9484cSchristos unsigned char ms_info[4]; 119598b9484cSchristos } Elf32_External_Msym; 119698b9484cSchristos 119798b9484cSchristos typedef struct 119898b9484cSchristos { 119998b9484cSchristos /* The hash value computed from the name of the corresponding 120098b9484cSchristos dynamic symbol. */ 120198b9484cSchristos unsigned long ms_hash_value; 120298b9484cSchristos /* Contains both the dynamic relocation index and the symbol flags 120398b9484cSchristos field. The macros ELF32_MS_REL_INDEX and ELF32_MS_FLAGS are used 120498b9484cSchristos to access the individual values. The dynamic relocation index 120598b9484cSchristos identifies the first entry in the .rel.dyn section that 120698b9484cSchristos references the dynamic symbol corresponding to this msym entry. 120798b9484cSchristos If the index is 0, no dynamic relocations are associated with the 120898b9484cSchristos symbol. The symbol flags field is reserved for future use. */ 120998b9484cSchristos unsigned long ms_info; 121098b9484cSchristos } Elf32_Internal_Msym; 121198b9484cSchristos 121298b9484cSchristos #define ELF32_MS_REL_INDEX(i) ((i) >> 8) 121398b9484cSchristos #define ELF32_MS_FLAGS(i) (i) & 0xff) 121498b9484cSchristos #define ELF32_MS_INFO(r, f) (((r) << 8) + ((f) & 0xff)) 121598b9484cSchristos 121698b9484cSchristos /* MIPS ELF reginfo swapping routines. */ 121798b9484cSchristos extern void bfd_mips_elf64_swap_reginfo_in 121898b9484cSchristos (bfd *, const Elf64_External_RegInfo *, Elf64_Internal_RegInfo *); 121998b9484cSchristos extern void bfd_mips_elf64_swap_reginfo_out 122098b9484cSchristos (bfd *, const Elf64_Internal_RegInfo *, Elf64_External_RegInfo *); 122198b9484cSchristos 1222968cf8f2Schristos /* MIPS ELF flags swapping routines. */ 1223968cf8f2Schristos extern void bfd_mips_elf_swap_abiflags_v0_in 1224968cf8f2Schristos (bfd *, const Elf_External_ABIFlags_v0 *, Elf_Internal_ABIFlags_v0 *); 1225968cf8f2Schristos extern void bfd_mips_elf_swap_abiflags_v0_out 1226968cf8f2Schristos (bfd *, const Elf_Internal_ABIFlags_v0 *, Elf_External_ABIFlags_v0 *); 1227968cf8f2Schristos 122898b9484cSchristos /* Masks for the info work of an ODK_EXCEPTIONS descriptor. */ 122998b9484cSchristos #define OEX_FPU_MIN 0x1f /* FPEs which must be enabled. */ 123098b9484cSchristos #define OEX_FPU_MAX 0x1f00 /* FPEs which may be enabled. */ 123198b9484cSchristos #define OEX_PAGE0 0x10000 /* Page zero must be mapped. */ 123298b9484cSchristos #define OEX_SMM 0x20000 /* Force sequential memory mode. */ 123398b9484cSchristos #define OEX_FPDBUG 0x40000 /* Force precise floating-point 123498b9484cSchristos exceptions (debug mode). */ 123598b9484cSchristos #define OEX_DISMISS 0x80000 /* Dismiss invalid address faults. */ 123698b9484cSchristos 123798b9484cSchristos /* Masks of the FP exceptions for OEX_FPU_MIN and OEX_FPU_MAX. */ 123898b9484cSchristos #define OEX_FPU_INVAL 0x10 /* Invalid operation exception. */ 123998b9484cSchristos #define OEX_FPU_DIV0 0x08 /* Division by zero exception. */ 124098b9484cSchristos #define OEX_FPU_OFLO 0x04 /* Overflow exception. */ 124198b9484cSchristos #define OEX_FPU_UFLO 0x02 /* Underflow exception. */ 124298b9484cSchristos #define OEX_FPU_INEX 0x01 /* Inexact exception. */ 124398b9484cSchristos 124498b9484cSchristos /* Masks for the info word of an ODK_PAD descriptor. */ 124598b9484cSchristos #define OPAD_PREFIX 0x01 124698b9484cSchristos #define OPAD_POSTFIX 0x02 124798b9484cSchristos #define OPAD_SYMBOL 0x04 124898b9484cSchristos 124998b9484cSchristos /* Masks for the info word of an ODK_HWPATCH descriptor. */ 125098b9484cSchristos #define OHW_R4KEOP 0x00000001 /* R4000 end-of-page patch. */ 125198b9484cSchristos #define OHW_R8KPFETCH 0x00000002 /* May need R8000 prefetch patch. */ 125298b9484cSchristos #define OHW_R5KEOP 0x00000004 /* R5000 end-of-page patch. */ 125398b9484cSchristos #define OHW_R5KCVTL 0x00000008 /* R5000 cvt.[ds].l bug 125498b9484cSchristos (clean == 1). */ 125598b9484cSchristos #define OHW_R10KLDL 0x00000010 /* Needs R10K misaligned 125698b9484cSchristos load patch. */ 125798b9484cSchristos 125898b9484cSchristos /* Masks for the info word of an ODK_IDENT/ODK_GP_GROUP descriptor. */ 125998b9484cSchristos #define OGP_GROUP 0x0000ffff /* GP group number. */ 126098b9484cSchristos #define OGP_SELF 0xffff0000 /* Self-contained GP groups. */ 126198b9484cSchristos 126298b9484cSchristos /* Masks for the info word of an ODK_HWAND/ODK_HWOR descriptor. */ 126398b9484cSchristos #define OHWA0_R4KEOP_CHECKED 0x00000001 126498b9484cSchristos #define OHWA0_R4KEOP_CLEAN 0x00000002 1265968cf8f2Schristos 1266968cf8f2Schristos /* Values for the xxx_size bytes of an ABI flags structure. */ 1267968cf8f2Schristos 1268968cf8f2Schristos #define AFL_REG_NONE 0x00 /* No registers. */ 1269968cf8f2Schristos #define AFL_REG_32 0x01 /* 32-bit registers. */ 1270968cf8f2Schristos #define AFL_REG_64 0x02 /* 64-bit registers. */ 1271968cf8f2Schristos #define AFL_REG_128 0x03 /* 128-bit registers. */ 1272968cf8f2Schristos 1273968cf8f2Schristos /* Masks for the ases word of an ABI flags structure. */ 1274968cf8f2Schristos 1275968cf8f2Schristos #define AFL_ASE_DSP 0x00000001 /* DSP ASE. */ 1276968cf8f2Schristos #define AFL_ASE_DSPR2 0x00000002 /* DSP R2 ASE. */ 1277968cf8f2Schristos #define AFL_ASE_EVA 0x00000004 /* Enhanced VA Scheme. */ 1278968cf8f2Schristos #define AFL_ASE_MCU 0x00000008 /* MCU (MicroController) ASE. */ 1279968cf8f2Schristos #define AFL_ASE_MDMX 0x00000010 /* MDMX ASE. */ 1280968cf8f2Schristos #define AFL_ASE_MIPS3D 0x00000020 /* MIPS-3D ASE. */ 1281968cf8f2Schristos #define AFL_ASE_MT 0x00000040 /* MT ASE. */ 1282968cf8f2Schristos #define AFL_ASE_SMARTMIPS 0x00000080 /* SmartMIPS ASE. */ 1283968cf8f2Schristos #define AFL_ASE_VIRT 0x00000100 /* VZ ASE. */ 1284968cf8f2Schristos #define AFL_ASE_MSA 0x00000200 /* MSA ASE. */ 1285968cf8f2Schristos #define AFL_ASE_MIPS16 0x00000400 /* MIPS16 ASE. */ 1286968cf8f2Schristos #define AFL_ASE_MICROMIPS 0x00000800 /* MICROMIPS ASE. */ 1287968cf8f2Schristos #define AFL_ASE_XPA 0x00001000 /* XPA ASE. */ 1288ba340e45Schristos #define AFL_ASE_DSPR3 0x00002000 /* DSP R3 ASE. */ 12894559860eSchristos #define AFL_ASE_MIPS16E2 0x00004000 /* MIPS16e2 ASE. */ 12904559860eSchristos #define AFL_ASE_CRC 0x00008000 /* CRC ASE. */ 12914559860eSchristos #define AFL_ASE_RESERVED1 0x00010000 /* Reserved by MIPS Tech for WIP. */ 12924559860eSchristos #define AFL_ASE_GINV 0x00020000 /* GINV ASE. */ 12934559860eSchristos #define AFL_ASE_LOONGSON_MMI 0x00040000 /* Loongson MMI ASE. */ 12944559860eSchristos #define AFL_ASE_LOONGSON_CAM 0x00080000 /* Loongson CAM ASE. */ 12954559860eSchristos #define AFL_ASE_LOONGSON_EXT 0x00100000 /* Loongson EXT instructions. */ 12964559860eSchristos #define AFL_ASE_LOONGSON_EXT2 0x00200000 /* Loongson EXT2 instructions. */ 12974559860eSchristos #define AFL_ASE_MASK 0x003effff /* All ASEs. */ 1298968cf8f2Schristos 1299968cf8f2Schristos /* Values for the isa_ext word of an ABI flags structure. */ 1300968cf8f2Schristos 1301968cf8f2Schristos #define AFL_EXT_XLR 1 /* RMI Xlr instruction. */ 1302968cf8f2Schristos #define AFL_EXT_OCTEON2 2 /* Cavium Networks Octeon2. */ 1303968cf8f2Schristos #define AFL_EXT_OCTEONP 3 /* Cavium Networks OcteonP. */ 1304968cf8f2Schristos #define AFL_EXT_OCTEON 5 /* Cavium Networks Octeon. */ 1305968cf8f2Schristos #define AFL_EXT_5900 6 /* MIPS R5900 instruction. */ 1306968cf8f2Schristos #define AFL_EXT_4650 7 /* MIPS R4650 instruction. */ 1307968cf8f2Schristos #define AFL_EXT_4010 8 /* LSI R4010 instruction. */ 1308968cf8f2Schristos #define AFL_EXT_4100 9 /* NEC VR4100 instruction. */ 1309968cf8f2Schristos #define AFL_EXT_3900 10 /* Toshiba R3900 instruction. */ 1310968cf8f2Schristos #define AFL_EXT_10000 11 /* MIPS R10000 instruction. */ 1311968cf8f2Schristos #define AFL_EXT_SB1 12 /* Broadcom SB-1 instruction. */ 1312968cf8f2Schristos #define AFL_EXT_4111 13 /* NEC VR4111/VR4181 instruction. */ 1313968cf8f2Schristos #define AFL_EXT_4120 14 /* NEC VR4120 instruction. */ 1314968cf8f2Schristos #define AFL_EXT_5400 15 /* NEC VR5400 instruction. */ 1315968cf8f2Schristos #define AFL_EXT_5500 16 /* NEC VR5500 instruction. */ 1316968cf8f2Schristos #define AFL_EXT_LOONGSON_2E 17 /* ST Microelectronics Loongson 2E. */ 1317968cf8f2Schristos #define AFL_EXT_LOONGSON_2F 18 /* ST Microelectronics Loongson 2F. */ 1318968cf8f2Schristos #define AFL_EXT_OCTEON3 19 /* Cavium Networks Octeon3. */ 13194559860eSchristos #define AFL_EXT_INTERAPTIV_MR2 20 /* Imagination interAptiv MR2. */ 1320968cf8f2Schristos 1321968cf8f2Schristos /* Masks for the flags1 word of an ABI flags structure. */ 1322968cf8f2Schristos #define AFL_FLAGS1_ODDSPREG 1 /* Uses odd single-precision registers. */ 1323968cf8f2Schristos 1324968cf8f2Schristos extern unsigned int bfd_mips_isa_ext (bfd *); 132598b9484cSchristos 132698b9484cSchristos 132798b9484cSchristos /* Object attribute tags. */ 132898b9484cSchristos enum 132998b9484cSchristos { 133098b9484cSchristos /* 0-3 are generic. */ 133103467a24Schristos 133203467a24Schristos /* Floating-point ABI used by this object file. */ 133303467a24Schristos Tag_GNU_MIPS_ABI_FP = 4, 133403467a24Schristos 133503467a24Schristos /* MSA ABI used by this object file. */ 133603467a24Schristos Tag_GNU_MIPS_ABI_MSA = 8, 133703467a24Schristos }; 133803467a24Schristos 133903467a24Schristos /* Object attribute values. */ 134003467a24Schristos enum 134103467a24Schristos { 134203467a24Schristos /* Values defined for Tag_GNU_MIPS_ABI_FP. */ 134303467a24Schristos 134403467a24Schristos /* Not tagged or not using any ABIs affected by the differences. */ 134503467a24Schristos Val_GNU_MIPS_ABI_FP_ANY = 0, 134603467a24Schristos 134703467a24Schristos /* Using hard-float -mdouble-float. */ 134803467a24Schristos Val_GNU_MIPS_ABI_FP_DOUBLE = 1, 134903467a24Schristos 135003467a24Schristos /* Using hard-float -msingle-float. */ 135103467a24Schristos Val_GNU_MIPS_ABI_FP_SINGLE = 2, 135203467a24Schristos 135303467a24Schristos /* Using soft-float. */ 135403467a24Schristos Val_GNU_MIPS_ABI_FP_SOFT = 3, 135503467a24Schristos 135603467a24Schristos /* Using -mips32r2 -mfp64. */ 1357968cf8f2Schristos Val_GNU_MIPS_ABI_FP_OLD_64 = 4, 1358968cf8f2Schristos 1359968cf8f2Schristos /* Using -mfpxx */ 1360968cf8f2Schristos Val_GNU_MIPS_ABI_FP_XX = 5, 1361968cf8f2Schristos 1362968cf8f2Schristos /* Using -mips32r2 -mfp64. */ 1363968cf8f2Schristos Val_GNU_MIPS_ABI_FP_64 = 6, 1364968cf8f2Schristos 1365968cf8f2Schristos /* Using -mips32r2 -mfp64 -mno-odd-spreg. */ 1366968cf8f2Schristos Val_GNU_MIPS_ABI_FP_64A = 7, 136703467a24Schristos 1368ba340e45Schristos /* This is reserved for backward-compatibility with an earlier 1369ba340e45Schristos implementation of the MIPS NaN2008 functionality. */ 1370ba340e45Schristos Val_GNU_MIPS_ABI_FP_NAN2008 = 8, 1371ba340e45Schristos 137203467a24Schristos /* Values defined for Tag_GNU_MIPS_ABI_MSA. */ 137303467a24Schristos 137403467a24Schristos /* Not tagged or not using any ABIs affected by the differences. */ 137503467a24Schristos Val_GNU_MIPS_ABI_MSA_ANY = 0, 137603467a24Schristos 137703467a24Schristos /* Using 128-bit MSA. */ 137803467a24Schristos Val_GNU_MIPS_ABI_MSA_128 = 1, 137998b9484cSchristos }; 138098b9484cSchristos 1381ba340e45Schristos #ifdef __cplusplus 1382ba340e45Schristos } 1383ba340e45Schristos #endif 1384ba340e45Schristos 138598b9484cSchristos #endif /* _ELF_MIPS_H */ 1386