1 |
13 |
serginhofr |
/* riscv.h. RISC-V opcode list for GDB, the GNU debugger.
|
2 |
|
|
Copyright 2011
|
3 |
|
|
Free Software Foundation, Inc.
|
4 |
|
|
Contributed by Andrew Waterman
|
5 |
|
|
|
6 |
|
|
This file is part of GDB, GAS, and the GNU binutils.
|
7 |
|
|
|
8 |
|
|
GDB, GAS, and the GNU binutils are free software; you can redistribute
|
9 |
|
|
them and/or modify them under the terms of the GNU General Public
|
10 |
|
|
License as published by the Free Software Foundation; either version
|
11 |
|
|
1, or (at your option) any later version.
|
12 |
|
|
|
13 |
|
|
GDB, GAS, and the GNU binutils are distributed in the hope that they
|
14 |
|
|
will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
15 |
|
|
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
|
16 |
|
|
the GNU General Public License for more details.
|
17 |
|
|
|
18 |
|
|
You should have received a copy of the GNU General Public License
|
19 |
|
|
along with this file; see the file COPYING. If not, write to the Free
|
20 |
|
|
Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
|
21 |
|
|
|
22 |
|
|
#ifndef _RISCV_H_
|
23 |
|
|
#define _RISCV_H_
|
24 |
|
|
|
25 |
|
|
#include "riscv-opc.h"
|
26 |
|
|
#include <stdlib.h>
|
27 |
|
|
#include <stdint.h>
|
28 |
|
|
|
29 |
|
|
typedef uint64_t insn_t;
|
30 |
|
|
|
31 |
|
|
static inline unsigned int riscv_insn_length (insn_t insn)
|
32 |
|
|
{
|
33 |
|
|
if ((insn & 0x3) != 0x3) /* RVC. */
|
34 |
|
|
return 2;
|
35 |
|
|
if ((insn & 0x1f) != 0x1f) /* Base ISA and extensions in 32-bit space. */
|
36 |
|
|
return 4;
|
37 |
|
|
if ((insn & 0x3f) == 0x1f) /* 48-bit extensions. */
|
38 |
|
|
return 6;
|
39 |
|
|
if ((insn & 0x7f) == 0x3f) /* 64-bit extensions. */
|
40 |
|
|
return 8;
|
41 |
|
|
/* Longer instructions not supported at the moment. */
|
42 |
|
|
return 2;
|
43 |
|
|
}
|
44 |
|
|
|
45 |
|
|
static const char * const riscv_rm[8] = {
|
46 |
|
|
"rne", "rtz", "rdn", "rup", "rmm", 0, 0, "dyn"
|
47 |
|
|
};
|
48 |
|
|
static const char * const riscv_pred_succ[16] = {
|
49 |
|
|
0, "w", "r", "rw", "o", "ow", "or", "orw",
|
50 |
|
|
"i", "iw", "ir", "irw", "io", "iow", "ior", "iorw",
|
51 |
|
|
};
|
52 |
|
|
|
53 |
|
|
#define RVC_JUMP_BITS 11
|
54 |
|
|
#define RVC_JUMP_REACH ((1ULL << RVC_JUMP_BITS) * RISCV_JUMP_ALIGN)
|
55 |
|
|
|
56 |
|
|
#define RVC_BRANCH_BITS 8
|
57 |
|
|
#define RVC_BRANCH_REACH ((1ULL << RVC_BRANCH_BITS) * RISCV_BRANCH_ALIGN)
|
58 |
|
|
|
59 |
|
|
#define RV_X(x, s, n) (((x) >> (s)) & ((1 << (n)) - 1))
|
60 |
|
|
#define RV_IMM_SIGN(x) (-(((x) >> 31) & 1))
|
61 |
|
|
|
62 |
|
|
#define EXTRACT_ITYPE_IMM(x) \
|
63 |
|
|
(RV_X(x, 20, 12) | (RV_IMM_SIGN(x) << 12))
|
64 |
|
|
#define EXTRACT_STYPE_IMM(x) \
|
65 |
|
|
(RV_X(x, 7, 5) | (RV_X(x, 25, 7) << 5) | (RV_IMM_SIGN(x) << 12))
|
66 |
|
|
#define EXTRACT_SBTYPE_IMM(x) \
|
67 |
|
|
((RV_X(x, 8, 4) << 1) | (RV_X(x, 25, 6) << 5) | (RV_X(x, 7, 1) << 11) | (RV_IMM_SIGN(x) << 12))
|
68 |
|
|
#define EXTRACT_UTYPE_IMM(x) \
|
69 |
|
|
((RV_X(x, 12, 20) << 12) | (RV_IMM_SIGN(x) << 32))
|
70 |
|
|
#define EXTRACT_UJTYPE_IMM(x) \
|
71 |
|
|
((RV_X(x, 21, 10) << 1) | (RV_X(x, 20, 1) << 11) | (RV_X(x, 12, 8) << 12) | (RV_IMM_SIGN(x) << 20))
|
72 |
|
|
#define EXTRACT_RVC_IMM(x) \
|
73 |
|
|
(RV_X(x, 2, 5) | (-RV_X(x, 12, 1) << 5))
|
74 |
|
|
#define EXTRACT_RVC_LUI_IMM(x) \
|
75 |
|
|
(EXTRACT_RVC_IMM (x) << RISCV_IMM_BITS)
|
76 |
|
|
#define EXTRACT_RVC_SIMM3(x) \
|
77 |
|
|
(RV_X(x, 10, 2) | (-RV_X(x, 12, 1) << 2))
|
78 |
|
|
#define EXTRACT_RVC_ADDI4SPN_IMM(x) \
|
79 |
|
|
((RV_X(x, 6, 1) << 2) | (RV_X(x, 5, 1) << 3) | (RV_X(x, 11, 2) << 4) | (RV_X(x, 7, 4) << 6))
|
80 |
|
|
#define EXTRACT_RVC_ADDI16SP_IMM(x) \
|
81 |
|
|
((RV_X(x, 6, 1) << 4) | (RV_X(x, 2, 1) << 5) | (RV_X(x, 5, 1) << 6) | (RV_X(x, 3, 2) << 7) | (-RV_X(x, 12, 1) << 9))
|
82 |
|
|
#define EXTRACT_RVC_LW_IMM(x) \
|
83 |
|
|
((RV_X(x, 6, 1) << 2) | (RV_X(x, 10, 3) << 3) | (RV_X(x, 5, 1) << 6))
|
84 |
|
|
#define EXTRACT_RVC_LD_IMM(x) \
|
85 |
|
|
((RV_X(x, 10, 3) << 3) | (RV_X(x, 5, 2) << 6))
|
86 |
|
|
#define EXTRACT_RVC_LWSP_IMM(x) \
|
87 |
|
|
((RV_X(x, 4, 3) << 2) | (RV_X(x, 12, 1) << 5) | (RV_X(x, 2, 2) << 6))
|
88 |
|
|
#define EXTRACT_RVC_LDSP_IMM(x) \
|
89 |
|
|
((RV_X(x, 5, 2) << 3) | (RV_X(x, 12, 1) << 5) | (RV_X(x, 2, 3) << 6))
|
90 |
|
|
#define EXTRACT_RVC_SWSP_IMM(x) \
|
91 |
|
|
((RV_X(x, 9, 4) << 2) | (RV_X(x, 7, 2) << 6))
|
92 |
|
|
#define EXTRACT_RVC_SDSP_IMM(x) \
|
93 |
|
|
((RV_X(x, 10, 3) << 3) | (RV_X(x, 7, 3) << 6))
|
94 |
|
|
#define EXTRACT_RVC_B_IMM(x) \
|
95 |
|
|
((RV_X(x, 3, 2) << 1) | (RV_X(x, 10, 2) << 3) | (RV_X(x, 2, 1) << 5) | (RV_X(x, 5, 2) << 6) | (-RV_X(x, 12, 1) << 8))
|
96 |
|
|
#define EXTRACT_RVC_J_IMM(x) \
|
97 |
|
|
((RV_X(x, 3, 3) << 1) | (RV_X(x, 11, 1) << 4) | (RV_X(x, 2, 1) << 5) | (RV_X(x, 7, 1) << 6) | (RV_X(x, 6, 1) << 7) | (RV_X(x, 9, 2) << 8) | (RV_X(x, 8, 1) << 10) | (-RV_X(x, 12, 1) << 11))
|
98 |
|
|
|
99 |
|
|
#define ENCODE_ITYPE_IMM(x) \
|
100 |
|
|
(RV_X(x, 0, 12) << 20)
|
101 |
|
|
#define ENCODE_STYPE_IMM(x) \
|
102 |
|
|
((RV_X(x, 0, 5) << 7) | (RV_X(x, 5, 7) << 25))
|
103 |
|
|
#define ENCODE_SBTYPE_IMM(x) \
|
104 |
|
|
((RV_X(x, 1, 4) << 8) | (RV_X(x, 5, 6) << 25) | (RV_X(x, 11, 1) << 7) | (RV_X(x, 12, 1) << 31))
|
105 |
|
|
#define ENCODE_UTYPE_IMM(x) \
|
106 |
|
|
(RV_X(x, 12, 20) << 12)
|
107 |
|
|
#define ENCODE_UJTYPE_IMM(x) \
|
108 |
|
|
((RV_X(x, 1, 10) << 21) | (RV_X(x, 11, 1) << 20) | (RV_X(x, 12, 8) << 12) | (RV_X(x, 20, 1) << 31))
|
109 |
|
|
#define ENCODE_RVC_IMM(x) \
|
110 |
|
|
((RV_X(x, 0, 5) << 2) | (RV_X(x, 5, 1) << 12))
|
111 |
|
|
#define ENCODE_RVC_LUI_IMM(x) \
|
112 |
|
|
ENCODE_RVC_IMM ((x) >> RISCV_IMM_BITS)
|
113 |
|
|
#define ENCODE_RVC_SIMM3(x) \
|
114 |
|
|
(RV_X(x, 0, 3) << 10)
|
115 |
|
|
#define ENCODE_RVC_ADDI4SPN_IMM(x) \
|
116 |
|
|
((RV_X(x, 2, 1) << 6) | (RV_X(x, 3, 1) << 5) | (RV_X(x, 4, 2) << 11) | (RV_X(x, 6, 4) << 7))
|
117 |
|
|
#define ENCODE_RVC_ADDI16SP_IMM(x) \
|
118 |
|
|
((RV_X(x, 4, 1) << 6) | (RV_X(x, 5, 1) << 2) | (RV_X(x, 6, 1) << 5) | (RV_X(x, 7, 2) << 3) | (RV_X(x, 9, 1) << 12))
|
119 |
|
|
#define ENCODE_RVC_LW_IMM(x) \
|
120 |
|
|
((RV_X(x, 2, 1) << 6) | (RV_X(x, 3, 3) << 10) | (RV_X(x, 6, 1) << 5))
|
121 |
|
|
#define ENCODE_RVC_LD_IMM(x) \
|
122 |
|
|
((RV_X(x, 3, 3) << 10) | (RV_X(x, 6, 2) << 5))
|
123 |
|
|
#define ENCODE_RVC_LWSP_IMM(x) \
|
124 |
|
|
((RV_X(x, 2, 3) << 4) | (RV_X(x, 5, 1) << 12) | (RV_X(x, 6, 2) << 2))
|
125 |
|
|
#define ENCODE_RVC_LDSP_IMM(x) \
|
126 |
|
|
((RV_X(x, 3, 2) << 5) | (RV_X(x, 5, 1) << 12) | (RV_X(x, 6, 3) << 2))
|
127 |
|
|
#define ENCODE_RVC_SWSP_IMM(x) \
|
128 |
|
|
((RV_X(x, 2, 4) << 9) | (RV_X(x, 6, 2) << 7))
|
129 |
|
|
#define ENCODE_RVC_SDSP_IMM(x) \
|
130 |
|
|
((RV_X(x, 3, 3) << 10) | (RV_X(x, 6, 3) << 7))
|
131 |
|
|
#define ENCODE_RVC_B_IMM(x) \
|
132 |
|
|
((RV_X(x, 1, 2) << 3) | (RV_X(x, 3, 2) << 10) | (RV_X(x, 5, 1) << 2) | (RV_X(x, 6, 2) << 5) | (RV_X(x, 8, 1) << 12))
|
133 |
|
|
#define ENCODE_RVC_J_IMM(x) \
|
134 |
|
|
((RV_X(x, 1, 3) << 3) | (RV_X(x, 4, 1) << 11) | (RV_X(x, 5, 1) << 2) | (RV_X(x, 6, 1) << 7) | (RV_X(x, 7, 1) << 6) | (RV_X(x, 8, 2) << 9) | (RV_X(x, 10, 1) << 8) | (RV_X(x, 11, 1) << 12))
|
135 |
|
|
|
136 |
|
|
#define VALID_ITYPE_IMM(x) (EXTRACT_ITYPE_IMM(ENCODE_ITYPE_IMM(x)) == (x))
|
137 |
|
|
#define VALID_STYPE_IMM(x) (EXTRACT_STYPE_IMM(ENCODE_STYPE_IMM(x)) == (x))
|
138 |
|
|
#define VALID_SBTYPE_IMM(x) (EXTRACT_SBTYPE_IMM(ENCODE_SBTYPE_IMM(x)) == (x))
|
139 |
|
|
#define VALID_UTYPE_IMM(x) (EXTRACT_UTYPE_IMM(ENCODE_UTYPE_IMM(x)) == (x))
|
140 |
|
|
#define VALID_UJTYPE_IMM(x) (EXTRACT_UJTYPE_IMM(ENCODE_UJTYPE_IMM(x)) == (x))
|
141 |
|
|
#define VALID_RVC_IMM(x) (EXTRACT_RVC_IMM(ENCODE_RVC_IMM(x)) == (x))
|
142 |
|
|
#define VALID_RVC_LUI_IMM(x) (EXTRACT_RVC_LUI_IMM(ENCODE_RVC_LUI_IMM(x)) == (x))
|
143 |
|
|
#define VALID_RVC_SIMM3(x) (EXTRACT_RVC_SIMM3(ENCODE_RVC_SIMM3(x)) == (x))
|
144 |
|
|
#define VALID_RVC_ADDI4SPN_IMM(x) (EXTRACT_RVC_ADDI4SPN_IMM(ENCODE_RVC_ADDI4SPN_IMM(x)) == (x))
|
145 |
|
|
#define VALID_RVC_ADDI16SP_IMM(x) (EXTRACT_RVC_ADDI16SP_IMM(ENCODE_RVC_ADDI16SP_IMM(x)) == (x))
|
146 |
|
|
#define VALID_RVC_LW_IMM(x) (EXTRACT_RVC_LW_IMM(ENCODE_RVC_LW_IMM(x)) == (x))
|
147 |
|
|
#define VALID_RVC_LD_IMM(x) (EXTRACT_RVC_LD_IMM(ENCODE_RVC_LD_IMM(x)) == (x))
|
148 |
|
|
#define VALID_RVC_LWSP_IMM(x) (EXTRACT_RVC_LWSP_IMM(ENCODE_RVC_LWSP_IMM(x)) == (x))
|
149 |
|
|
#define VALID_RVC_LDSP_IMM(x) (EXTRACT_RVC_LDSP_IMM(ENCODE_RVC_LDSP_IMM(x)) == (x))
|
150 |
|
|
#define VALID_RVC_SWSP_IMM(x) (EXTRACT_RVC_SWSP_IMM(ENCODE_RVC_SWSP_IMM(x)) == (x))
|
151 |
|
|
#define VALID_RVC_SDSP_IMM(x) (EXTRACT_RVC_SDSP_IMM(ENCODE_RVC_SDSP_IMM(x)) == (x))
|
152 |
|
|
#define VALID_RVC_B_IMM(x) (EXTRACT_RVC_B_IMM(ENCODE_RVC_B_IMM(x)) == (x))
|
153 |
|
|
#define VALID_RVC_J_IMM(x) (EXTRACT_RVC_J_IMM(ENCODE_RVC_J_IMM(x)) == (x))
|
154 |
|
|
|
155 |
|
|
#define RISCV_RTYPE(insn, rd, rs1, rs2) \
|
156 |
|
|
((MATCH_ ## insn) | ((rd) << OP_SH_RD) | ((rs1) << OP_SH_RS1) | ((rs2) << OP_SH_RS2))
|
157 |
|
|
#define RISCV_ITYPE(insn, rd, rs1, imm) \
|
158 |
|
|
((MATCH_ ## insn) | ((rd) << OP_SH_RD) | ((rs1) << OP_SH_RS1) | ENCODE_ITYPE_IMM(imm))
|
159 |
|
|
#define RISCV_STYPE(insn, rs1, rs2, imm) \
|
160 |
|
|
((MATCH_ ## insn) | ((rs1) << OP_SH_RS1) | ((rs2) << OP_SH_RS2) | ENCODE_STYPE_IMM(imm))
|
161 |
|
|
#define RISCV_SBTYPE(insn, rs1, rs2, target) \
|
162 |
|
|
((MATCH_ ## insn) | ((rs1) << OP_SH_RS1) | ((rs2) << OP_SH_RS2) | ENCODE_SBTYPE_IMM(target))
|
163 |
|
|
#define RISCV_UTYPE(insn, rd, bigimm) \
|
164 |
|
|
((MATCH_ ## insn) | ((rd) << OP_SH_RD) | ENCODE_UTYPE_IMM(bigimm))
|
165 |
|
|
#define RISCV_UJTYPE(insn, rd, target) \
|
166 |
|
|
((MATCH_ ## insn) | ((rd) << OP_SH_RD) | ENCODE_UJTYPE_IMM(target))
|
167 |
|
|
|
168 |
|
|
#define RISCV_NOP RISCV_ITYPE(ADDI, 0, 0, 0)
|
169 |
|
|
#define RVC_NOP MATCH_C_ADDI
|
170 |
|
|
|
171 |
|
|
#define RISCV_CONST_HIGH_PART(VALUE) \
|
172 |
|
|
(((VALUE) + (RISCV_IMM_REACH/2)) & ~(RISCV_IMM_REACH-1))
|
173 |
|
|
#define RISCV_CONST_LOW_PART(VALUE) ((VALUE) - RISCV_CONST_HIGH_PART (VALUE))
|
174 |
|
|
#define RISCV_PCREL_HIGH_PART(VALUE, PC) RISCV_CONST_HIGH_PART((VALUE) - (PC))
|
175 |
|
|
#define RISCV_PCREL_LOW_PART(VALUE, PC) RISCV_CONST_LOW_PART((VALUE) - (PC))
|
176 |
|
|
|
177 |
|
|
#define RISCV_JUMP_BITS RISCV_BIGIMM_BITS
|
178 |
|
|
#define RISCV_JUMP_ALIGN_BITS 1
|
179 |
|
|
#define RISCV_JUMP_ALIGN (1 << RISCV_JUMP_ALIGN_BITS)
|
180 |
|
|
#define RISCV_JUMP_REACH ((1ULL << RISCV_JUMP_BITS) * RISCV_JUMP_ALIGN)
|
181 |
|
|
|
182 |
|
|
#define RISCV_IMM_BITS 12
|
183 |
|
|
#define RISCV_BIGIMM_BITS (32 - RISCV_IMM_BITS)
|
184 |
|
|
#define RISCV_IMM_REACH (1LL << RISCV_IMM_BITS)
|
185 |
|
|
#define RISCV_BIGIMM_REACH (1LL << RISCV_BIGIMM_BITS)
|
186 |
|
|
#define RISCV_RVC_IMM_REACH (1LL << 6)
|
187 |
|
|
#define RISCV_BRANCH_BITS RISCV_IMM_BITS
|
188 |
|
|
#define RISCV_BRANCH_ALIGN_BITS RISCV_JUMP_ALIGN_BITS
|
189 |
|
|
#define RISCV_BRANCH_ALIGN (1 << RISCV_BRANCH_ALIGN_BITS)
|
190 |
|
|
#define RISCV_BRANCH_REACH (RISCV_IMM_REACH * RISCV_BRANCH_ALIGN)
|
191 |
|
|
|
192 |
|
|
/* RV fields. */
|
193 |
|
|
|
194 |
|
|
#define OP_MASK_OP 0x7f
|
195 |
|
|
#define OP_SH_OP 0
|
196 |
|
|
#define OP_MASK_RS2 0x1f
|
197 |
|
|
#define OP_SH_RS2 20
|
198 |
|
|
#define OP_MASK_RS1 0x1f
|
199 |
|
|
#define OP_SH_RS1 15
|
200 |
|
|
#define OP_MASK_RS3 0x1f
|
201 |
|
|
#define OP_SH_RS3 27
|
202 |
|
|
#define OP_MASK_RD 0x1f
|
203 |
|
|
#define OP_SH_RD 7
|
204 |
|
|
#define OP_MASK_SHAMT 0x3f
|
205 |
|
|
#define OP_SH_SHAMT 20
|
206 |
|
|
#define OP_MASK_SHAMTW 0x1f
|
207 |
|
|
#define OP_SH_SHAMTW 20
|
208 |
|
|
#define OP_MASK_RM 0x7
|
209 |
|
|
#define OP_SH_RM 12
|
210 |
|
|
#define OP_MASK_PRED 0xf
|
211 |
|
|
#define OP_SH_PRED 24
|
212 |
|
|
#define OP_MASK_SUCC 0xf
|
213 |
|
|
#define OP_SH_SUCC 20
|
214 |
|
|
#define OP_MASK_AQ 0x1
|
215 |
|
|
#define OP_SH_AQ 26
|
216 |
|
|
#define OP_MASK_RL 0x1
|
217 |
|
|
#define OP_SH_RL 25
|
218 |
|
|
|
219 |
|
|
#define OP_MASK_CUSTOM_IMM 0x7f
|
220 |
|
|
#define OP_SH_CUSTOM_IMM 25
|
221 |
|
|
#define OP_MASK_CSR 0xfff
|
222 |
|
|
#define OP_SH_CSR 20
|
223 |
|
|
|
224 |
|
|
/* RVC fields. */
|
225 |
|
|
|
226 |
|
|
#define OP_MASK_CRS2 0x1f
|
227 |
|
|
#define OP_SH_CRS2 2
|
228 |
|
|
#define OP_MASK_CRS1S 0x7
|
229 |
|
|
#define OP_SH_CRS1S 7
|
230 |
|
|
#define OP_MASK_CRS2S 0x7
|
231 |
|
|
#define OP_SH_CRS2S 2
|
232 |
|
|
|
233 |
|
|
/* ABI names for selected x-registers. */
|
234 |
|
|
|
235 |
|
|
#define X_RA 1
|
236 |
|
|
#define X_SP 2
|
237 |
|
|
#define X_GP 3
|
238 |
|
|
#define X_TP 4
|
239 |
|
|
#define X_T0 5
|
240 |
|
|
#define X_T1 6
|
241 |
|
|
#define X_T2 7
|
242 |
|
|
#define X_T3 28
|
243 |
|
|
|
244 |
|
|
#define NGPR 32
|
245 |
|
|
#define NFPR 32
|
246 |
|
|
|
247 |
|
|
/* Replace bits MASK << SHIFT of STRUCT with the equivalent bits in
|
248 |
|
|
VALUE << SHIFT. VALUE is evaluated exactly once. */
|
249 |
|
|
#define INSERT_BITS(STRUCT, VALUE, MASK, SHIFT) \
|
250 |
|
|
(STRUCT) = (((STRUCT) & ~((insn_t)(MASK) << (SHIFT))) \
|
251 |
|
|
| ((insn_t)((VALUE) & (MASK)) << (SHIFT)))
|
252 |
|
|
|
253 |
|
|
/* Extract bits MASK << SHIFT from STRUCT and shift them right
|
254 |
|
|
SHIFT places. */
|
255 |
|
|
#define EXTRACT_BITS(STRUCT, MASK, SHIFT) \
|
256 |
|
|
(((STRUCT) >> (SHIFT)) & (MASK))
|
257 |
|
|
|
258 |
|
|
/* Extract the operand given by FIELD from integer INSN. */
|
259 |
|
|
#define EXTRACT_OPERAND(FIELD, INSN) \
|
260 |
|
|
EXTRACT_BITS ((INSN), OP_MASK_##FIELD, OP_SH_##FIELD)
|
261 |
|
|
|
262 |
|
|
/* This structure holds information for a particular instruction. */
|
263 |
|
|
|
264 |
|
|
struct riscv_opcode
|
265 |
|
|
{
|
266 |
|
|
/* The name of the instruction. */
|
267 |
|
|
const char *name;
|
268 |
|
|
/* The ISA subset name (I, M, A, F, D, Xextension). */
|
269 |
|
|
const char *subset;
|
270 |
|
|
/* A string describing the arguments for this instruction. */
|
271 |
|
|
const char *args;
|
272 |
|
|
/* The basic opcode for the instruction. When assembling, this
|
273 |
|
|
opcode is modified by the arguments to produce the actual opcode
|
274 |
|
|
that is used. If pinfo is INSN_MACRO, then this is 0. */
|
275 |
|
|
insn_t match;
|
276 |
|
|
/* If pinfo is not INSN_MACRO, then this is a bit mask for the
|
277 |
|
|
relevant portions of the opcode when disassembling. If the
|
278 |
|
|
actual opcode anded with the match field equals the opcode field,
|
279 |
|
|
then we have found the correct instruction. If pinfo is
|
280 |
|
|
INSN_MACRO, then this field is the macro identifier. */
|
281 |
|
|
insn_t mask;
|
282 |
|
|
/* A function to determine if a word corresponds to this instruction.
|
283 |
|
|
Usually, this computes ((word & mask) == match). */
|
284 |
|
|
int (*match_func) (const struct riscv_opcode *op, insn_t word);
|
285 |
|
|
/* For a macro, this is INSN_MACRO. Otherwise, it is a collection
|
286 |
|
|
of bits describing the instruction, notably any relevant hazard
|
287 |
|
|
information. */
|
288 |
|
|
unsigned long pinfo;
|
289 |
|
|
};
|
290 |
|
|
|
291 |
|
|
/* Instruction is a simple alias (e.g. "mv" for "addi"). */
|
292 |
|
|
#define INSN_ALIAS 0x00000001
|
293 |
|
|
/* Instruction is actually a macro. It should be ignored by the
|
294 |
|
|
disassembler, and requires special treatment by the assembler. */
|
295 |
|
|
#define INSN_MACRO 0xffffffff
|
296 |
|
|
|
297 |
|
|
/* This is a list of macro expanded instructions.
|
298 |
|
|
|
299 |
|
|
_I appended means immediate
|
300 |
|
|
_A appended means address
|
301 |
|
|
_AB appended means address with base register
|
302 |
|
|
_D appended means 64 bit floating point constant
|
303 |
|
|
_S appended means 32 bit floating point constant. */
|
304 |
|
|
|
305 |
|
|
enum
|
306 |
|
|
{
|
307 |
|
|
M_LA,
|
308 |
|
|
M_LLA,
|
309 |
|
|
M_LA_TLS_GD,
|
310 |
|
|
M_LA_TLS_IE,
|
311 |
|
|
M_LB,
|
312 |
|
|
M_LBU,
|
313 |
|
|
M_LH,
|
314 |
|
|
M_LHU,
|
315 |
|
|
M_LW,
|
316 |
|
|
M_LWU,
|
317 |
|
|
M_LD,
|
318 |
|
|
M_SB,
|
319 |
|
|
M_SH,
|
320 |
|
|
M_SW,
|
321 |
|
|
M_SD,
|
322 |
|
|
M_FLW,
|
323 |
|
|
M_FLD,
|
324 |
|
|
M_FSW,
|
325 |
|
|
M_FSD,
|
326 |
|
|
M_CALL,
|
327 |
|
|
M_J,
|
328 |
|
|
M_LI,
|
329 |
|
|
M_NUM_MACROS
|
330 |
|
|
};
|
331 |
|
|
|
332 |
|
|
|
333 |
|
|
extern const char * const riscv_gpr_names_numeric[NGPR];
|
334 |
|
|
extern const char * const riscv_gpr_names_abi[NGPR];
|
335 |
|
|
extern const char * const riscv_fpr_names_numeric[NFPR];
|
336 |
|
|
extern const char * const riscv_fpr_names_abi[NFPR];
|
337 |
|
|
|
338 |
|
|
extern const struct riscv_opcode riscv_builtin_opcodes[];
|
339 |
|
|
extern const int bfd_riscv_num_builtin_opcodes;
|
340 |
|
|
extern struct riscv_opcode *riscv_opcodes;
|
341 |
|
|
extern int bfd_riscv_num_opcodes;
|
342 |
|
|
#define NUMOPCODES bfd_riscv_num_opcodes
|
343 |
|
|
|
344 |
|
|
#endif /* _RISCV_H_ */
|