mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 10:13:56 -06:00
target/mips: Convert MSA 3R instruction format to decodetree (part 1/4)
Convert 3-register operations to decodetree. Since the 'data format' field is a constant value, use tcg_constant_i32() instead of a TCG temporary. Note, the format definition could be named @3rf_b (for 3R with a df field BYTE-based) but since the instruction class is named '3R', we simply call the format @3r to ease reviewing the msa.decode file. However we directly call the trans_msa_3rf() function, which handles the BYTE-based df field. Reviewed-by: Jiaxun Yang <jiaxun.yang@flygoat.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20211028210843.2120802-21-f4bug@amsat.org>
This commit is contained in:
parent
2d5246f305
commit
67bedef51a
2 changed files with 11 additions and 12 deletions
|
@ -32,6 +32,7 @@
|
|||
@vec ...... ..... wt:5 ws:5 wd:5 ...... &msa_r df=0
|
||||
@2r ...... ........ df:2 ws:5 wd:5 ...... &msa_r wt=0
|
||||
@2rf ...... ......... . ws:5 wd:5 ...... &msa_r wt=0 df=%2r_df_w
|
||||
@3r ...... ... df:2 wt:5 ws:5 wd:5 ...... &msa_r
|
||||
@3rf_h ...... .... . wt:5 ws:5 wd:5 ...... &msa_r df=%3r_df_h
|
||||
@3rf_w ...... .... . wt:5 ws:5 wd:5 ...... &msa_r df=%3r_df_w
|
||||
@u5 ...... ... df:2 sa:5 ws:5 wd:5 ...... &msa_i
|
||||
|
@ -88,6 +89,11 @@ BNZ 010001 111 .. ..... ................ @bz
|
|||
SRARI 011110 010 ....... ..... ..... 001010 @bit
|
||||
SRLRI 011110 011 ....... ..... ..... 001010 @bit
|
||||
|
||||
SLD 011110 000 .. ..... ..... ..... 010100 @3r
|
||||
SPLAT 011110 001 .. ..... ..... ..... 010100 @3r
|
||||
|
||||
VSHF 011110 000 .. ..... ..... ..... 010101 @3r
|
||||
|
||||
FCAF 011110 0000 . ..... ..... ..... 011010 @3rf_w
|
||||
FCUN 011110 0001 . ..... ..... ..... 011010 @3rf_w
|
||||
FCEQ 011110 0010 . ..... ..... ..... 011010 @3rf_w
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue