198b9484cSchristos /* V850 ELF support for BFD. 2*02f41505Schristos Copyright (C) 1997-2024 Free Software Foundation, Inc. 398b9484cSchristos Created by Michael Meissner, Cygnus Support <meissner@cygnus.com> 498b9484cSchristos 598b9484cSchristos This file is part of BFD, the Binary File Descriptor library. 698b9484cSchristos 798b9484cSchristos This program is free software; you can redistribute it and/or modify 898b9484cSchristos it under the terms of the GNU General Public License as published by 998b9484cSchristos the Free Software Foundation; either version 3 of the License, or 1098b9484cSchristos (at your option) any later version. 1198b9484cSchristos 1298b9484cSchristos This program is distributed in the hope that it will be useful, 1398b9484cSchristos but WITHOUT ANY WARRANTY; without even the implied warranty of 1498b9484cSchristos MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 1598b9484cSchristos GNU General Public License for more details. 1698b9484cSchristos 1798b9484cSchristos You should have received a copy of the GNU General Public License 1898b9484cSchristos along with this program; if not, write to the Free Software 1998b9484cSchristos Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, 2098b9484cSchristos MA 02110-1301, USA. */ 2198b9484cSchristos 2298b9484cSchristos /* This file holds definitions specific to the MIPS ELF ABI. Note 2398b9484cSchristos that most of this is not actually implemented by BFD. */ 2498b9484cSchristos 2598b9484cSchristos #ifndef _ELF_V850_H 2698b9484cSchristos #define _ELF_V850_H 2798b9484cSchristos 2898b9484cSchristos /* Processor specific flags for the ELF header e_flags field. */ 2998b9484cSchristos 3098b9484cSchristos /* Four bit V850 architecture field. */ 3198b9484cSchristos #define EF_V850_ARCH 0xf0000000 3298b9484cSchristos 3398b9484cSchristos /* v850 code. */ 3498b9484cSchristos #define E_V850_ARCH 0x00000000 3598b9484cSchristos 3698b9484cSchristos /* v850e code. */ 3798b9484cSchristos #define E_V850E_ARCH 0x10000000 3898b9484cSchristos 3998b9484cSchristos /* v850e1 code. */ 4098b9484cSchristos #define E_V850E1_ARCH 0x20000000 4198b9484cSchristos 4298b9484cSchristos /* v850e2 code. */ 4398b9484cSchristos #define E_V850E2_ARCH 0x30000000 4498b9484cSchristos 4598b9484cSchristos /* v850e2v3 code. */ 4698b9484cSchristos #define E_V850E2V3_ARCH 0x40000000 4798b9484cSchristos 48a2e2270fSchristos /* v850e3v5 code. */ 49a2e2270fSchristos #define E_V850E3V5_ARCH 0x60000000 50a2e2270fSchristos 5198b9484cSchristos /* Flags for the st_other field. */ 5298b9484cSchristos #define V850_OTHER_SDA 0x10 /* Symbol had SDA relocations. */ 5398b9484cSchristos #define V850_OTHER_ZDA 0x20 /* Symbol had ZDA relocations. */ 5498b9484cSchristos #define V850_OTHER_TDA 0x40 /* Symbol had TDA relocations. */ 5598b9484cSchristos #define V850_OTHER_ERROR 0x80 /* Symbol had an error reported. */ 5698b9484cSchristos 5798b9484cSchristos /* V850 relocations. */ 5898b9484cSchristos #include "elf/reloc-macros.h" 5998b9484cSchristos 6098b9484cSchristos START_RELOC_NUMBERS (v850_reloc_type) 6198b9484cSchristos RELOC_NUMBER (R_V850_NONE, 0) 6298b9484cSchristos RELOC_NUMBER (R_V850_9_PCREL, 1) 6398b9484cSchristos RELOC_NUMBER (R_V850_22_PCREL, 2) 6498b9484cSchristos RELOC_NUMBER (R_V850_HI16_S, 3) 6598b9484cSchristos RELOC_NUMBER (R_V850_HI16, 4) 6698b9484cSchristos RELOC_NUMBER (R_V850_LO16, 5) 6798b9484cSchristos RELOC_NUMBER (R_V850_ABS32, 6) 6898b9484cSchristos RELOC_NUMBER (R_V850_16, 7) 6998b9484cSchristos RELOC_NUMBER (R_V850_8, 8) 7098b9484cSchristos RELOC_NUMBER( R_V850_SDA_16_16_OFFSET, 9) /* For ld.b, st.b, set1, clr1, not1, tst1, movea, movhi */ 7198b9484cSchristos RELOC_NUMBER( R_V850_SDA_15_16_OFFSET, 10) /* For ld.w, ld.h, ld.hu, st.w, st.h */ 7298b9484cSchristos RELOC_NUMBER( R_V850_ZDA_16_16_OFFSET, 11) /* For ld.b, st.b, set1, clr1, not1, tst1, movea, movhi */ 7398b9484cSchristos RELOC_NUMBER( R_V850_ZDA_15_16_OFFSET, 12) /* For ld.w, ld.h, ld.hu, st.w, st.h */ 7498b9484cSchristos RELOC_NUMBER( R_V850_TDA_6_8_OFFSET, 13) /* For sst.w, sld.w */ 7598b9484cSchristos RELOC_NUMBER( R_V850_TDA_7_8_OFFSET, 14) /* For sst.h, sld.h */ 7698b9484cSchristos RELOC_NUMBER( R_V850_TDA_7_7_OFFSET, 15) /* For sst.b, sld.b */ 7798b9484cSchristos RELOC_NUMBER( R_V850_TDA_16_16_OFFSET, 16) /* For set1, clr1, not1, tst1, movea, movhi */ 7898b9484cSchristos RELOC_NUMBER( R_V850_TDA_4_5_OFFSET, 17) /* For sld.hu */ 7998b9484cSchristos RELOC_NUMBER( R_V850_TDA_4_4_OFFSET, 18) /* For sld.bu */ 8098b9484cSchristos RELOC_NUMBER( R_V850_SDA_16_16_SPLIT_OFFSET, 19) /* For ld.bu */ 8198b9484cSchristos RELOC_NUMBER( R_V850_ZDA_16_16_SPLIT_OFFSET, 20) /* For ld.bu */ 8298b9484cSchristos RELOC_NUMBER( R_V850_CALLT_6_7_OFFSET, 21) /* For callt */ 8398b9484cSchristos RELOC_NUMBER( R_V850_CALLT_16_16_OFFSET, 22) /* For callt */ 8498b9484cSchristos RELOC_NUMBER (R_V850_GNU_VTINHERIT, 23) 8598b9484cSchristos RELOC_NUMBER (R_V850_GNU_VTENTRY, 24) 8698b9484cSchristos RELOC_NUMBER (R_V850_LONGCALL, 25) 8798b9484cSchristos RELOC_NUMBER (R_V850_LONGJUMP, 26) 8898b9484cSchristos RELOC_NUMBER (R_V850_ALIGN, 27) 8998b9484cSchristos RELOC_NUMBER (R_V850_REL32, 28) 9098b9484cSchristos RELOC_NUMBER (R_V850_LO16_SPLIT_OFFSET, 29) /* For ld.bu */ 9198b9484cSchristos RELOC_NUMBER (R_V850_16_PCREL, 30) /* For loop */ 9298b9484cSchristos RELOC_NUMBER (R_V850_17_PCREL, 31) /* For br */ 9398b9484cSchristos RELOC_NUMBER (R_V850_23, 32) /* For 23bit ld.[w,h,hu,b,bu],st.[w,h,b] */ 9498b9484cSchristos RELOC_NUMBER (R_V850_32_PCREL, 33) /* For jr32, jarl32 */ 9598b9484cSchristos RELOC_NUMBER (R_V850_32_ABS, 34) /* For jmp32 */ 9698b9484cSchristos RELOC_NUMBER (R_V850_16_SPLIT_OFFSET, 35) /* For ld.bu */ 9798b9484cSchristos RELOC_NUMBER (R_V850_16_S1, 36) /* For ld.w, ld.h st.w st.h */ 9898b9484cSchristos RELOC_NUMBER (R_V850_LO16_S1, 37) /* For ld.w, ld.h st.w st.h */ 9998b9484cSchristos RELOC_NUMBER (R_V850_CALLT_15_16_OFFSET, 38) /* For ld.w, ld.h, ld.hu, st.w, st.h */ 10098b9484cSchristos RELOC_NUMBER (R_V850_32_GOTPCREL, 39) /* GLOBAL_OFFSET_TABLE from pc */ 10198b9484cSchristos RELOC_NUMBER (R_V850_16_GOT, 40) /* GOT ENTRY from gp */ 10298b9484cSchristos RELOC_NUMBER (R_V850_32_GOT, 41) 10398b9484cSchristos RELOC_NUMBER (R_V850_22_PLT, 42) /* For jr */ 10498b9484cSchristos RELOC_NUMBER (R_V850_32_PLT, 43) /* For jr32 */ 10598b9484cSchristos RELOC_NUMBER (R_V850_COPY, 44) 10698b9484cSchristos RELOC_NUMBER (R_V850_GLOB_DAT, 45) 10798b9484cSchristos RELOC_NUMBER (R_V850_JMP_SLOT, 46) 10898b9484cSchristos RELOC_NUMBER (R_V850_RELATIVE, 47) 10998b9484cSchristos RELOC_NUMBER (R_V850_16_GOTOFF, 48) /* From gp */ 11098b9484cSchristos RELOC_NUMBER (R_V850_32_GOTOFF, 49) 11198b9484cSchristos RELOC_NUMBER (R_V850_CODE, 50) 11298b9484cSchristos RELOC_NUMBER (R_V850_DATA, 51) /* For loop */ 11398b9484cSchristos 11498b9484cSchristos END_RELOC_NUMBERS (R_V850_max) 11598b9484cSchristos 11698b9484cSchristos 11798b9484cSchristos /* Processor specific section indices. These sections do not actually 11898b9484cSchristos exist. Symbols with a st_shndx field corresponding to one of these 11998b9484cSchristos values have a special meaning. */ 12098b9484cSchristos 12198b9484cSchristos /* Small data area common symbol. */ 12298b9484cSchristos #define SHN_V850_SCOMMON SHN_LORESERVE 12398b9484cSchristos 12498b9484cSchristos /* Tiny data area common symbol. */ 12598b9484cSchristos #define SHN_V850_TCOMMON (SHN_LORESERVE + 1) 12698b9484cSchristos 12798b9484cSchristos /* Zero data area common symbol. */ 12898b9484cSchristos #define SHN_V850_ZCOMMON (SHN_LORESERVE + 2) 12998b9484cSchristos 13098b9484cSchristos 13198b9484cSchristos /* Processor specific section types. */ 13298b9484cSchristos 13398b9484cSchristos /* Section contains the .scommon data. */ 13498b9484cSchristos #define SHT_V850_SCOMMON 0x70000000 13598b9484cSchristos 13698b9484cSchristos /* Section contains the .scommon data. */ 13798b9484cSchristos #define SHT_V850_TCOMMON 0x70000001 13898b9484cSchristos 13998b9484cSchristos /* Section contains the .scommon data. */ 14098b9484cSchristos #define SHT_V850_ZCOMMON 0x70000002 14198b9484cSchristos 14298b9484cSchristos /* Processor specific section flags. */ 14398b9484cSchristos 14498b9484cSchristos /* This section must be in the small data area (pointed to by GP). */ 14598b9484cSchristos #define SHF_V850_GPREL 0x10000000 14698b9484cSchristos 14798b9484cSchristos /* This section must be in the tiny data area (pointed to by EP). */ 14898b9484cSchristos #define SHF_V850_EPREL 0x20000000 14998b9484cSchristos 15098b9484cSchristos /* This section must be in the zero data area (pointed to by R0). */ 15198b9484cSchristos #define SHF_V850_R0REL 0x40000000 15298b9484cSchristos 153a2e2270fSchristos /* Alternative versions of the above definitions, as specified by the RH850 ABI. */ 154a2e2270fSchristos 155a2e2270fSchristos #define EF_RH850_ABI 0xF0000000 156a2e2270fSchristos 157a2e2270fSchristos #define EF_V800_850E3 0x00100000 158a2e2270fSchristos 159a2e2270fSchristos #define EF_RH850_FPU_DOUBLE 0x00000001 /* sizeof(double) == 8. */ 160a2e2270fSchristos #define EF_RH850_FPU_SINGLE 0x00000002 /* sizeof(double) == 4. */ 161a2e2270fSchristos #define EF_RH850_REGMODE22 0x00000020 /* Registers r15-r24 (inclusive) are not used. */ 162a2e2270fSchristos #define EF_RH850_REGMODE32 0x00000040 163a2e2270fSchristos #define EF_RH850_GP_FIX 0x00000100 /* r4 is fixed. */ 164a2e2270fSchristos #define EF_RH850_GP_NOFIX 0x00000200 /* r4 is callee save. */ 165a2e2270fSchristos #define EF_RH850_EP_FIX 0x00000400 /* r30 is fixed. */ 166a2e2270fSchristos #define EF_RH850_EP_NOFIX 0x00000800 /* r30 is callee save. */ 167a2e2270fSchristos #define EF_RH850_TP_FIX 0x00001000 /* r5 is fixed. */ 168a2e2270fSchristos #define EF_RH850_TP_NOFIX 0x00002000 /* r5 is callee save. */ 169a2e2270fSchristos #define EF_RH850_REG2_RESERVE 0x00004000 /* r2 is fixed. */ 170a2e2270fSchristos #define EF_RH850_REG2_NORESERVE 0x00008000 /* r2 is callee saved. */ 171a2e2270fSchristos 172212397c6Schristos #define SHT_RENESAS_IOP SHT_LOUSER /* Used by Renesas linker. */ 173a2e2270fSchristos 174a2e2270fSchristos #define SHF_RENESAS_ABS 0x80000000 /* Absolute section. */ 175a2e2270fSchristos #define SHF_GHS_ABS 0x00000400 /* Use unknown. */ 176a2e2270fSchristos 177a2e2270fSchristos #define STT_RENESAS_ENTRY 14 /* Set for functions called at reset time. */ 178a2e2270fSchristos 179a2e2270fSchristos START_RELOC_NUMBERS (v800_reloc_type) 180a2e2270fSchristos 181a2e2270fSchristos RELOC_NUMBER (R_V800_NONE, 0x00) 182a2e2270fSchristos RELOC_NUMBER (R_V810_NONE, 0x30) 183a2e2270fSchristos RELOC_NUMBER (R_V810_BYTE, 0x31) 184a2e2270fSchristos RELOC_NUMBER (R_V810_HWORD, 0x32) 185a2e2270fSchristos RELOC_NUMBER (R_V810_WORD, 0x33) 186a2e2270fSchristos RELOC_NUMBER (R_V810_WLO, 0x34) 187a2e2270fSchristos RELOC_NUMBER (R_V810_WHI, 0x35) 188a2e2270fSchristos RELOC_NUMBER (R_V810_WHI1, 0x36) 189a2e2270fSchristos RELOC_NUMBER (R_V810_GPBYTE, 0x37) 190a2e2270fSchristos RELOC_NUMBER (R_V810_GPHWORD, 0x38) 191a2e2270fSchristos RELOC_NUMBER (R_V810_GPWORD, 0x39) 192a2e2270fSchristos RELOC_NUMBER (R_V810_GPWLO, 0x3a) 193a2e2270fSchristos RELOC_NUMBER (R_V810_GPWHI, 0x3b) 194a2e2270fSchristos RELOC_NUMBER (R_V810_GPWHI1, 0x3c) 195a2e2270fSchristos RELOC_NUMBER (R_V850_HWLO, 0x3d) 196a2e2270fSchristos FAKE_RELOC (R_V810_reserved1, 0x3e) 197a2e2270fSchristos RELOC_NUMBER (R_V850_EP7BIT, 0x3f) 198a2e2270fSchristos RELOC_NUMBER (R_V850_EPHBYTE, 0x40) 199a2e2270fSchristos RELOC_NUMBER (R_V850_EPWBYTE, 0x41) 200a2e2270fSchristos RELOC_NUMBER (R_V850_REGHWLO, 0x42) 201a2e2270fSchristos FAKE_RELOC (R_V810_reserved2, 0x43) 202a2e2270fSchristos RELOC_NUMBER (R_V850_GPHWLO, 0x44) 203a2e2270fSchristos FAKE_RELOC (R_V810_reserved3, 0x45) 204a2e2270fSchristos RELOC_NUMBER (R_V850_PCR22, 0x46) 205a2e2270fSchristos RELOC_NUMBER (R_V850_BLO, 0x47) 206a2e2270fSchristos RELOC_NUMBER (R_V850_EP4BIT, 0x48) 207a2e2270fSchristos RELOC_NUMBER (R_V850_EP5BIT, 0x49) 208a2e2270fSchristos RELOC_NUMBER (R_V850_REGBLO, 0x4a) 209a2e2270fSchristos RELOC_NUMBER (R_V850_GPBLO, 0x4b) 210a2e2270fSchristos RELOC_NUMBER (R_V810_WLO_1, 0x4c) 211a2e2270fSchristos RELOC_NUMBER (R_V810_GPWLO_1, 0x4d) 212a2e2270fSchristos RELOC_NUMBER (R_V850_BLO_1, 0x4e) 213a2e2270fSchristos RELOC_NUMBER (R_V850_HWLO_1, 0x4f) 214a2e2270fSchristos FAKE_RELOC (R_V810_reserved4, 0x50) 215a2e2270fSchristos RELOC_NUMBER (R_V850_GPBLO_1, 0x51) 216a2e2270fSchristos RELOC_NUMBER (R_V850_GPHWLO_1, 0x52) 217a2e2270fSchristos FAKE_RELOC (R_V810_reserved5, 0x53) 218a2e2270fSchristos RELOC_NUMBER (R_V850_EPBLO, 0x54) 219a2e2270fSchristos RELOC_NUMBER (R_V850_EPHWLO, 0x55) 220a2e2270fSchristos FAKE_RELOC (R_V810_reserved6, 0x56) 221a2e2270fSchristos RELOC_NUMBER (R_V850_EPWLO_N, 0x57) 222a2e2270fSchristos RELOC_NUMBER (R_V850_PC32, 0x58) 223a2e2270fSchristos RELOC_NUMBER (R_V850_W23BIT, 0x59) 224a2e2270fSchristos RELOC_NUMBER (R_V850_GPW23BIT, 0x5a) 225a2e2270fSchristos RELOC_NUMBER (R_V850_EPW23BIT, 0x5b) 226a2e2270fSchristos RELOC_NUMBER (R_V850_B23BIT, 0x5c) 227a2e2270fSchristos RELOC_NUMBER (R_V850_GPB23BIT, 0x5d) 228a2e2270fSchristos RELOC_NUMBER (R_V850_EPB23BIT, 0x5e) 229a2e2270fSchristos RELOC_NUMBER (R_V850_PC16U, 0x5f) 230a2e2270fSchristos RELOC_NUMBER (R_V850_PC17, 0x60) 231a2e2270fSchristos RELOC_NUMBER (R_V850_DW8, 0x61) 232a2e2270fSchristos RELOC_NUMBER (R_V850_GPDW8, 0x62) 233a2e2270fSchristos RELOC_NUMBER (R_V850_EPDW8, 0x63) 234a2e2270fSchristos RELOC_NUMBER (R_V850_PC9, 0x64) 235a2e2270fSchristos RELOC_NUMBER (R_V810_REGBYTE, 0x65) 236a2e2270fSchristos RELOC_NUMBER (R_V810_REGHWORD, 0x66) 237a2e2270fSchristos RELOC_NUMBER (R_V810_REGWORD, 0x67) 238a2e2270fSchristos RELOC_NUMBER (R_V810_REGWLO, 0x68) 239a2e2270fSchristos RELOC_NUMBER (R_V810_REGWHI, 0x69) 240a2e2270fSchristos RELOC_NUMBER (R_V810_REGWHI1, 0x6a) 241a2e2270fSchristos RELOC_NUMBER (R_V850_REGW23BIT, 0x6b) 242a2e2270fSchristos RELOC_NUMBER (R_V850_REGB23BIT, 0x6c) 243a2e2270fSchristos RELOC_NUMBER (R_V850_REGDW8, 0x6d) 244a2e2270fSchristos RELOC_NUMBER (R_V810_EPBYTE, 0x6e) 245a2e2270fSchristos RELOC_NUMBER (R_V810_EPHWORD, 0x6f) 246a2e2270fSchristos RELOC_NUMBER (R_V810_EPWORD, 0x70) 247a2e2270fSchristos RELOC_NUMBER (R_V850_WLO23, 0x71) 248a2e2270fSchristos RELOC_NUMBER (R_V850_WORD_E, 0x72) 249a2e2270fSchristos RELOC_NUMBER (R_V850_REGWORD_E, 0x73) 250a2e2270fSchristos RELOC_NUMBER (R_V850_WORD, 0x74) 251a2e2270fSchristos RELOC_NUMBER (R_V850_GPWORD, 0x75) 252a2e2270fSchristos RELOC_NUMBER (R_V850_REGWORD, 0x76) 253a2e2270fSchristos RELOC_NUMBER (R_V850_EPWORD, 0x77) 254a2e2270fSchristos RELOC_NUMBER (R_V810_TPBYTE, 0x78) 255a2e2270fSchristos RELOC_NUMBER (R_V810_TPHWORD, 0x79) 256a2e2270fSchristos RELOC_NUMBER (R_V810_TPWORD, 0x7a) 257a2e2270fSchristos RELOC_NUMBER (R_V810_TPWLO, 0x7b) 258a2e2270fSchristos RELOC_NUMBER (R_V810_TPWHI, 0x7c) 259a2e2270fSchristos RELOC_NUMBER (R_V810_TPWHI1, 0x7d) 260a2e2270fSchristos RELOC_NUMBER (R_V850_TPHWLO, 0x7e) 261a2e2270fSchristos RELOC_NUMBER (R_V850_TPBLO, 0x7f) 262a2e2270fSchristos RELOC_NUMBER (R_V810_TPWLO_1, 0x80) 263a2e2270fSchristos RELOC_NUMBER (R_V850_TPBLO_1, 0x81) 264a2e2270fSchristos RELOC_NUMBER (R_V850_TPHWLO_1, 0x82) 265a2e2270fSchristos RELOC_NUMBER (R_V850_TP23BIT, 0x83) 266a2e2270fSchristos RELOC_NUMBER (R_V850_TPW23BIT, 0x84) 267a2e2270fSchristos RELOC_NUMBER (R_V850_TPDW8, 0x85) 268a2e2270fSchristos 269a2e2270fSchristos /* These are defined by the RH850 ABI, but not used. */ 270a2e2270fSchristos RELOC_NUMBER (R_V810_ABS32, 0xa0) 271a2e2270fSchristos RELOC_NUMBER (R_V850_SYM, 0xe0) 272a2e2270fSchristos RELOC_NUMBER (R_V850_OPadd, 0xe1) 273a2e2270fSchristos RELOC_NUMBER (R_V850_OPsub, 0xe2) 274a2e2270fSchristos RELOC_NUMBER (R_V850_OPsctsize, 0xe3) 275a2e2270fSchristos RELOC_NUMBER (R_V850_OPscttop, 0xe4) 276a2e2270fSchristos 277a2e2270fSchristos END_RELOC_NUMBERS (R_V800_max) 278a2e2270fSchristos 279212397c6Schristos /* Type for Renesas note sections. NB/ This is in application space 280212397c6Schristos rather than processor space as it refers to the requirements of the 281212397c6Schristos binary concerned. A given processor may be able to handle multiple 282212397c6Schristos different types of application. */ 283212397c6Schristos #define SHT_RENESAS_INFO 0xa0000000 284212397c6Schristos 285212397c6Schristos /* Contents of a Renesas note entry: 286212397c6Schristos 287212397c6Schristos namesz +------------------+ 288212397c6Schristos | 4 | "REL\0" 289212397c6Schristos descsz +------------------+ 290212397c6Schristos | 4 | Currently 4byte only 291212397c6Schristos type +------------------+ 292212397c6Schristos | ID | 293212397c6Schristos name +------------------+ 294212397c6Schristos | REL\0 | 295212397c6Schristos desc +------------------+ 296212397c6Schristos | Value | 297212397c6Schristos +------------------+ */ 298212397c6Schristos 299212397c6Schristos #define V850_NOTE_SECNAME ".note.renesas" 300212397c6Schristos #define SIZEOF_V850_NOTE 20 301212397c6Schristos #define V850_NOTE_NAME "REL" 302212397c6Schristos 303212397c6Schristos enum v850_notes 304212397c6Schristos { 305212397c6Schristos V850_NOTE_ALIGNMENT = 1, /* Alignment of 8-byte entities. */ 306212397c6Schristos #define EF_RH850_DATA_ALIGN4 0x0001 /* Aligned to 4-byte bounadries. */ 307212397c6Schristos #define EF_RH850_DATA_ALIGN8 0x0002 /* Aligned to 8-byte bounadries. */ 308212397c6Schristos 309212397c6Schristos V850_NOTE_DATA_SIZE = 2, /* Sizeof double and long double. */ 310212397c6Schristos #define EF_RH850_DOUBLE32 0x0001 /* 32-bits in size. */ 311212397c6Schristos #define EF_RH850_DOUBLE64 0x0002 /* 64-bits in size. */ 312212397c6Schristos 313212397c6Schristos V850_NOTE_FPU_INFO = 3, /* Defined if extended floating point insns are used. */ 314212397c6Schristos #define EF_RH850_FPU20 0x0001 /* Set if [N]]M{ADD|SUB}F.S are used. */ 315212397c6Schristos #define EF_RH850_FPU30 0x0002 /* Set if ADSF.D or ADDF.D is used. */ 316212397c6Schristos 317212397c6Schristos V850_NOTE_SIMD_INFO = 4, 318212397c6Schristos #define EF_RH850_SIMD 0x0001 319212397c6Schristos 320212397c6Schristos V850_NOTE_CACHE_INFO = 5, 321212397c6Schristos #define EF_RH850_CACHE 0x0001 322212397c6Schristos 323212397c6Schristos V850_NOTE_MMU_INFO = 6 324212397c6Schristos #define EF_RH850_MMU 0x0001 325212397c6Schristos }; 326212397c6Schristos 327212397c6Schristos #define NUM_V850_NOTES V850_NOTE_MMU_INFO 328212397c6Schristos 32998b9484cSchristos #endif /* _ELF_V850_H */ 330