]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - opcodes/riscv-dis.c
Update year range in copyright notice of binutils files
[thirdparty/binutils-gdb.git] / opcodes / riscv-dis.c
CommitLineData
e23eba97 1/* RISC-V disassembler
219d1afa 2 Copyright (C) 2011-2018 Free Software Foundation, Inc.
e23eba97
NC
3
4 Contributed by Andrew Waterman (andrew@sifive.com).
5 Based on MIPS target.
6
7 This file is part of the GNU opcodes library.
8
9 This library 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, or (at your option)
12 any later version.
13
14 It is distributed in the hope that it will be useful, but WITHOUT
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
16 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
17 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#include "sysdep.h"
88c1242d 24#include "disassemble.h"
e23eba97
NC
25#include "libiberty.h"
26#include "opcode/riscv.h"
27#include "opintl.h"
28#include "elf-bfd.h"
29#include "elf/riscv.h"
30
31#include <stdint.h>
32#include <ctype.h>
33
34struct riscv_private_data
35{
36 bfd_vma gp;
37 bfd_vma print_addr;
38 bfd_vma hi_addr[OP_MASK_RD + 1];
39};
40
41static const char * const *riscv_gpr_names;
42static const char * const *riscv_fpr_names;
43
44/* Other options. */
45static int no_aliases; /* If set disassemble as most general inst. */
46
47static void
48set_default_riscv_dis_options (void)
49{
50 riscv_gpr_names = riscv_gpr_names_abi;
51 riscv_fpr_names = riscv_fpr_names_abi;
52 no_aliases = 0;
53}
54
55static void
56parse_riscv_dis_option (const char *option)
57{
58 if (strcmp (option, "no-aliases") == 0)
59 no_aliases = 1;
60 else if (strcmp (option, "numeric") == 0)
61 {
62 riscv_gpr_names = riscv_gpr_names_numeric;
63 riscv_fpr_names = riscv_fpr_names_numeric;
64 }
65 else
66 {
67 /* Invalid option. */
68 fprintf (stderr, _("Unrecognized disassembler option: %s\n"), option);
69 }
70}
71
72static void
73parse_riscv_dis_options (const char *opts_in)
74{
75 char *opts = xstrdup (opts_in), *opt = opts, *opt_end = opts;
76
77 set_default_riscv_dis_options ();
78
79 for ( ; opt_end != NULL; opt = opt_end + 1)
80 {
81 if ((opt_end = strchr (opt, ',')) != NULL)
82 *opt_end = 0;
83 parse_riscv_dis_option (opt);
84 }
85
86 free (opts);
87}
88
89/* Print one argument from an array. */
90
91static void
92arg_print (struct disassemble_info *info, unsigned long val,
93 const char* const* array, size_t size)
94{
95 const char *s = val >= size || array[val] == NULL ? "unknown" : array[val];
96 (*info->fprintf_func) (info->stream, "%s", s);
97}
98
99static void
100maybe_print_address (struct riscv_private_data *pd, int base_reg, int offset)
101{
102 if (pd->hi_addr[base_reg] != (bfd_vma)-1)
103 {
104 pd->print_addr = pd->hi_addr[base_reg] + offset;
105 pd->hi_addr[base_reg] = -1;
106 }
107 else if (base_reg == X_GP && pd->gp != (bfd_vma)-1)
108 pd->print_addr = pd->gp + offset;
109 else if (base_reg == X_TP || base_reg == 0)
110 pd->print_addr = offset;
111}
112
113/* Print insn arguments for 32/64-bit code. */
114
115static void
116print_insn_args (const char *d, insn_t l, bfd_vma pc, disassemble_info *info)
117{
118 struct riscv_private_data *pd = info->private_data;
119 int rs1 = (l >> OP_SH_RS1) & OP_MASK_RS1;
120 int rd = (l >> OP_SH_RD) & OP_MASK_RD;
121 fprintf_ftype print = info->fprintf_func;
122
123 if (*d != '\0')
124 print (info->stream, "\t");
125
126 for (; *d != '\0'; d++)
127 {
128 switch (*d)
129 {
130 case 'C': /* RVC */
131 switch (*++d)
132 {
133 case 's': /* RS1 x8-x15 */
134 case 'w': /* RS1 x8-x15 */
135 print (info->stream, "%s",
136 riscv_gpr_names[EXTRACT_OPERAND (CRS1S, l) + 8]);
137 break;
138 case 't': /* RS2 x8-x15 */
139 case 'x': /* RS2 x8-x15 */
140 print (info->stream, "%s",
141 riscv_gpr_names[EXTRACT_OPERAND (CRS2S, l) + 8]);
142 break;
143 case 'U': /* RS1, constrained to equal RD */
144 print (info->stream, "%s", riscv_gpr_names[rd]);
145 break;
146 case 'c': /* RS1, constrained to equal sp */
147 print (info->stream, "%s", riscv_gpr_names[X_SP]);
148 break;
149 case 'V': /* RS2 */
150 print (info->stream, "%s",
151 riscv_gpr_names[EXTRACT_OPERAND (CRS2, l)]);
152 break;
153 case 'i':
154 print (info->stream, "%d", (int)EXTRACT_RVC_SIMM3 (l));
155 break;
f91d48de 156 case 'o':
e23eba97
NC
157 case 'j':
158 print (info->stream, "%d", (int)EXTRACT_RVC_IMM (l));
159 break;
160 case 'k':
161 print (info->stream, "%d", (int)EXTRACT_RVC_LW_IMM (l));
162 break;
163 case 'l':
164 print (info->stream, "%d", (int)EXTRACT_RVC_LD_IMM (l));
165 break;
166 case 'm':
167 print (info->stream, "%d", (int)EXTRACT_RVC_LWSP_IMM (l));
168 break;
169 case 'n':
170 print (info->stream, "%d", (int)EXTRACT_RVC_LDSP_IMM (l));
171 break;
172 case 'K':
173 print (info->stream, "%d", (int)EXTRACT_RVC_ADDI4SPN_IMM (l));
174 break;
175 case 'L':
176 print (info->stream, "%d", (int)EXTRACT_RVC_ADDI16SP_IMM (l));
177 break;
178 case 'M':
179 print (info->stream, "%d", (int)EXTRACT_RVC_SWSP_IMM (l));
180 break;
181 case 'N':
182 print (info->stream, "%d", (int)EXTRACT_RVC_SDSP_IMM (l));
183 break;
184 case 'p':
185 info->target = EXTRACT_RVC_B_IMM (l) + pc;
186 (*info->print_address_func) (info->target, info);
187 break;
188 case 'a':
189 info->target = EXTRACT_RVC_J_IMM (l) + pc;
190 (*info->print_address_func) (info->target, info);
191 break;
192 case 'u':
193 print (info->stream, "0x%x",
194 (int)(EXTRACT_RVC_IMM (l) & (RISCV_BIGIMM_REACH-1)));
195 break;
196 case '>':
197 print (info->stream, "0x%x", (int)EXTRACT_RVC_IMM (l) & 0x3f);
198 break;
199 case '<':
200 print (info->stream, "0x%x", (int)EXTRACT_RVC_IMM (l) & 0x1f);
201 break;
202 case 'T': /* floating-point RS2 */
203 print (info->stream, "%s",
204 riscv_fpr_names[EXTRACT_OPERAND (CRS2, l)]);
205 break;
206 case 'D': /* floating-point RS2 x8-x15 */
207 print (info->stream, "%s",
208 riscv_fpr_names[EXTRACT_OPERAND (CRS2S, l) + 8]);
209 break;
210 }
211 break;
212
213 case ',':
214 case '(':
215 case ')':
216 case '[':
217 case ']':
218 print (info->stream, "%c", *d);
219 break;
220
221 case '0':
222 /* Only print constant 0 if it is the last argument */
223 if (!d[1])
224 print (info->stream, "0");
225 break;
226
227 case 'b':
228 case 's':
229 print (info->stream, "%s", riscv_gpr_names[rs1]);
230 break;
231
232 case 't':
233 print (info->stream, "%s",
234 riscv_gpr_names[EXTRACT_OPERAND (RS2, l)]);
235 break;
236
237 case 'u':
238 print (info->stream, "0x%x",
239 (unsigned)EXTRACT_UTYPE_IMM (l) >> RISCV_IMM_BITS);
240 break;
241
242 case 'm':
243 arg_print (info, EXTRACT_OPERAND (RM, l),
244 riscv_rm, ARRAY_SIZE (riscv_rm));
245 break;
246
247 case 'P':
248 arg_print (info, EXTRACT_OPERAND (PRED, l),
249 riscv_pred_succ, ARRAY_SIZE (riscv_pred_succ));
250 break;
251
252 case 'Q':
253 arg_print (info, EXTRACT_OPERAND (SUCC, l),
254 riscv_pred_succ, ARRAY_SIZE (riscv_pred_succ));
255 break;
256
257 case 'o':
258 maybe_print_address (pd, rs1, EXTRACT_ITYPE_IMM (l));
b52d3cfc 259 /* Fall through. */
e23eba97
NC
260 case 'j':
261 if (((l & MASK_ADDI) == MATCH_ADDI && rs1 != 0)
262 || (l & MASK_JALR) == MATCH_JALR)
263 maybe_print_address (pd, rs1, EXTRACT_ITYPE_IMM (l));
264 print (info->stream, "%d", (int)EXTRACT_ITYPE_IMM (l));
265 break;
266
267 case 'q':
268 maybe_print_address (pd, rs1, EXTRACT_STYPE_IMM (l));
269 print (info->stream, "%d", (int)EXTRACT_STYPE_IMM (l));
270 break;
271
272 case 'a':
273 info->target = EXTRACT_UJTYPE_IMM (l) + pc;
274 (*info->print_address_func) (info->target, info);
275 break;
276
277 case 'p':
278 info->target = EXTRACT_SBTYPE_IMM (l) + pc;
279 (*info->print_address_func) (info->target, info);
280 break;
281
282 case 'd':
283 if ((l & MASK_AUIPC) == MATCH_AUIPC)
284 pd->hi_addr[rd] = pc + EXTRACT_UTYPE_IMM (l);
285 else if ((l & MASK_LUI) == MATCH_LUI)
286 pd->hi_addr[rd] = EXTRACT_UTYPE_IMM (l);
287 else if ((l & MASK_C_LUI) == MATCH_C_LUI)
288 pd->hi_addr[rd] = EXTRACT_RVC_LUI_IMM (l);
289 print (info->stream, "%s", riscv_gpr_names[rd]);
290 break;
291
292 case 'z':
293 print (info->stream, "%s", riscv_gpr_names[0]);
294 break;
295
296 case '>':
297 print (info->stream, "0x%x", (int)EXTRACT_OPERAND (SHAMT, l));
298 break;
299
300 case '<':
301 print (info->stream, "0x%x", (int)EXTRACT_OPERAND (SHAMTW, l));
302 break;
303
304 case 'S':
305 case 'U':
306 print (info->stream, "%s", riscv_fpr_names[rs1]);
307 break;
308
309 case 'T':
310 print (info->stream, "%s", riscv_fpr_names[EXTRACT_OPERAND (RS2, l)]);
311 break;
312
313 case 'D':
314 print (info->stream, "%s", riscv_fpr_names[rd]);
315 break;
316
317 case 'R':
318 print (info->stream, "%s", riscv_fpr_names[EXTRACT_OPERAND (RS3, l)]);
319 break;
320
321 case 'E':
322 {
323 const char* csr_name = NULL;
324 unsigned int csr = EXTRACT_OPERAND (CSR, l);
325 switch (csr)
326 {
327#define DECLARE_CSR(name, num) case num: csr_name = #name; break;
328#include "opcode/riscv-opc.h"
329#undef DECLARE_CSR
330 }
331 if (csr_name)
332 print (info->stream, "%s", csr_name);
333 else
334 print (info->stream, "0x%x", csr);
335 break;
336 }
337
338 case 'Z':
339 print (info->stream, "%d", rs1);
340 break;
341
342 default:
343 /* xgettext:c-format */
344 print (info->stream, _("# internal error, undefined modifier (%c)"),
345 *d);
346 return;
347 }
348 }
349}
350
351/* Print the RISC-V instruction at address MEMADDR in debugged memory,
352 on using INFO. Returns length of the instruction, in bytes.
353 BIGENDIAN must be 1 if this is big-endian code, 0 if
354 this is little-endian code. */
355
356static int
357riscv_disassemble_insn (bfd_vma memaddr, insn_t word, disassemble_info *info)
358{
359 const struct riscv_opcode *op;
360 static bfd_boolean init = 0;
361 static const struct riscv_opcode *riscv_hash[OP_MASK_OP + 1];
362 struct riscv_private_data *pd;
363 int insnlen;
364
365#define OP_HASH_IDX(i) ((i) & (riscv_insn_length (i) == 2 ? 0x3 : OP_MASK_OP))
366
367 /* Build a hash table to shorten the search time. */
368 if (! init)
369 {
370 for (op = riscv_opcodes; op->name; op++)
371 if (!riscv_hash[OP_HASH_IDX (op->match)])
372 riscv_hash[OP_HASH_IDX (op->match)] = op;
373
374 init = 1;
375 }
376
377 if (info->private_data == NULL)
378 {
379 int i;
380
381 pd = info->private_data = xcalloc (1, sizeof (struct riscv_private_data));
382 pd->gp = -1;
383 pd->print_addr = -1;
384 for (i = 0; i < (int)ARRAY_SIZE (pd->hi_addr); i++)
385 pd->hi_addr[i] = -1;
386
387 for (i = 0; i < info->symtab_size; i++)
b5292032 388 if (strcmp (bfd_asymbol_name (info->symtab[i]), RISCV_GP_SYMBOL) == 0)
e23eba97
NC
389 pd->gp = bfd_asymbol_value (info->symtab[i]);
390 }
391 else
392 pd = info->private_data;
393
394 insnlen = riscv_insn_length (word);
395
396 info->bytes_per_chunk = insnlen % 4 == 0 ? 4 : 2;
397 info->bytes_per_line = 8;
398 info->display_endian = info->endian;
399 info->insn_info_valid = 1;
400 info->branch_delay_insns = 0;
401 info->data_size = 0;
402 info->insn_type = dis_nonbranch;
403 info->target = 0;
404 info->target2 = 0;
405
406 op = riscv_hash[OP_HASH_IDX (word)];
407 if (op != NULL)
408 {
409 int xlen = 0;
410
2922d21d
AW
411 /* If XLEN is not known, get its value from the ELF class. */
412 if (info->mach == bfd_mach_riscv64)
413 xlen = 64;
414 else if (info->mach == bfd_mach_riscv32)
415 xlen = 32;
416 else if (info->section != NULL)
e23eba97
NC
417 {
418 Elf_Internal_Ehdr *ehdr = elf_elfheader (info->section->owner);
419 xlen = ehdr->e_ident[EI_CLASS] == ELFCLASS64 ? 64 : 32;
420 }
421
422 for (; op->name; op++)
423 {
424 /* Does the opcode match? */
425 if (! (op->match_func) (op, word))
426 continue;
427 /* Is this a pseudo-instruction and may we print it as such? */
428 if (no_aliases && (op->pinfo & INSN_ALIAS))
429 continue;
430 /* Is this instruction restricted to a certain value of XLEN? */
431 if (isdigit (op->subset[0]) && atoi (op->subset) != xlen)
432 continue;
433
434 /* It's a match. */
435 (*info->fprintf_func) (info->stream, "%s", op->name);
436 print_insn_args (op->args, word, memaddr, info);
437
438 /* Try to disassemble multi-instruction addressing sequences. */
439 if (pd->print_addr != (bfd_vma)-1)
440 {
441 info->target = pd->print_addr;
442 (*info->fprintf_func) (info->stream, " # ");
443 (*info->print_address_func) (info->target, info);
444 pd->print_addr = -1;
445 }
446
447 return insnlen;
448 }
449 }
450
451 /* We did not find a match, so just print the instruction bits. */
452 info->insn_type = dis_noninsn;
453 (*info->fprintf_func) (info->stream, "0x%llx", (unsigned long long)word);
454 return insnlen;
455}
456
457int
458print_insn_riscv (bfd_vma memaddr, struct disassemble_info *info)
459{
460 bfd_byte packet[2];
461 insn_t insn = 0;
462 bfd_vma n;
463 int status;
464
465 if (info->disassembler_options != NULL)
466 {
467 parse_riscv_dis_options (info->disassembler_options);
468 /* Avoid repeatedly parsing the options. */
469 info->disassembler_options = NULL;
470 }
471 else if (riscv_gpr_names == NULL)
472 set_default_riscv_dis_options ();
473
474 /* Instructions are a sequence of 2-byte packets in little-endian order. */
475 for (n = 0; n < sizeof (insn) && n < riscv_insn_length (insn); n += 2)
476 {
477 status = (*info->read_memory_func) (memaddr + n, packet, 2, info);
478 if (status != 0)
479 {
480 /* Don't fail just because we fell off the end. */
481 if (n > 0)
482 break;
483 (*info->memory_error_func) (status, memaddr, info);
484 return status;
485 }
486
487 insn |= ((insn_t) bfd_getl16 (packet)) << (8 * n);
488 }
489
490 return riscv_disassemble_insn (memaddr, insn, info);
491}
492
493void
494print_riscv_disassembler_options (FILE *stream)
495{
496 fprintf (stream, _("\n\
497The following RISC-V-specific disassembler options are supported for use\n\
498with the -M switch (multiple options should be separated by commas):\n"));
499
500 fprintf (stream, _("\n\
7cbc739c 501 numeric Print numeric register names, rather than ABI names.\n"));
e23eba97
NC
502
503 fprintf (stream, _("\n\
504 no-aliases Disassemble only into canonical instructions, rather\n\
505 than into pseudoinstructions.\n"));
506
507 fprintf (stream, _("\n"));
508}