/src/binutils-gdb/include/elf/riscv.h
Line | Count | Source |
1 | | /* RISC-V ELF support for BFD. |
2 | | Copyright (C) 2011-2026 Free Software Foundation, Inc. |
3 | | |
4 | | Contributed by Andrew Waterman (andrew@sifive.com). |
5 | | Based on MIPS ELF support for BFD, by Ian Lance Taylor. |
6 | | |
7 | | This file is part of BFD, the Binary File Descriptor library. |
8 | | |
9 | | This program is free software; you can redistribute it and/or modify |
10 | | it under the terms of the GNU General Public License as published by |
11 | | the Free Software Foundation; either version 3 of the License, or |
12 | | (at your option) any later version. |
13 | | |
14 | | This program is distributed in the hope that it will be useful, |
15 | | but WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
17 | | GNU General Public License for more details. |
18 | | |
19 | | You should have received a copy of the GNU General Public License |
20 | | along with this program; see the file COPYING3. If not, |
21 | | see <http://www.gnu.org/licenses/>. */ |
22 | | |
23 | | /* This file holds definitions specific to the RISCV ELF ABI. Note |
24 | | that most of this is not actually implemented by BFD. */ |
25 | | |
26 | | #ifndef _ELF_RISCV_H |
27 | | #define _ELF_RISCV_H |
28 | | |
29 | | #include "elf/reloc-macros.h" |
30 | | #include "libiberty.h" |
31 | | |
32 | | /* Relocation types. */ |
33 | 6.70k | START_RELOC_NUMBERS (elf_riscv_reloc_type) |
34 | | /* Relocation types used by the dynamic linker. */ |
35 | 6.70k | RELOC_NUMBER (R_RISCV_NONE, 0) |
36 | 123 | RELOC_NUMBER (R_RISCV_32, 1) |
37 | 157 | RELOC_NUMBER (R_RISCV_64, 2) |
38 | 52 | RELOC_NUMBER (R_RISCV_RELATIVE, 3) |
39 | 60 | RELOC_NUMBER (R_RISCV_COPY, 4) |
40 | 27 | RELOC_NUMBER (R_RISCV_JUMP_SLOT, 5) |
41 | 45 | RELOC_NUMBER (R_RISCV_TLS_DTPMOD32, 6) |
42 | 37 | RELOC_NUMBER (R_RISCV_TLS_DTPMOD64, 7) |
43 | 28 | RELOC_NUMBER (R_RISCV_TLS_DTPREL32, 8) |
44 | 89 | RELOC_NUMBER (R_RISCV_TLS_DTPREL64, 9) |
45 | 38 | RELOC_NUMBER (R_RISCV_TLS_TPREL32, 10) |
46 | 15 | RELOC_NUMBER (R_RISCV_TLS_TPREL64, 11) |
47 | 63 | RELOC_NUMBER (R_RISCV_TLSDESC, 12) |
48 | | |
49 | | /* Relocation types not used by the dynamic linker. */ |
50 | 32 | RELOC_NUMBER (R_RISCV_BRANCH, 16) |
51 | 15 | RELOC_NUMBER (R_RISCV_JAL, 17) |
52 | 15 | RELOC_NUMBER (R_RISCV_CALL, 18) |
53 | 22 | RELOC_NUMBER (R_RISCV_CALL_PLT, 19) |
54 | 6 | RELOC_NUMBER (R_RISCV_GOT_HI20, 20) |
55 | 2 | RELOC_NUMBER (R_RISCV_TLS_GOT_HI20, 21) |
56 | 41 | RELOC_NUMBER (R_RISCV_TLS_GD_HI20, 22) |
57 | 10 | RELOC_NUMBER (R_RISCV_PCREL_HI20, 23) |
58 | 23 | RELOC_NUMBER (R_RISCV_PCREL_LO12_I, 24) |
59 | 23 | RELOC_NUMBER (R_RISCV_PCREL_LO12_S, 25) |
60 | 45 | RELOC_NUMBER (R_RISCV_HI20, 26) |
61 | 9 | RELOC_NUMBER (R_RISCV_LO12_I, 27) |
62 | 11 | RELOC_NUMBER (R_RISCV_LO12_S, 28) |
63 | 66 | RELOC_NUMBER (R_RISCV_TPREL_HI20, 29) |
64 | 2 | RELOC_NUMBER (R_RISCV_TPREL_LO12_I, 30) |
65 | 2 | RELOC_NUMBER (R_RISCV_TPREL_LO12_S, 31) |
66 | 26 | RELOC_NUMBER (R_RISCV_TPREL_ADD, 32) |
67 | 37 | RELOC_NUMBER (R_RISCV_ADD8, 33) |
68 | 23 | RELOC_NUMBER (R_RISCV_ADD16, 34) |
69 | 480 | RELOC_NUMBER (R_RISCV_ADD32, 35) |
70 | 86 | RELOC_NUMBER (R_RISCV_ADD64, 36) |
71 | 90 | RELOC_NUMBER (R_RISCV_SUB8, 37) |
72 | 5 | RELOC_NUMBER (R_RISCV_SUB16, 38) |
73 | 43 | RELOC_NUMBER (R_RISCV_SUB32, 39) |
74 | 68 | RELOC_NUMBER (R_RISCV_SUB64, 40) |
75 | 63 | RELOC_NUMBER (R_RISCV_ALIGN, 43) |
76 | 8 | RELOC_NUMBER (R_RISCV_RVC_BRANCH, 44) |
77 | 114 | RELOC_NUMBER (R_RISCV_RVC_JUMP, 45) |
78 | 17 | RELOC_NUMBER (R_RISCV_RVC_LUI, 46) |
79 | 26 | RELOC_NUMBER (R_RISCV_GPREL_I, 47) |
80 | 10 | RELOC_NUMBER (R_RISCV_GPREL_S, 48) |
81 | 18 | RELOC_NUMBER (R_RISCV_TPREL_I, 49) |
82 | 44 | RELOC_NUMBER (R_RISCV_TPREL_S, 50) |
83 | 7 | RELOC_NUMBER (R_RISCV_RELAX, 51) |
84 | 237 | RELOC_NUMBER (R_RISCV_SUB6, 52) |
85 | 20 | RELOC_NUMBER (R_RISCV_SET6, 53) |
86 | 13 | RELOC_NUMBER (R_RISCV_SET8, 54) |
87 | 4 | RELOC_NUMBER (R_RISCV_SET16, 55) |
88 | 10 | RELOC_NUMBER (R_RISCV_SET32, 56) |
89 | 9 | RELOC_NUMBER (R_RISCV_32_PCREL, 57) |
90 | 8 | RELOC_NUMBER (R_RISCV_IRELATIVE, 58) |
91 | | /* Reserved 59 for R_RISCV_PLT32. */ |
92 | 11 | RELOC_NUMBER (R_RISCV_SET_ULEB128, 60) |
93 | 55 | RELOC_NUMBER (R_RISCV_SUB_ULEB128, 61) |
94 | 11 | RELOC_NUMBER (R_RISCV_TLSDESC_HI20, 62) |
95 | 7 | RELOC_NUMBER (R_RISCV_TLSDESC_LOAD_LO12, 63) |
96 | 67 | RELOC_NUMBER (R_RISCV_TLSDESC_ADD_LO12, 64) |
97 | 14 | RELOC_NUMBER (R_RISCV_TLSDESC_CALL, 65) |
98 | 2.38k | END_RELOC_NUMBERS (R_RISCV_max) |
99 | | |
100 | | /* Internal relocations used exclusively by the relaxation pass. */ |
101 | 0 | #define R_RISCV_DELETE (R_RISCV_max) |
102 | 0 | #define R_RISCV_DELETE_AND_RELAX (R_RISCV_max + 1) |
103 | 0 | #define R_RISCV_RVC_LUI (R_RISCV_max + 2) |
104 | 0 | #define R_RISCV_GPREL_I (R_RISCV_max + 3) |
105 | 0 | #define R_RISCV_GPREL_S (R_RISCV_max + 4) |
106 | 0 | #define R_RISCV_TPREL_I (R_RISCV_max + 5) |
107 | 0 | #define R_RISCV_TPREL_S (R_RISCV_max + 6) |
108 | | |
109 | | /* Processor specific flags for the ELF header e_flags field. */ |
110 | | |
111 | | /* File may contain compressed instructions. */ |
112 | 303 | #define EF_RISCV_RVC 0x0001 |
113 | | |
114 | | /* Which floating-point ABI a file uses. */ |
115 | 303 | #define EF_RISCV_FLOAT_ABI 0x0006 |
116 | | |
117 | | /* File uses the soft-float ABI. */ |
118 | 161 | #define EF_RISCV_FLOAT_ABI_SOFT 0x0000 |
119 | | |
120 | | /* File uses the single-float ABI. */ |
121 | 27 | #define EF_RISCV_FLOAT_ABI_SINGLE 0x0002 |
122 | | |
123 | | /* File uses the double-float ABI. */ |
124 | 81 | #define EF_RISCV_FLOAT_ABI_DOUBLE 0x0004 |
125 | | |
126 | | /* File uses the quad-float ABI. */ |
127 | 34 | #define EF_RISCV_FLOAT_ABI_QUAD 0x0006 |
128 | | |
129 | | /* File uses the 32E base integer instruction. */ |
130 | 303 | #define EF_RISCV_RVE 0x0008 |
131 | | |
132 | | /* The name of the global pointer symbol. */ |
133 | 0 | #define RISCV_GP_SYMBOL "__global_pointer$" |
134 | | |
135 | | /* Processor specific dynamic array tags. */ |
136 | 48 | #define DT_RISCV_VARIANT_CC (DT_LOPROC + 1) |
137 | | |
138 | | /* RISC-V specific values for st_other. */ |
139 | 2.36k | #define STO_RISCV_VARIANT_CC 0x80 |
140 | | |
141 | | /* File uses the TSO model. */ |
142 | 303 | #define EF_RISCV_TSO 0x0010 |
143 | | |
144 | | /* Additional section types. */ |
145 | 244 | #define SHT_RISCV_ATTRIBUTES (SHT_LOPROC + 3) /* Section holds attributes. */ |
146 | | |
147 | | /* Processor specific program header types. */ |
148 | | |
149 | | /* Location of RISC-V ELF attribute section. */ |
150 | 23 | #define PT_RISCV_ATTRIBUTES 0x70000003 |
151 | | |
152 | | /* Object attributes. */ |
153 | | enum |
154 | | { |
155 | | /* 0-3 are generic. */ |
156 | | Tag_RISCV_stack_align = 4, |
157 | | Tag_RISCV_arch = 5, |
158 | | Tag_RISCV_unaligned_access = 6, |
159 | | Tag_RISCV_priv_spec = 8, |
160 | | Tag_RISCV_priv_spec_minor = 10, |
161 | | Tag_RISCV_priv_spec_revision = 12 |
162 | | }; |
163 | | |
164 | | #endif /* _ELF_RISCV_H */ |