198b9484cSchristos /* picoJava ELF support for BFD. 2*02f41505Schristos Copyright (C) 1999-2024 Free Software Foundation, Inc. 398b9484cSchristos 498b9484cSchristos This file is part of BFD, the Binary File Descriptor library. 598b9484cSchristos 698b9484cSchristos This program is free software; you can redistribute it and/or modify 798b9484cSchristos it under the terms of the GNU General Public License as published by 898b9484cSchristos the Free Software Foundation; either version 3 of the License, or 998b9484cSchristos (at your option) any later version. 1098b9484cSchristos 1198b9484cSchristos This program is distributed in the hope that it will be useful, 1298b9484cSchristos but WITHOUT ANY WARRANTY; without even the implied warranty of 1398b9484cSchristos MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 1498b9484cSchristos GNU General Public License for more details. 1598b9484cSchristos 1698b9484cSchristos You should have received a copy of the GNU General Public License 1798b9484cSchristos along with this program; if not, write to the Free Software Foundation, 1898b9484cSchristos Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ 1998b9484cSchristos 2098b9484cSchristos #ifndef _ELF_PJ_H 2198b9484cSchristos #define _ELF_PJ_H 2298b9484cSchristos 2398b9484cSchristos #include "elf/reloc-macros.h" 2498b9484cSchristos 2598b9484cSchristos /* Relocations. */ 2698b9484cSchristos 2798b9484cSchristos START_RELOC_NUMBERS (elf_pj_reloc_type) 2898b9484cSchristos RELOC_NUMBER (R_PJ_NONE, 0) 2998b9484cSchristos RELOC_NUMBER (R_PJ_DATA_DIR32, 1) 3098b9484cSchristos RELOC_NUMBER (R_PJ_CODE_REL32, 2) 3198b9484cSchristos RELOC_NUMBER (R_PJ_CODE_REL16, 3) 3298b9484cSchristos RELOC_NUMBER (R_PJ_CODE_DIR32, 6) 3398b9484cSchristos RELOC_NUMBER (R_PJ_CODE_DIR16, 7) 3498b9484cSchristos RELOC_NUMBER (R_PJ_CODE_LO16, 13) 3598b9484cSchristos RELOC_NUMBER (R_PJ_CODE_HI16, 14) 3698b9484cSchristos RELOC_NUMBER (R_PJ_GNU_VTINHERIT, 15) 3798b9484cSchristos RELOC_NUMBER (R_PJ_GNU_VTENTRY, 16) 3898b9484cSchristos END_RELOC_NUMBERS (R_PJ_max) 3998b9484cSchristos 4098b9484cSchristos #define EF_PICOJAVA_ARCH 0x0000000f 4198b9484cSchristos #define EF_PICOJAVA_NEWCALLS 0x00000010 4298b9484cSchristos #define EF_PICOJAVA_GNUCALLS 0x00000020 /* The (currently) non standard GNU calling convention */ 4398b9484cSchristos 4498b9484cSchristos #endif 45