mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 10:13:56 -06:00
target/mips: Rename 'rtype' as 'r'
We'll soon have more opcode and decoded arguments, and 'rtype' is not very helpful. Naming it simply 'r' ease reviewing the .decode files when we have many opcodes. Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20210801234202.3167676-5-f4bug@amsat.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
12f79f1173
commit
34fe9fa368
6 changed files with 46 additions and 46 deletions
|
@ -11,20 +11,20 @@
|
|||
# when creating helpers common to those for the individual
|
||||
# instruction patterns.
|
||||
|
||||
&rtype rs rt rd sa
|
||||
&r rs rt rd sa
|
||||
|
||||
&itype base rt offset
|
||||
&i base rt offset
|
||||
|
||||
###########################################################################
|
||||
# Named instruction formats. These are generally used to
|
||||
# reduce the amount of duplication between instruction patterns.
|
||||
|
||||
@rs_rt_rd ...... rs:5 rt:5 rd:5 ..... ...... &rtype sa=0
|
||||
@rt_rd ...... ..... rt:5 rd:5 ..... ...... &rtype rs=0 sa=0
|
||||
@rs ...... rs:5 ..... .......... ...... &rtype rt=0 rd=0 sa=0
|
||||
@rd ...... .......... rd:5 ..... ...... &rtype rs=0 rt=0 sa=0
|
||||
@rs_rt_rd ...... rs:5 rt:5 rd:5 ..... ...... &r sa=0
|
||||
@rt_rd ...... ..... rt:5 rd:5 ..... ...... &r sa=0 rs=0
|
||||
@rs ...... rs:5 ..... .......... ...... &r sa=0 rt=0 rd=0
|
||||
@rd ...... .......... rd:5 ..... ...... &r sa=0 rs=0 rt=0
|
||||
|
||||
@ldst ...... base:5 rt:5 offset:16 &itype
|
||||
@ldst ...... base:5 rt:5 offset:16 &i
|
||||
|
||||
###########################################################################
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue