diff options
author | Nelson Chu <nelson@rivosinc.com> | 2023-10-27 08:39:17 +0800 |
---|---|---|
committer | Nelson Chu <nelson@rivosinc.com> | 2024-10-31 11:28:45 +0800 |
commit | 004a5bfc72b36b39a2aa1658123099cc0c5f98f2 (patch) | |
tree | 492f4af4bb335b2f2a9bf17d0fe9c75976efc1f0 /binutils | |
parent | 4868f6025e90903f61b00546b64f6d51c63b8451 (diff) | |
download | binutils-004a5bfc72b36b39a2aa1658123099cc0c5f98f2.zip binutils-004a5bfc72b36b39a2aa1658123099cc0c5f98f2.tar.gz binutils-004a5bfc72b36b39a2aa1658123099cc0c5f98f2.tar.bz2 |
RISC-V: Dump instruction without checking architecture support as usual.
Since QEMU have supported -Max option to to enable all normal extensions,
the dis-assembler should also add an option, -M,max to do the same thing.
For the instruction, which have overlapped encodings like zfinx, will not
be considered by the -M,max option.
opcodes/
* riscv-dis.c (all_ext): New static boolean. If set, disassemble
without checking architectire string.
(riscv_disassemble_insn): Likewise.
(parse_riscv_dis_option_without_args): Recognized -M,max option.
binutils/
* NEWS: Updated.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/binutils/NEWS b/binutils/NEWS index 50c40af..92cc950 100644 --- a/binutils/NEWS +++ b/binutils/NEWS @@ -1,5 +1,8 @@ -*- text -*- +* RISC-V disassembly now supports -M,max option like QEMU to dump instruction + without checking architecture support as usual. + Changes in 2.43: * The MIPS port now supports microMIPS MT Application Specific Extension |