Update year range in copyright notice of binutils files
[binutils-gdb.git] / opcodes / riscv-dis.c
bloba511ccb6d0774d08eee5f61ce6a27fd6c63cee1a
1 /* RISC-V disassembler
2 Copyright (C) 2011-2024 Free Software Foundation, Inc.
4 Contributed by Andrew Waterman (andrew@sifive.com).
5 Based on MIPS target.
7 This file is part of the GNU opcodes library.
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.
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.
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/>. */
23 #include "sysdep.h"
24 #include "disassemble.h"
25 #include "libiberty.h"
26 #include "opcode/riscv.h"
27 #include "opintl.h"
28 #include "elf-bfd.h"
29 #include "elf/riscv.h"
30 #include "elfxx-riscv.h"
32 #include <stdint.h>
33 #include <ctype.h>
35 /* Current XLEN for the disassembler. */
36 static unsigned xlen = 0;
38 /* Default ISA specification version (constant as of now). */
39 static enum riscv_spec_class default_isa_spec = ISA_SPEC_CLASS_DRAFT - 1;
41 /* Default privileged specification
42 (as specified by the ELF attributes or the `priv-spec' option). */
43 static enum riscv_spec_class default_priv_spec = PRIV_SPEC_CLASS_NONE;
45 static riscv_subset_list_t riscv_subsets;
46 static riscv_parse_subset_t riscv_rps_dis =
48 &riscv_subsets, /* subset_list. */
49 opcodes_error_handler,/* error_handler. */
50 &xlen, /* xlen. */
51 &default_isa_spec, /* isa_spec. */
52 false, /* check_unknown_prefixed_ext. */
55 struct riscv_private_data
57 bfd_vma gp;
58 bfd_vma print_addr;
59 bfd_vma hi_addr[OP_MASK_RD + 1];
60 bool to_print_addr;
61 bool has_gp;
64 /* Used for mapping symbols. */
65 static int last_map_symbol = -1;
66 static bfd_vma last_stop_offset = 0;
67 static bfd_vma last_map_symbol_boundary = 0;
68 static enum riscv_seg_mstate last_map_state = MAP_NONE;
69 static asection *last_map_section = NULL;
71 /* Register names as used by the disassembler. */
72 static const char (*riscv_gpr_names)[NRC];
73 static const char (*riscv_fpr_names)[NRC];
75 /* If set, disassemble as most general instruction. */
76 static bool no_aliases = false;
79 /* Set default RISC-V disassembler options. */
81 static void
82 set_default_riscv_dis_options (void)
84 riscv_gpr_names = riscv_gpr_names_abi;
85 riscv_fpr_names = riscv_fpr_names_abi;
86 no_aliases = false;
89 /* Parse RISC-V disassembler option (without arguments). */
91 static bool
92 parse_riscv_dis_option_without_args (const char *option)
94 if (strcmp (option, "no-aliases") == 0)
95 no_aliases = true;
96 else if (strcmp (option, "numeric") == 0)
98 riscv_gpr_names = riscv_gpr_names_numeric;
99 riscv_fpr_names = riscv_fpr_names_numeric;
101 else
102 return false;
103 return true;
106 /* Parse RISC-V disassembler option (possibly with arguments). */
108 static void
109 parse_riscv_dis_option (const char *option)
111 char *equal, *value;
113 if (parse_riscv_dis_option_without_args (option))
114 return;
116 equal = strchr (option, '=');
117 if (equal == NULL)
119 /* The option without '=' should be defined above. */
120 opcodes_error_handler (_("unrecognized disassembler option: %s"), option);
121 return;
123 if (equal == option
124 || *(equal + 1) == '\0')
126 /* Invalid options with '=', no option name before '=',
127 and no value after '='. */
128 opcodes_error_handler (_("unrecognized disassembler option with '=': %s"),
129 option);
130 return;
133 *equal = '\0';
134 value = equal + 1;
135 if (strcmp (option, "priv-spec") == 0)
137 enum riscv_spec_class priv_spec = PRIV_SPEC_CLASS_NONE;
138 const char *name = NULL;
140 RISCV_GET_PRIV_SPEC_CLASS (value, priv_spec);
141 if (priv_spec == PRIV_SPEC_CLASS_NONE)
142 opcodes_error_handler (_("unknown privileged spec set by %s=%s"),
143 option, value);
144 else if (default_priv_spec == PRIV_SPEC_CLASS_NONE)
145 default_priv_spec = priv_spec;
146 else if (default_priv_spec != priv_spec)
148 RISCV_GET_PRIV_SPEC_NAME (name, default_priv_spec);
149 opcodes_error_handler (_("mis-matched privilege spec set by %s=%s, "
150 "the elf privilege attribute is %s"),
151 option, value, name);
154 else
156 /* xgettext:c-format */
157 opcodes_error_handler (_("unrecognized disassembler option: %s"), option);
161 /* Parse RISC-V disassembler options. */
163 static void
164 parse_riscv_dis_options (const char *opts_in)
166 char *opts = xstrdup (opts_in), *opt = opts, *opt_end = opts;
168 set_default_riscv_dis_options ();
170 for ( ; opt_end != NULL; opt = opt_end + 1)
172 if ((opt_end = strchr (opt, ',')) != NULL)
173 *opt_end = 0;
174 parse_riscv_dis_option (opt);
177 free (opts);
180 /* Print one argument from an array. */
182 static void
183 arg_print (struct disassemble_info *info, unsigned long val,
184 const char* const* array, size_t size)
186 const char *s = val >= size || array[val] == NULL ? "unknown" : array[val];
187 (*info->fprintf_styled_func) (info->stream, dis_style_text, "%s", s);
190 /* If we need to print an address, set its value and state. */
192 static void
193 maybe_print_address (struct riscv_private_data *pd, int base_reg, int offset,
194 int wide)
196 if (pd->hi_addr[base_reg] != (bfd_vma)-1)
198 pd->print_addr = (base_reg != 0 ? pd->hi_addr[base_reg] : 0) + offset;
199 pd->hi_addr[base_reg] = -1;
201 else if (base_reg == X_GP && pd->has_gp)
202 pd->print_addr = pd->gp + offset;
203 else if (base_reg == X_TP || base_reg == 0)
204 pd->print_addr = offset;
205 else
206 return; /* Don't print the address. */
207 pd->to_print_addr = true;
209 /* Sign-extend a 32-bit value to a 64-bit value. */
210 if (wide)
211 pd->print_addr = (bfd_vma)(int32_t) pd->print_addr;
213 /* Fit into a 32-bit value on RV32. */
214 if (xlen == 32)
215 pd->print_addr = (bfd_vma)(uint32_t)pd->print_addr;
218 /* Print insn arguments for 32/64-bit code. */
220 static void
221 print_insn_args (const char *oparg, insn_t l, bfd_vma pc, disassemble_info *info)
223 struct riscv_private_data *pd = info->private_data;
224 int rs1 = (l >> OP_SH_RS1) & OP_MASK_RS1;
225 int rd = (l >> OP_SH_RD) & OP_MASK_RD;
226 fprintf_styled_ftype print = info->fprintf_styled_func;
227 const char *opargStart;
229 if (*oparg != '\0')
230 print (info->stream, dis_style_text, "\t");
232 for (; *oparg != '\0'; oparg++)
234 opargStart = oparg;
235 switch (*oparg)
237 case 'C': /* RVC */
238 switch (*++oparg)
240 case 's': /* RS1 x8-x15. */
241 case 'w': /* RS1 x8-x15. */
242 print (info->stream, dis_style_register, "%s",
243 riscv_gpr_names[EXTRACT_OPERAND (CRS1S, l) + 8]);
244 break;
245 case 't': /* RS2 x8-x15. */
246 case 'x': /* RS2 x8-x15. */
247 print (info->stream, dis_style_register, "%s",
248 riscv_gpr_names[EXTRACT_OPERAND (CRS2S, l) + 8]);
249 break;
250 case 'U': /* RS1, constrained to equal RD. */
251 print (info->stream, dis_style_register,
252 "%s", riscv_gpr_names[rd]);
253 break;
254 case 'c': /* RS1, constrained to equal sp. */
255 print (info->stream, dis_style_register, "%s",
256 riscv_gpr_names[X_SP]);
257 break;
258 case 'V': /* RS2 */
259 print (info->stream, dis_style_register, "%s",
260 riscv_gpr_names[EXTRACT_OPERAND (CRS2, l)]);
261 break;
262 case 'o':
263 case 'j':
264 if (((l & MASK_C_ADDI) == MATCH_C_ADDI) && rd != 0)
265 maybe_print_address (pd, rd, EXTRACT_CITYPE_IMM (l), 0);
266 if (info->mach == bfd_mach_riscv64
267 && ((l & MASK_C_ADDIW) == MATCH_C_ADDIW) && rd != 0)
268 maybe_print_address (pd, rd, EXTRACT_CITYPE_IMM (l), 1);
269 print (info->stream, dis_style_immediate, "%d",
270 (int)EXTRACT_CITYPE_IMM (l));
271 break;
272 case 'k':
273 print (info->stream, dis_style_address_offset, "%d",
274 (int)EXTRACT_CLTYPE_LW_IMM (l));
275 break;
276 case 'l':
277 print (info->stream, dis_style_address_offset, "%d",
278 (int)EXTRACT_CLTYPE_LD_IMM (l));
279 break;
280 case 'm':
281 print (info->stream, dis_style_address_offset, "%d",
282 (int)EXTRACT_CITYPE_LWSP_IMM (l));
283 break;
284 case 'n':
285 print (info->stream, dis_style_address_offset, "%d",
286 (int)EXTRACT_CITYPE_LDSP_IMM (l));
287 break;
288 case 'K':
289 print (info->stream, dis_style_immediate, "%d",
290 (int)EXTRACT_CIWTYPE_ADDI4SPN_IMM (l));
291 break;
292 case 'L':
293 print (info->stream, dis_style_immediate, "%d",
294 (int)EXTRACT_CITYPE_ADDI16SP_IMM (l));
295 break;
296 case 'M':
297 print (info->stream, dis_style_address_offset, "%d",
298 (int)EXTRACT_CSSTYPE_SWSP_IMM (l));
299 break;
300 case 'N':
301 print (info->stream, dis_style_address_offset, "%d",
302 (int)EXTRACT_CSSTYPE_SDSP_IMM (l));
303 break;
304 case 'p':
305 info->target = EXTRACT_CBTYPE_IMM (l) + pc;
306 (*info->print_address_func) (info->target, info);
307 break;
308 case 'a':
309 info->target = EXTRACT_CJTYPE_IMM (l) + pc;
310 (*info->print_address_func) (info->target, info);
311 break;
312 case 'u':
313 print (info->stream, dis_style_immediate, "0x%x",
314 (unsigned)(EXTRACT_CITYPE_IMM (l) & (RISCV_BIGIMM_REACH-1)));
315 break;
316 case '>':
317 print (info->stream, dis_style_immediate, "0x%x",
318 (unsigned)EXTRACT_CITYPE_IMM (l) & 0x3f);
319 break;
320 case '<':
321 print (info->stream, dis_style_immediate, "0x%x",
322 (unsigned)EXTRACT_CITYPE_IMM (l) & 0x1f);
323 break;
324 case 'T': /* Floating-point RS2. */
325 print (info->stream, dis_style_register, "%s",
326 riscv_fpr_names[EXTRACT_OPERAND (CRS2, l)]);
327 break;
328 case 'D': /* Floating-point RS2 x8-x15. */
329 print (info->stream, dis_style_register, "%s",
330 riscv_fpr_names[EXTRACT_OPERAND (CRS2S, l) + 8]);
331 break;
333 break;
335 case 'V': /* RVV */
336 switch (*++oparg)
338 case 'd':
339 case 'f':
340 print (info->stream, dis_style_register, "%s",
341 riscv_vecr_names_numeric[EXTRACT_OPERAND (VD, l)]);
342 break;
343 case 'e':
344 if (!EXTRACT_OPERAND (VWD, l))
345 print (info->stream, dis_style_register, "%s",
346 riscv_gpr_names[0]);
347 else
348 print (info->stream, dis_style_register, "%s",
349 riscv_vecr_names_numeric[EXTRACT_OPERAND (VD, l)]);
350 break;
351 case 's':
352 print (info->stream, dis_style_register, "%s",
353 riscv_vecr_names_numeric[EXTRACT_OPERAND (VS1, l)]);
354 break;
355 case 't':
356 case 'u': /* VS1 == VS2 already verified at this point. */
357 case 'v': /* VD == VS1 == VS2 already verified at this point. */
358 print (info->stream, dis_style_register, "%s",
359 riscv_vecr_names_numeric[EXTRACT_OPERAND (VS2, l)]);
360 break;
361 case '0':
362 print (info->stream, dis_style_register, "%s",
363 riscv_vecr_names_numeric[0]);
364 break;
365 case 'b':
366 case 'c':
368 int imm = (*oparg == 'b') ? EXTRACT_RVV_VB_IMM (l)
369 : EXTRACT_RVV_VC_IMM (l);
370 unsigned int imm_vlmul = EXTRACT_OPERAND (VLMUL, imm);
371 unsigned int imm_vsew = EXTRACT_OPERAND (VSEW, imm);
372 unsigned int imm_vta = EXTRACT_OPERAND (VTA, imm);
373 unsigned int imm_vma = EXTRACT_OPERAND (VMA, imm);
374 unsigned int imm_vtype_res = (imm >> 8);
376 if (imm_vsew < ARRAY_SIZE (riscv_vsew)
377 && imm_vlmul < ARRAY_SIZE (riscv_vlmul)
378 && imm_vta < ARRAY_SIZE (riscv_vta)
379 && imm_vma < ARRAY_SIZE (riscv_vma)
380 && !imm_vtype_res
381 && riscv_vsew[imm_vsew] != NULL
382 && riscv_vlmul[imm_vlmul] != NULL)
383 print (info->stream, dis_style_text, "%s,%s,%s,%s",
384 riscv_vsew[imm_vsew],
385 riscv_vlmul[imm_vlmul], riscv_vta[imm_vta],
386 riscv_vma[imm_vma]);
387 else
388 print (info->stream, dis_style_immediate, "%d", imm);
390 break;
391 case 'i':
392 print (info->stream, dis_style_immediate, "%d",
393 (int)EXTRACT_RVV_VI_IMM (l));
394 break;
395 case 'j':
396 print (info->stream, dis_style_immediate, "%d",
397 (int)EXTRACT_RVV_VI_UIMM (l));
398 break;
399 case 'k':
400 print (info->stream, dis_style_immediate, "%d",
401 (int)EXTRACT_RVV_OFFSET (l));
402 break;
403 case 'l':
404 print (info->stream, dis_style_immediate, "%d",
405 (int)EXTRACT_RVV_VI_UIMM6 (l));
406 break;
407 case 'm':
408 if (!EXTRACT_OPERAND (VMASK, l))
410 print (info->stream, dis_style_text, ",");
411 print (info->stream, dis_style_register, "%s",
412 riscv_vecm_names_numeric[0]);
414 break;
416 break;
418 case ',':
419 case '(':
420 case ')':
421 case '[':
422 case ']':
423 print (info->stream, dis_style_text, "%c", *oparg);
424 break;
426 case '0':
427 /* Only print constant 0 if it is the last argument. */
428 if (!oparg[1])
429 print (info->stream, dis_style_immediate, "0");
430 break;
432 case 's':
433 if ((l & MASK_JALR) == MATCH_JALR)
434 maybe_print_address (pd, rs1, EXTRACT_ITYPE_IMM (l), 0);
435 print (info->stream, dis_style_register, "%s", riscv_gpr_names[rs1]);
436 break;
438 case 't':
439 print (info->stream, dis_style_register, "%s",
440 riscv_gpr_names[EXTRACT_OPERAND (RS2, l)]);
441 break;
443 case 'u':
444 print (info->stream, dis_style_immediate, "0x%x",
445 (unsigned)EXTRACT_UTYPE_IMM (l) >> RISCV_IMM_BITS);
446 break;
448 case 'm':
449 arg_print (info, EXTRACT_OPERAND (RM, l),
450 riscv_rm, ARRAY_SIZE (riscv_rm));
451 break;
453 case 'P':
454 arg_print (info, EXTRACT_OPERAND (PRED, l),
455 riscv_pred_succ, ARRAY_SIZE (riscv_pred_succ));
456 break;
458 case 'Q':
459 arg_print (info, EXTRACT_OPERAND (SUCC, l),
460 riscv_pred_succ, ARRAY_SIZE (riscv_pred_succ));
461 break;
463 case 'o':
464 maybe_print_address (pd, rs1, EXTRACT_ITYPE_IMM (l), 0);
465 /* Fall through. */
466 case 'j':
467 if (((l & MASK_ADDI) == MATCH_ADDI && rs1 != 0)
468 || (l & MASK_JALR) == MATCH_JALR)
469 maybe_print_address (pd, rs1, EXTRACT_ITYPE_IMM (l), 0);
470 if (info->mach == bfd_mach_riscv64
471 && ((l & MASK_ADDIW) == MATCH_ADDIW) && rs1 != 0)
472 maybe_print_address (pd, rs1, EXTRACT_ITYPE_IMM (l), 1);
473 print (info->stream, dis_style_immediate, "%d",
474 (int)EXTRACT_ITYPE_IMM (l));
475 break;
477 case 'q':
478 maybe_print_address (pd, rs1, EXTRACT_STYPE_IMM (l), 0);
479 print (info->stream, dis_style_address_offset, "%d",
480 (int)EXTRACT_STYPE_IMM (l));
481 break;
483 case 'a':
484 info->target = EXTRACT_JTYPE_IMM (l) + pc;
485 (*info->print_address_func) (info->target, info);
486 break;
488 case 'p':
489 info->target = EXTRACT_BTYPE_IMM (l) + pc;
490 (*info->print_address_func) (info->target, info);
491 break;
493 case 'd':
494 if ((l & MASK_AUIPC) == MATCH_AUIPC)
495 pd->hi_addr[rd] = pc + EXTRACT_UTYPE_IMM (l);
496 else if ((l & MASK_LUI) == MATCH_LUI)
497 pd->hi_addr[rd] = EXTRACT_UTYPE_IMM (l);
498 else if ((l & MASK_C_LUI) == MATCH_C_LUI)
499 pd->hi_addr[rd] = EXTRACT_CITYPE_LUI_IMM (l);
500 print (info->stream, dis_style_register, "%s", riscv_gpr_names[rd]);
501 break;
503 case 'y':
504 print (info->stream, dis_style_immediate, "0x%x",
505 EXTRACT_OPERAND (BS, l));
506 break;
508 case 'z':
509 print (info->stream, dis_style_register, "%s", riscv_gpr_names[0]);
510 break;
512 case '>':
513 print (info->stream, dis_style_immediate, "0x%x",
514 EXTRACT_OPERAND (SHAMT, l));
515 break;
517 case '<':
518 print (info->stream, dis_style_immediate, "0x%x",
519 EXTRACT_OPERAND (SHAMTW, l));
520 break;
522 case 'S':
523 case 'U':
524 print (info->stream, dis_style_register, "%s", riscv_fpr_names[rs1]);
525 break;
527 case 'T':
528 print (info->stream, dis_style_register, "%s",
529 riscv_fpr_names[EXTRACT_OPERAND (RS2, l)]);
530 break;
532 case 'D':
533 print (info->stream, dis_style_register, "%s", riscv_fpr_names[rd]);
534 break;
536 case 'R':
537 print (info->stream, dis_style_register, "%s",
538 riscv_fpr_names[EXTRACT_OPERAND (RS3, l)]);
539 break;
541 case 'E':
543 static const char *riscv_csr_hash[4096]; /* Total 2^12 CSRs. */
544 static bool init_csr = false;
545 unsigned int csr = EXTRACT_OPERAND (CSR, l);
547 if (!init_csr)
549 unsigned int i;
550 for (i = 0; i < 4096; i++)
551 riscv_csr_hash[i] = NULL;
553 /* Set to the newest privileged version. */
554 if (default_priv_spec == PRIV_SPEC_CLASS_NONE)
555 default_priv_spec = PRIV_SPEC_CLASS_DRAFT - 1;
557 #define DECLARE_CSR(name, num, class, define_version, abort_version) \
558 if (riscv_csr_hash[num] == NULL \
559 && ((define_version == PRIV_SPEC_CLASS_NONE \
560 && abort_version == PRIV_SPEC_CLASS_NONE) \
561 || (default_priv_spec >= define_version \
562 && default_priv_spec < abort_version))) \
563 riscv_csr_hash[num] = #name;
564 #define DECLARE_CSR_ALIAS(name, num, class, define_version, abort_version) \
565 DECLARE_CSR (name, num, class, define_version, abort_version)
566 #include "opcode/riscv-opc.h"
567 #undef DECLARE_CSR
570 if (riscv_csr_hash[csr] != NULL)
571 if (riscv_subset_supports (&riscv_rps_dis, "xtheadvector")
572 && (csr == CSR_VSTART
573 || csr == CSR_VXSAT
574 || csr == CSR_VXRM
575 || csr == CSR_VL
576 || csr == CSR_VTYPE
577 || csr == CSR_VLENB))
578 print (info->stream, dis_style_register, "%s",
579 concat ("th.", riscv_csr_hash[csr], NULL));
580 else
581 print (info->stream, dis_style_register, "%s",
582 riscv_csr_hash[csr]);
583 else
584 print (info->stream, dis_style_immediate, "0x%x", csr);
585 break;
588 case 'Y':
589 print (info->stream, dis_style_immediate, "0x%x",
590 EXTRACT_OPERAND (RNUM, l));
591 break;
593 case 'Z':
594 print (info->stream, dis_style_immediate, "%d", rs1);
595 break;
597 case 'W': /* Various operands for standard z extensions. */
598 switch (*++oparg)
600 case 'i':
601 switch (*++oparg)
603 case 'f':
604 print (info->stream, dis_style_address_offset, "%d",
605 (int) EXTRACT_STYPE_IMM (l));
606 break;
607 default:
608 goto undefined_modifier;
610 break;
611 case 'f':
612 switch (*++oparg)
614 case 'v':
615 if (riscv_fli_symval[rs1])
616 print (info->stream, dis_style_text, "%s",
617 riscv_fli_symval[rs1]);
618 else
619 print (info->stream, dis_style_immediate, "%a",
620 riscv_fli_numval[rs1]);
621 break;
622 default:
623 goto undefined_modifier;
625 break;
626 case 'c': /* Zcb extension 16 bits length instruction fields. */
627 switch (*++oparg)
629 case 'b':
630 print (info->stream, dis_style_immediate, "%d",
631 (int)EXTRACT_ZCB_BYTE_UIMM (l));
632 break;
633 case 'h':
634 print (info->stream, dis_style_immediate, "%d",
635 (int)EXTRACT_ZCB_HALFWORD_UIMM (l));
636 break;
637 default:
638 goto undefined_modifier;
640 break;
641 default:
642 goto undefined_modifier;
644 break;
646 case 'X': /* Vendor-specific operands. */
647 switch (*++oparg)
649 case 't': /* Vendor-specific (T-head) operands. */
651 size_t n;
652 size_t s;
653 bool sign;
654 switch (*++oparg)
656 case 'l': /* Integer immediate, literal. */
657 oparg++;
658 while (*oparg && *oparg != ',')
660 print (info->stream, dis_style_immediate, "%c", *oparg);
661 oparg++;
663 oparg--;
664 break;
665 case 's': /* Integer immediate, 'XsN@S' ... N-bit signed immediate at bit S. */
666 sign = true;
667 goto print_imm;
668 case 'u': /* Integer immediate, 'XuN@S' ... N-bit unsigned immediate at bit S. */
669 sign = false;
670 goto print_imm;
671 print_imm:
672 n = strtol (oparg + 1, (char **)&oparg, 10);
673 if (*oparg != '@')
674 goto undefined_modifier;
675 s = strtol (oparg + 1, (char **)&oparg, 10);
676 oparg--;
678 if (!sign)
679 print (info->stream, dis_style_immediate, "%lu",
680 (unsigned long)EXTRACT_U_IMM (n, s, l));
681 else
682 print (info->stream, dis_style_immediate, "%li",
683 (signed long)EXTRACT_S_IMM (n, s, l));
684 break;
685 default:
686 goto undefined_modifier;
689 break;
690 case 'c': /* Vendor-specific (CORE-V) operands. */
691 switch (*++oparg)
693 case '2':
694 print (info->stream, dis_style_immediate, "%d",
695 ((int) EXTRACT_CV_IS2_UIMM5 (l)));
696 break;
697 case '3':
698 print (info->stream, dis_style_immediate, "%d",
699 ((int) EXTRACT_CV_IS3_UIMM5 (l)));
700 break;
701 default:
702 goto undefined_modifier;
704 break;
705 case 's': /* Vendor-specific (SiFive) operands. */
706 switch (*++oparg)
708 /* SiFive vector coprocessor interface. */
709 case 'd':
710 print (info->stream, dis_style_register, "0x%x",
711 (unsigned) EXTRACT_OPERAND (RD, l));
712 break;
713 case 't':
714 print (info->stream, dis_style_register, "0x%x",
715 (unsigned) EXTRACT_OPERAND (RS2, l));
716 break;
717 case 'O':
718 switch (*++oparg)
720 case '2':
721 print (info->stream, dis_style_register, "0x%x",
722 (unsigned) EXTRACT_OPERAND (XSO2, l));
723 break;
724 case '1':
725 print (info->stream, dis_style_register, "0x%x",
726 (unsigned) EXTRACT_OPERAND (XSO1, l));
727 break;
729 break;
731 break;
732 default:
733 goto undefined_modifier;
735 break;
737 default:
738 undefined_modifier:
739 /* xgettext:c-format */
740 print (info->stream, dis_style_text,
741 _("# internal error, undefined modifier (%c)"),
742 *opargStart);
743 return;
748 /* Print the RISC-V instruction at address MEMADDR in debugged memory,
749 on using INFO. Returns length of the instruction, in bytes.
750 BIGENDIAN must be 1 if this is big-endian code, 0 if
751 this is little-endian code. */
753 static int
754 riscv_disassemble_insn (bfd_vma memaddr,
755 insn_t word,
756 const bfd_byte *packet,
757 disassemble_info *info)
759 const struct riscv_opcode *op;
760 static bool init = false;
761 static const struct riscv_opcode *riscv_hash[OP_MASK_OP + 1];
762 struct riscv_private_data *pd = info->private_data;
763 int insnlen, i;
764 bool printed;
766 #define OP_HASH_IDX(i) ((i) & (riscv_insn_length (i) == 2 ? 0x3 : OP_MASK_OP))
768 /* Build a hash table to shorten the search time. */
769 if (! init)
771 for (op = riscv_opcodes; op->name; op++)
772 if (!riscv_hash[OP_HASH_IDX (op->match)])
773 riscv_hash[OP_HASH_IDX (op->match)] = op;
775 init = true;
778 insnlen = riscv_insn_length (word);
780 /* RISC-V instructions are always little-endian. */
781 info->endian_code = BFD_ENDIAN_LITTLE;
783 info->bytes_per_chunk = insnlen % 4 == 0 ? 4 : 2;
784 info->bytes_per_line = 8;
785 /* We don't support constant pools, so this must be code. */
786 info->display_endian = info->endian_code;
787 info->insn_info_valid = 1;
788 info->branch_delay_insns = 0;
789 info->data_size = 0;
790 info->insn_type = dis_nonbranch;
791 info->target = 0;
792 info->target2 = 0;
794 op = riscv_hash[OP_HASH_IDX (word)];
795 if (op != NULL)
797 /* If XLEN is not known, get its value from the ELF class. */
798 if (info->mach == bfd_mach_riscv64)
799 xlen = 64;
800 else if (info->mach == bfd_mach_riscv32)
801 xlen = 32;
802 else if (info->section != NULL)
804 Elf_Internal_Ehdr *ehdr = elf_elfheader (info->section->owner);
805 xlen = ehdr->e_ident[EI_CLASS] == ELFCLASS64 ? 64 : 32;
808 /* If arch has the Zfinx extension, replace FPR with GPR. */
809 if (riscv_subset_supports (&riscv_rps_dis, "zfinx"))
810 riscv_fpr_names = riscv_gpr_names;
811 else
812 riscv_fpr_names = riscv_gpr_names == riscv_gpr_names_abi ?
813 riscv_fpr_names_abi : riscv_fpr_names_numeric;
815 for (; op->name; op++)
817 /* Ignore macro insns. */
818 if (op->pinfo == INSN_MACRO)
819 continue;
820 /* Does the opcode match? */
821 if (! (op->match_func) (op, word))
822 continue;
823 /* Is this a pseudo-instruction and may we print it as such? */
824 if (no_aliases && (op->pinfo & INSN_ALIAS))
825 continue;
826 /* Is this instruction restricted to a certain value of XLEN? */
827 if ((op->xlen_requirement != 0) && (op->xlen_requirement != xlen))
828 continue;
829 /* Is this instruction supported by the current architecture? */
830 if (!riscv_multi_subset_supports (&riscv_rps_dis, op->insn_class))
831 continue;
833 /* It's a match. */
834 (*info->fprintf_styled_func) (info->stream, dis_style_mnemonic,
835 "%s", op->name);
836 print_insn_args (op->args, word, memaddr, info);
838 /* Try to disassemble multi-instruction addressing sequences. */
839 if (pd->to_print_addr)
841 info->target = pd->print_addr;
842 (*info->fprintf_styled_func)
843 (info->stream, dis_style_comment_start, " # ");
844 (*info->print_address_func) (info->target, info);
845 pd->to_print_addr = false;
848 /* Finish filling out insn_info fields. */
849 switch (op->pinfo & INSN_TYPE)
851 case INSN_BRANCH:
852 info->insn_type = dis_branch;
853 break;
854 case INSN_CONDBRANCH:
855 info->insn_type = dis_condbranch;
856 break;
857 case INSN_JSR:
858 info->insn_type = dis_jsr;
859 break;
860 case INSN_DREF:
861 info->insn_type = dis_dref;
862 break;
863 default:
864 break;
867 if (op->pinfo & INSN_DATA_SIZE)
869 int size = ((op->pinfo & INSN_DATA_SIZE)
870 >> INSN_DATA_SIZE_SHIFT);
871 info->data_size = 1 << (size - 1);
874 return insnlen;
878 /* We did not find a match, so just print the instruction bits in
879 the shape of an assembler .insn directive. */
880 info->insn_type = dis_noninsn;
881 (*info->fprintf_styled_func)
882 (info->stream, dis_style_assembler_directive, ".insn");
883 (*info->fprintf_styled_func) (info->stream, dis_style_text, "\t");
884 (*info->fprintf_styled_func) (info->stream, dis_style_immediate,
885 "%d", insnlen);
886 (*info->fprintf_styled_func) (info->stream, dis_style_text, ", ");
887 (*info->fprintf_styled_func) (info->stream, dis_style_immediate, "0x");
888 for (i = insnlen, printed = false; i >= 2; )
890 i -= 2;
891 word = bfd_get_bits (packet + i, 16, false);
892 if (!word && !printed)
893 continue;
895 (*info->fprintf_styled_func) (info->stream, dis_style_immediate,
896 "%04x", (unsigned int) word);
897 printed = true;
900 return insnlen;
903 /* If we find the suitable mapping symbol update the STATE.
904 Otherwise, do nothing. */
906 static void
907 riscv_update_map_state (int n,
908 enum riscv_seg_mstate *state,
909 struct disassemble_info *info)
911 const char *name;
913 /* If the symbol is in a different section, ignore it. */
914 if (info->section != NULL
915 && info->section != info->symtab[n]->section)
916 return;
918 name = bfd_asymbol_name(info->symtab[n]);
919 if (strcmp (name, "$x") == 0)
920 *state = MAP_INSN;
921 else if (strcmp (name, "$d") == 0)
922 *state = MAP_DATA;
923 else if (strncmp (name, "$xrv", 4) == 0)
925 *state = MAP_INSN;
926 riscv_release_subset_list (&riscv_subsets);
928 /* ISA mapping string may be numbered, suffixed with '.n'. Do not
929 consider this as part of the ISA string. */
930 char *suffix = strchr (name, '.');
931 if (suffix)
933 int suffix_index = (int)(suffix - name);
934 char *name_substr = xmalloc (suffix_index + 1);
935 strncpy (name_substr, name, suffix_index);
936 name_substr[suffix_index] = '\0';
937 riscv_parse_subset (&riscv_rps_dis, name_substr + 2);
938 free (name_substr);
940 else
941 riscv_parse_subset (&riscv_rps_dis, name + 2);
945 /* Return true if we find the suitable mapping symbol.
946 Otherwise, return false. */
948 static bool
949 riscv_is_valid_mapping_symbol (int n,
950 struct disassemble_info *info)
952 const char *name;
954 /* If the symbol is in a different section, ignore it. */
955 if (info->section != NULL
956 && info->section != info->symtab[n]->section)
957 return false;
959 name = bfd_asymbol_name(info->symtab[n]);
960 return riscv_elf_is_mapping_symbols (name);
963 /* Check the sorted symbol table (sorted by the symbol value), find the
964 suitable mapping symbols. */
966 static enum riscv_seg_mstate
967 riscv_search_mapping_symbol (bfd_vma memaddr,
968 struct disassemble_info *info)
970 enum riscv_seg_mstate mstate;
971 bool from_last_map_symbol;
972 bool found = false;
973 int symbol = -1;
974 int n;
976 /* Return the last map state if the address is still within the range of the
977 last mapping symbol. */
978 if (last_map_section == info->section
979 && (memaddr < last_map_symbol_boundary))
980 return last_map_state;
982 last_map_section = info->section;
984 /* Decide whether to print the data or instruction by default, in case
985 we can not find the corresponding mapping symbols. */
986 mstate = MAP_DATA;
987 if ((info->section
988 && info->section->flags & SEC_CODE)
989 || !info->section)
990 mstate = MAP_INSN;
992 if (info->symtab_size == 0
993 || bfd_asymbol_flavour (*info->symtab) != bfd_target_elf_flavour)
994 return mstate;
996 /* Reset the last_map_symbol if we start to dump a new section. */
997 if (memaddr <= 0)
998 last_map_symbol = -1;
1000 /* If the last stop offset is different from the current one, then
1001 don't use the last_map_symbol to search. We usually reset the
1002 info->stop_offset when handling a new section. */
1003 from_last_map_symbol = (last_map_symbol >= 0
1004 && info->stop_offset == last_stop_offset);
1006 /* Start scanning at the start of the function, or wherever
1007 we finished last time. */
1008 n = info->symtab_pos + 1;
1009 if (from_last_map_symbol && n >= last_map_symbol)
1010 n = last_map_symbol;
1012 /* Find the suitable mapping symbol to dump. */
1013 for (; n < info->symtab_size; n++)
1015 bfd_vma addr = bfd_asymbol_value (info->symtab[n]);
1016 /* We have searched all possible symbols in the range. */
1017 if (addr > memaddr)
1018 break;
1019 if (riscv_is_valid_mapping_symbol (n, info))
1021 symbol = n;
1022 found = true;
1023 /* Do not stop searching, in case there are some mapping
1024 symbols have the same value, but have different names.
1025 Use the last one. */
1029 /* We can not find the suitable mapping symbol above. Therefore, we
1030 look forwards and try to find it again, but don't go past the start
1031 of the section. Otherwise a data section without mapping symbols
1032 can pick up a text mapping symbol of a preceeding section. */
1033 if (!found)
1035 n = info->symtab_pos;
1036 if (from_last_map_symbol && n >= last_map_symbol)
1037 n = last_map_symbol;
1039 for (; n >= 0; n--)
1041 bfd_vma addr = bfd_asymbol_value (info->symtab[n]);
1042 /* We have searched all possible symbols in the range. */
1043 if (addr < (info->section ? info->section->vma : 0))
1044 break;
1045 /* Stop searching once we find the closed mapping symbol. */
1046 if (riscv_is_valid_mapping_symbol (n, info))
1048 symbol = n;
1049 found = true;
1050 break;
1055 if (found)
1057 riscv_update_map_state (symbol, &mstate, info);
1059 /* Find the next mapping symbol to determine the boundary of this mapping
1060 symbol. */
1062 bool found_next = false;
1063 /* Try to found next mapping symbol. */
1064 for (n = symbol + 1; n < info->symtab_size; n++)
1066 if (info->symtab[symbol]->section != info->symtab[n]->section)
1067 continue;
1069 bfd_vma addr = bfd_asymbol_value (info->symtab[n]);
1070 const char *sym_name = bfd_asymbol_name(info->symtab[n]);
1071 if (sym_name[0] == '$' && (sym_name[1] == 'x' || sym_name[1] == 'd'))
1073 /* The next mapping symbol has been found, and it represents the
1074 boundary of this mapping symbol. */
1075 found_next = true;
1076 last_map_symbol_boundary = addr;
1077 break;
1081 /* No further mapping symbol has been found, indicating that the boundary
1082 of the current mapping symbol is the end of this section. */
1083 if (!found_next)
1084 last_map_symbol_boundary = info->section->vma + info->section->size;
1087 /* Save the information for next use. */
1088 last_map_symbol = symbol;
1089 last_stop_offset = info->stop_offset;
1091 return mstate;
1094 /* Decide which data size we should print. */
1096 static bfd_vma
1097 riscv_data_length (bfd_vma memaddr,
1098 disassemble_info *info)
1100 bfd_vma length;
1101 bool found = false;
1103 length = 4;
1104 if (info->symtab_size != 0
1105 && bfd_asymbol_flavour (*info->symtab) == bfd_target_elf_flavour
1106 && last_map_symbol >= 0)
1108 int n;
1109 enum riscv_seg_mstate m = MAP_NONE;
1110 for (n = last_map_symbol + 1; n < info->symtab_size; n++)
1112 bfd_vma addr = bfd_asymbol_value (info->symtab[n]);
1113 if (addr > memaddr
1114 && riscv_is_valid_mapping_symbol (n, info))
1116 if (addr - memaddr < length)
1117 length = addr - memaddr;
1118 found = true;
1119 riscv_update_map_state (n, &m, info);
1120 break;
1124 if (!found)
1126 /* Do not set the length which exceeds the section size. */
1127 bfd_vma offset = info->section->vma + info->section->size;
1128 offset -= memaddr;
1129 length = (offset < length) ? offset : length;
1131 length = length == 3 ? 2 : length;
1132 return length;
1135 /* Dump the data contents. */
1137 static int
1138 riscv_disassemble_data (bfd_vma memaddr ATTRIBUTE_UNUSED,
1139 insn_t data,
1140 const bfd_byte *packet ATTRIBUTE_UNUSED,
1141 disassemble_info *info)
1143 info->display_endian = info->endian;
1145 switch (info->bytes_per_chunk)
1147 case 1:
1148 info->bytes_per_line = 6;
1149 (*info->fprintf_styled_func)
1150 (info->stream, dis_style_assembler_directive, ".byte");
1151 (*info->fprintf_styled_func) (info->stream, dis_style_text, "\t");
1152 (*info->fprintf_styled_func) (info->stream, dis_style_immediate,
1153 "0x%02x", (unsigned)data);
1154 break;
1155 case 2:
1156 info->bytes_per_line = 8;
1157 (*info->fprintf_styled_func)
1158 (info->stream, dis_style_assembler_directive, ".short");
1159 (*info->fprintf_styled_func) (info->stream, dis_style_text, "\t");
1160 (*info->fprintf_styled_func)
1161 (info->stream, dis_style_immediate, "0x%04x", (unsigned) data);
1162 break;
1163 case 4:
1164 info->bytes_per_line = 8;
1165 (*info->fprintf_styled_func)
1166 (info->stream, dis_style_assembler_directive, ".word");
1167 (*info->fprintf_styled_func) (info->stream, dis_style_text, "\t");
1168 (*info->fprintf_styled_func)
1169 (info->stream, dis_style_immediate, "0x%08lx",
1170 (unsigned long) data);
1171 break;
1172 case 8:
1173 info->bytes_per_line = 8;
1174 (*info->fprintf_styled_func)
1175 (info->stream, dis_style_assembler_directive, ".dword");
1176 (*info->fprintf_styled_func) (info->stream, dis_style_text, "\t");
1177 (*info->fprintf_styled_func)
1178 (info->stream, dis_style_immediate, "0x%016llx",
1179 (unsigned long long) data);
1180 break;
1181 default:
1182 abort ();
1184 return info->bytes_per_chunk;
1187 static bool
1188 riscv_init_disasm_info (struct disassemble_info *info)
1190 int i;
1192 struct riscv_private_data *pd =
1193 xcalloc (1, sizeof (struct riscv_private_data));
1194 pd->gp = 0;
1195 pd->print_addr = 0;
1196 for (i = 0; i < (int) ARRAY_SIZE (pd->hi_addr); i++)
1197 pd->hi_addr[i] = -1;
1198 pd->to_print_addr = false;
1199 pd->has_gp = false;
1201 for (i = 0; i < info->symtab_size; i++)
1203 asymbol *sym = info->symtab[i];
1204 if (strcmp (bfd_asymbol_name (sym), RISCV_GP_SYMBOL) == 0)
1206 pd->gp = bfd_asymbol_value (sym);
1207 pd->has_gp = true;
1211 info->private_data = pd;
1212 return true;
1216 print_insn_riscv (bfd_vma memaddr, struct disassemble_info *info)
1218 bfd_byte packet[RISCV_MAX_INSN_LEN];
1219 insn_t insn = 0;
1220 bfd_vma dump_size;
1221 int status;
1222 enum riscv_seg_mstate mstate;
1223 int (*riscv_disassembler) (bfd_vma, insn_t, const bfd_byte *,
1224 struct disassemble_info *);
1226 if (info->disassembler_options != NULL)
1228 parse_riscv_dis_options (info->disassembler_options);
1229 /* Avoid repeatedly parsing the options. */
1230 info->disassembler_options = NULL;
1232 else if (riscv_gpr_names == NULL)
1233 set_default_riscv_dis_options ();
1235 if (info->private_data == NULL && !riscv_init_disasm_info (info))
1236 return -1;
1238 mstate = riscv_search_mapping_symbol (memaddr, info);
1239 /* Save the last mapping state. */
1240 last_map_state = mstate;
1242 /* Set the size to dump. */
1243 if (mstate == MAP_DATA
1244 && (info->flags & DISASSEMBLE_DATA) == 0)
1246 dump_size = riscv_data_length (memaddr, info);
1247 info->bytes_per_chunk = dump_size;
1248 riscv_disassembler = riscv_disassemble_data;
1250 else
1252 /* Get the first 2-bytes to check the lenghth of instruction. */
1253 status = (*info->read_memory_func) (memaddr, packet, 2, info);
1254 if (status != 0)
1256 (*info->memory_error_func) (status, memaddr, info);
1257 return -1;
1259 insn = (insn_t) bfd_getl16 (packet);
1260 dump_size = riscv_insn_length (insn);
1261 riscv_disassembler = riscv_disassemble_insn;
1264 /* Fetch the instruction to dump. */
1265 status = (*info->read_memory_func) (memaddr, packet, dump_size, info);
1266 if (status != 0)
1268 (*info->memory_error_func) (status, memaddr, info);
1269 return -1;
1271 insn = (insn_t) bfd_get_bits (packet, dump_size * 8, false);
1273 return (*riscv_disassembler) (memaddr, insn, packet, info);
1276 disassembler_ftype
1277 riscv_get_disassembler (bfd *abfd)
1279 const char *default_arch = "rv64gc";
1281 if (abfd && bfd_get_flavour (abfd) == bfd_target_elf_flavour)
1283 const char *sec_name = get_elf_backend_data (abfd)->obj_attrs_section;
1284 if (bfd_get_section_by_name (abfd, sec_name) != NULL)
1286 obj_attribute *attr = elf_known_obj_attributes_proc (abfd);
1287 unsigned int Tag_a = Tag_RISCV_priv_spec;
1288 unsigned int Tag_b = Tag_RISCV_priv_spec_minor;
1289 unsigned int Tag_c = Tag_RISCV_priv_spec_revision;
1290 riscv_get_priv_spec_class_from_numbers (attr[Tag_a].i,
1291 attr[Tag_b].i,
1292 attr[Tag_c].i,
1293 &default_priv_spec);
1294 default_arch = attr[Tag_RISCV_arch].s;
1298 riscv_release_subset_list (&riscv_subsets);
1299 riscv_parse_subset (&riscv_rps_dis, default_arch);
1300 return print_insn_riscv;
1303 /* Prevent use of the fake labels that are generated as part of the DWARF
1304 and for relaxable relocations in the assembler. */
1306 bool
1307 riscv_symbol_is_valid (asymbol * sym,
1308 struct disassemble_info * info ATTRIBUTE_UNUSED)
1310 const char * name;
1312 if (sym == NULL)
1313 return false;
1315 name = bfd_asymbol_name (sym);
1317 return (strcmp (name, RISCV_FAKE_LABEL_NAME) != 0
1318 && !riscv_elf_is_mapping_symbols (name));
1322 /* Indices into option argument vector for options accepting an argument.
1323 Use RISCV_OPTION_ARG_NONE for options accepting no argument. */
1325 typedef enum
1327 RISCV_OPTION_ARG_NONE = -1,
1328 RISCV_OPTION_ARG_PRIV_SPEC,
1330 RISCV_OPTION_ARG_COUNT
1331 } riscv_option_arg_t;
1333 /* Valid RISCV disassembler options. */
1335 static struct
1337 const char *name;
1338 const char *description;
1339 riscv_option_arg_t arg;
1340 } riscv_options[] =
1342 { "numeric",
1343 N_("Print numeric register names, rather than ABI names."),
1344 RISCV_OPTION_ARG_NONE },
1345 { "no-aliases",
1346 N_("Disassemble only into canonical instructions."),
1347 RISCV_OPTION_ARG_NONE },
1348 { "priv-spec=",
1349 N_("Print the CSR according to the chosen privilege spec."),
1350 RISCV_OPTION_ARG_PRIV_SPEC }
1353 /* Build the structure representing valid RISCV disassembler options.
1354 This is done dynamically for maintenance ease purpose; a static
1355 initializer would be unreadable. */
1357 const disasm_options_and_args_t *
1358 disassembler_options_riscv (void)
1360 static disasm_options_and_args_t *opts_and_args;
1362 if (opts_and_args == NULL)
1364 size_t num_options = ARRAY_SIZE (riscv_options);
1365 size_t num_args = RISCV_OPTION_ARG_COUNT;
1366 disasm_option_arg_t *args;
1367 disasm_options_t *opts;
1368 size_t i, priv_spec_count;
1370 args = XNEWVEC (disasm_option_arg_t, num_args + 1);
1372 args[RISCV_OPTION_ARG_PRIV_SPEC].name = "SPEC";
1373 priv_spec_count = PRIV_SPEC_CLASS_DRAFT - PRIV_SPEC_CLASS_NONE - 1;
1374 args[RISCV_OPTION_ARG_PRIV_SPEC].values
1375 = XNEWVEC (const char *, priv_spec_count + 1);
1376 for (i = 0; i < priv_spec_count; i++)
1377 args[RISCV_OPTION_ARG_PRIV_SPEC].values[i]
1378 = riscv_priv_specs[i].name;
1379 /* The array we return must be NULL terminated. */
1380 args[RISCV_OPTION_ARG_PRIV_SPEC].values[i] = NULL;
1382 /* The array we return must be NULL terminated. */
1383 args[num_args].name = NULL;
1384 args[num_args].values = NULL;
1386 opts_and_args = XNEW (disasm_options_and_args_t);
1387 opts_and_args->args = args;
1389 opts = &opts_and_args->options;
1390 opts->name = XNEWVEC (const char *, num_options + 1);
1391 opts->description = XNEWVEC (const char *, num_options + 1);
1392 opts->arg = XNEWVEC (const disasm_option_arg_t *, num_options + 1);
1393 for (i = 0; i < num_options; i++)
1395 opts->name[i] = riscv_options[i].name;
1396 opts->description[i] = _(riscv_options[i].description);
1397 if (riscv_options[i].arg != RISCV_OPTION_ARG_NONE)
1398 opts->arg[i] = &args[riscv_options[i].arg];
1399 else
1400 opts->arg[i] = NULL;
1402 /* The array we return must be NULL terminated. */
1403 opts->name[i] = NULL;
1404 opts->description[i] = NULL;
1405 opts->arg[i] = NULL;
1408 return opts_and_args;
1411 void
1412 print_riscv_disassembler_options (FILE *stream)
1414 const disasm_options_and_args_t *opts_and_args;
1415 const disasm_option_arg_t *args;
1416 const disasm_options_t *opts;
1417 size_t max_len = 0;
1418 size_t i;
1419 size_t j;
1421 opts_and_args = disassembler_options_riscv ();
1422 opts = &opts_and_args->options;
1423 args = opts_and_args->args;
1425 fprintf (stream, _("\n\
1426 The following RISC-V specific disassembler options are supported for use\n\
1427 with the -M switch (multiple options should be separated by commas):\n"));
1428 fprintf (stream, "\n");
1430 /* Compute the length of the longest option name. */
1431 for (i = 0; opts->name[i] != NULL; i++)
1433 size_t len = strlen (opts->name[i]);
1435 if (opts->arg[i] != NULL)
1436 len += strlen (opts->arg[i]->name);
1437 if (max_len < len)
1438 max_len = len;
1441 for (i = 0, max_len++; opts->name[i] != NULL; i++)
1443 fprintf (stream, " %s", opts->name[i]);
1444 if (opts->arg[i] != NULL)
1445 fprintf (stream, "%s", opts->arg[i]->name);
1446 if (opts->description[i] != NULL)
1448 size_t len = strlen (opts->name[i]);
1450 if (opts->arg != NULL && opts->arg[i] != NULL)
1451 len += strlen (opts->arg[i]->name);
1452 fprintf (stream, "%*c %s", (int) (max_len - len), ' ',
1453 opts->description[i]);
1455 fprintf (stream, "\n");
1458 for (i = 0; args[i].name != NULL; i++)
1460 if (args[i].values == NULL)
1461 continue;
1462 fprintf (stream, _("\n\
1463 For the options above, the following values are supported for \"%s\":\n "),
1464 args[i].name);
1465 for (j = 0; args[i].values[j] != NULL; j++)
1466 fprintf (stream, " %s", args[i].values[j]);
1467 fprintf (stream, _("\n"));
1470 fprintf (stream, _("\n"));
1473 void disassemble_free_riscv (struct disassemble_info *info ATTRIBUTE_UNUSED)
1475 riscv_release_subset_list (&riscv_subsets);