diff options
author | Jim Wilson <jimw@sifive.com> | 2019-07-05 15:19:11 +0800 |
---|---|---|
committer | Jim Wilson <jimw@sifive.com> | 2019-07-05 15:19:11 +0800 |
commit | 98602811d838077269e361e9d807fe530c780011 (patch) | |
tree | adddb9536e0ae27b31da8d1ae46e64fab62cda67 /gas/ChangeLog | |
parent | a0b6cbf69db7427cfdf054092062fcf82eef9a58 (diff) | |
download | gdb-98602811d838077269e361e9d807fe530c780011.zip gdb-98602811d838077269e361e9d807fe530c780011.tar.gz gdb-98602811d838077269e361e9d807fe530c780011.tar.bz2 |
Kito's 5-part patch set to improve .insn support.
From Kito Cheng <kito.cheng@sifive.com>
gas/ChangeLog
* doc/c-riscv.texi (Instruction Formats): Add r4 type.
* testsuite/gas/riscv/insn.d: Add testcase for r4 type.
* testsuite/gas/riscv/insn.s: Ditto.
* doc/c-riscv.texi (Instruction Formats): Add b and j type.
* testsuite/gas/riscv/insn.d: Add test case for b and j type.
* testsuite/gas/riscv/insn.s: Ditto.
* testsuite/gas/riscv/insn.s: Correct instruction type for load
and store.
* testsuite/gas/riscv/insn.d: Using regular expression to match
address.
* doc/c-riscv.texi (Instruction Formats): Fix encoding table for SB
type and fix typo.
opcode/ChangeLog
* riscv-opc.c (riscv_insn_types): Add r4 type.
* riscv-opc.c (riscv_insn_types): Add b and j type.
* opcodes/riscv-opc.c (riscv_insn_types): Remove incorrect
format for sb type and correct s type.
Diffstat (limited to 'gas/ChangeLog')
-rw-r--r-- | gas/ChangeLog | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index c8eb546..9704865 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,22 @@ +2019-07-05 Kito Cheng <kito.cheng@sifive.com> + + * doc/c-riscv.texi (Instruction Formats): Add r4 type. + * testsuite/gas/riscv/insn.d: Add testcase for r4 type. + * testsuite/gas/riscv/insn.s: Ditto. + + * doc/c-riscv.texi (Instruction Formats): Add b and j type. + * testsuite/gas/riscv/insn.d: Add test case for b and j type. + * testsuite/gas/riscv/insn.s: Ditto. + + * testsuite/gas/riscv/insn.s: Correct instruction type for load + and store. + + * testsuite/gas/riscv/insn.d: Using regular expression to match + address. + + * doc/c-riscv.texi (Instruction Formats): Fix encoding table for SB + type and fix typo. + 2019-07-04 Jan Beulich <jbeulich@suse.com> * config/tc-i386.c (md_parse_option): Don't blindly accept all |