target/mips: Merge msa32/msa64 decodetree definitions

We don't need to maintain 2 sets of decodetree definitions.
Merge them into a single file.

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20210617174636.2902654-3-f4bug@amsat.org>
This commit is contained in:
Philippe Mathieu-Daudé 2021-05-29 20:06:13 +02:00
parent 525ea877b2
commit f5c6ee0c6b
4 changed files with 10 additions and 32 deletions

View file

@ -18,8 +18,7 @@
#include "internal.h"
/* Include the auto-generated decoder. */
#include "decode-msa32.c.inc"
#include "decode-msa64.c.inc"
#include "decode-msa.c.inc"
#define OPC_MSA (0x1E << 26)
@ -2269,13 +2268,8 @@ static bool trans_LSA(DisasContext *ctx, arg_rtype *a)
static bool trans_DLSA(DisasContext *ctx, arg_rtype *a)
{
if (TARGET_LONG_BITS != 64) {
return false;
}
return gen_dlsa(ctx, a->rd, a->rt, a->rs, a->sa);
}
bool decode_ase_msa(DisasContext *ctx, uint32_t insn)
{
if (TARGET_LONG_BITS == 64 && decode_msa64(ctx, insn)) {
return true;
}
return decode_msa32(ctx, insn);
}