mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 02:03:56 -06:00
target/arm: Convert Neon 3-reg-diff saturating doubling multiplies
Convert the Neon 3-reg-diff insns VQDMULL, VQDMLAL and VQDMLSL: these are all saturating doubling long multiplies with a possible accumulate step. These are the last insns in the group which use the pass-over-each elements loop, so we can delete that code. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
3a1d9eb07b
commit
9546ca5998
3 changed files with 92 additions and 55 deletions
|
@ -5247,11 +5247,11 @@ static int disas_neon_data_insn(DisasContext *s, uint32_t insn)
|
|||
{0, 0, 0, 7}, /* VSUBHN: handled by decodetree */
|
||||
{0, 0, 0, 7}, /* VABDL */
|
||||
{0, 0, 0, 7}, /* VMLAL */
|
||||
{0, 0, 0, 9}, /* VQDMLAL */
|
||||
{0, 0, 0, 7}, /* VQDMLAL */
|
||||
{0, 0, 0, 7}, /* VMLSL */
|
||||
{0, 0, 0, 9}, /* VQDMLSL */
|
||||
{0, 0, 0, 7}, /* VQDMLSL */
|
||||
{0, 0, 0, 7}, /* Integer VMULL */
|
||||
{0, 0, 0, 9}, /* VQDMULL */
|
||||
{0, 0, 0, 7}, /* VQDMULL */
|
||||
{0, 0, 0, 0xa}, /* Polynomial VMULL */
|
||||
{0, 0, 0, 7}, /* Reserved: always UNDEF */
|
||||
};
|
||||
|
@ -5282,58 +5282,7 @@ static int disas_neon_data_insn(DisasContext *s, uint32_t insn)
|
|||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* Avoid overlapping operands. Wide source operands are
|
||||
always aligned so will never overlap with wide
|
||||
destinations in problematic ways. */
|
||||
if (rd == rm) {
|
||||
tmp = neon_load_reg(rm, 1);
|
||||
neon_store_scratch(2, tmp);
|
||||
} else if (rd == rn) {
|
||||
tmp = neon_load_reg(rn, 1);
|
||||
neon_store_scratch(2, tmp);
|
||||
}
|
||||
tmp3 = NULL;
|
||||
for (pass = 0; pass < 2; pass++) {
|
||||
if (pass == 1 && rd == rn) {
|
||||
tmp = neon_load_scratch(2);
|
||||
} else {
|
||||
tmp = neon_load_reg(rn, pass);
|
||||
}
|
||||
if (pass == 1 && rd == rm) {
|
||||
tmp2 = neon_load_scratch(2);
|
||||
} else {
|
||||
tmp2 = neon_load_reg(rm, pass);
|
||||
}
|
||||
switch (op) {
|
||||
case 9: case 11: case 13:
|
||||
/* VQDMLAL, VQDMLSL, VQDMULL */
|
||||
gen_neon_mull(cpu_V0, tmp, tmp2, size, u);
|
||||
break;
|
||||
default: /* 15 is RESERVED: caught earlier */
|
||||
abort();
|
||||
}
|
||||
if (op == 13) {
|
||||
/* VQDMULL */
|
||||
gen_neon_addl_saturate(cpu_V0, cpu_V0, size);
|
||||
neon_store_reg64(cpu_V0, rd + pass);
|
||||
} else {
|
||||
/* Accumulate. */
|
||||
neon_load_reg64(cpu_V1, rd + pass);
|
||||
switch (op) {
|
||||
case 9: case 11: /* VQDMLAL, VQDMLSL */
|
||||
gen_neon_addl_saturate(cpu_V0, cpu_V0, size);
|
||||
if (op == 11) {
|
||||
gen_neon_negl(cpu_V0, size);
|
||||
}
|
||||
gen_neon_addl_saturate(cpu_V0, cpu_V1, size);
|
||||
break;
|
||||
default:
|
||||
abort();
|
||||
}
|
||||
neon_store_reg64(cpu_V0, rd + pass);
|
||||
}
|
||||
}
|
||||
abort(); /* all others handled by decodetree */
|
||||
} else {
|
||||
/* Two registers and a scalar. NB that for ops of this form
|
||||
* the ARM ARM labels bit 24 as Q, but it is in our variable
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue