mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 17:53:56 -06:00
target/mips: Rename decode_opc_mxu() as decode_ase_mxu()
Use "decode_{isa,ase,ext}_$name()" function name pattern for public decodetree entrypoints. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20210226093111.3865906-10-f4bug@amsat.org>
This commit is contained in:
parent
2234528618
commit
e31b43ec50
1 changed files with 2 additions and 2 deletions
|
@ -25779,7 +25779,7 @@ static void decode_opc_mxu__pool19(DisasContext *ctx)
|
||||||
/*
|
/*
|
||||||
* Main MXU decoding function
|
* Main MXU decoding function
|
||||||
*/
|
*/
|
||||||
static void decode_opc_mxu(DisasContext *ctx, uint32_t insn)
|
static void decode_ase_mxu(DisasContext *ctx, uint32_t insn)
|
||||||
{
|
{
|
||||||
uint32_t opcode = extract32(insn, 0, 6);
|
uint32_t opcode = extract32(insn, 0, 6);
|
||||||
|
|
||||||
|
@ -26984,7 +26984,7 @@ static bool decode_opc_legacy(CPUMIPSState *env, DisasContext *ctx)
|
||||||
if (MASK_SPECIAL2(ctx->opcode) == OPC_MUL) {
|
if (MASK_SPECIAL2(ctx->opcode) == OPC_MUL) {
|
||||||
gen_arith(ctx, OPC_MUL, rd, rs, rt);
|
gen_arith(ctx, OPC_MUL, rd, rs, rt);
|
||||||
} else {
|
} else {
|
||||||
decode_opc_mxu(ctx, ctx->opcode);
|
decode_ase_mxu(ctx, ctx->opcode);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue