mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 07:13:54 -06:00
target/arm: Implement gen_gvec_fabs, gen_gvec_fneg
Move the current implementation out of translate-neon.c, and extend to handle all element sizes. Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20241211163036.2297116-54-richard.henderson@linaro.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
a05c56178a
commit
f0632d48a7
3 changed files with 22 additions and 18 deletions
|
@ -2697,3 +2697,17 @@ void gen_gvec_uadalp(unsigned vece, uint32_t rd_ofs, uint32_t rn_ofs,
|
|||
assert(vece <= MO_32);
|
||||
tcg_gen_gvec_2(rd_ofs, rn_ofs, opr_sz, max_sz, &g[vece]);
|
||||
}
|
||||
|
||||
void gen_gvec_fabs(unsigned vece, uint32_t dofs, uint32_t aofs,
|
||||
uint32_t oprsz, uint32_t maxsz)
|
||||
{
|
||||
uint64_t s_bit = 1ull << ((8 << vece) - 1);
|
||||
tcg_gen_gvec_andi(vece, dofs, aofs, s_bit - 1, oprsz, maxsz);
|
||||
}
|
||||
|
||||
void gen_gvec_fneg(unsigned vece, uint32_t dofs, uint32_t aofs,
|
||||
uint32_t oprsz, uint32_t maxsz)
|
||||
{
|
||||
uint64_t s_bit = 1ull << ((8 << vece) - 1);
|
||||
tcg_gen_gvec_xori(vece, dofs, aofs, s_bit, oprsz, maxsz);
|
||||
}
|
||||
|
|
|
@ -3041,14 +3041,6 @@ static bool do_2misc(DisasContext *s, arg_2misc *a, NeonGenOneOpFn *fn)
|
|||
return true;
|
||||
}
|
||||
|
||||
static void gen_VABS_F(unsigned vece, uint32_t rd_ofs, uint32_t rm_ofs,
|
||||
uint32_t oprsz, uint32_t maxsz)
|
||||
{
|
||||
tcg_gen_gvec_andi(vece, rd_ofs, rm_ofs,
|
||||
vece == MO_16 ? 0x7fff : 0x7fffffff,
|
||||
oprsz, maxsz);
|
||||
}
|
||||
|
||||
static bool trans_VABS_F(DisasContext *s, arg_2misc *a)
|
||||
{
|
||||
if (a->size == MO_16) {
|
||||
|
@ -3058,15 +3050,7 @@ static bool trans_VABS_F(DisasContext *s, arg_2misc *a)
|
|||
} else if (a->size != MO_32) {
|
||||
return false;
|
||||
}
|
||||
return do_2misc_vec(s, a, gen_VABS_F);
|
||||
}
|
||||
|
||||
static void gen_VNEG_F(unsigned vece, uint32_t rd_ofs, uint32_t rm_ofs,
|
||||
uint32_t oprsz, uint32_t maxsz)
|
||||
{
|
||||
tcg_gen_gvec_xori(vece, rd_ofs, rm_ofs,
|
||||
vece == MO_16 ? 0x8000 : 0x80000000,
|
||||
oprsz, maxsz);
|
||||
return do_2misc_vec(s, a, gen_gvec_fabs);
|
||||
}
|
||||
|
||||
static bool trans_VNEG_F(DisasContext *s, arg_2misc *a)
|
||||
|
@ -3078,7 +3062,7 @@ static bool trans_VNEG_F(DisasContext *s, arg_2misc *a)
|
|||
} else if (a->size != MO_32) {
|
||||
return false;
|
||||
}
|
||||
return do_2misc_vec(s, a, gen_VNEG_F);
|
||||
return do_2misc_vec(s, a, gen_gvec_fneg);
|
||||
}
|
||||
|
||||
static bool trans_VRECPE(DisasContext *s, arg_2misc *a)
|
||||
|
|
|
@ -602,6 +602,12 @@ void gen_gvec_uaddlp(unsigned vece, uint32_t rd_ofs, uint32_t rn_ofs,
|
|||
void gen_gvec_uadalp(unsigned vece, uint32_t rd_ofs, uint32_t rn_ofs,
|
||||
uint32_t opr_sz, uint32_t max_sz);
|
||||
|
||||
/* These exclusively manipulate the sign bit. */
|
||||
void gen_gvec_fabs(unsigned vece, uint32_t dofs, uint32_t aofs,
|
||||
uint32_t oprsz, uint32_t maxsz);
|
||||
void gen_gvec_fneg(unsigned vece, uint32_t dofs, uint32_t aofs,
|
||||
uint32_t oprsz, uint32_t maxsz);
|
||||
|
||||
/*
|
||||
* Forward to the isar_feature_* tests given a DisasContext pointer.
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue