mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-29 04:52:22 -06:00
target/arm: Create gen_gvec_{uqadd, sqadd, uqsub, sqsub}
Provide a functional interface for the vector expansion. This fits better with the existing set of helpers that we provide for other operations. Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20200513163245.17915-11-richard.henderson@linaro.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
8161b75357
commit
c7715b6b51
4 changed files with 147 additions and 135 deletions
|
@ -605,6 +605,10 @@ DO_3SAME(VORN, tcg_gen_gvec_orc)
|
|||
DO_3SAME(VEOR, tcg_gen_gvec_xor)
|
||||
DO_3SAME(VSHL_S, gen_gvec_sshl)
|
||||
DO_3SAME(VSHL_U, gen_gvec_ushl)
|
||||
DO_3SAME(VQADD_S, gen_gvec_sqadd_qc)
|
||||
DO_3SAME(VQADD_U, gen_gvec_uqadd_qc)
|
||||
DO_3SAME(VQSUB_S, gen_gvec_sqsub_qc)
|
||||
DO_3SAME(VQSUB_U, gen_gvec_uqsub_qc)
|
||||
|
||||
/* These insns are all gvec_bitsel but with the inputs in various orders. */
|
||||
#define DO_3SAME_BITSEL(INSN, O1, O2, O3) \
|
||||
|
@ -653,21 +657,6 @@ DO_3SAME_CMP(VCGE_S, TCG_COND_GE)
|
|||
DO_3SAME_CMP(VCGE_U, TCG_COND_GEU)
|
||||
DO_3SAME_CMP(VCEQ, TCG_COND_EQ)
|
||||
|
||||
#define DO_3SAME_GVEC4(INSN, OPARRAY) \
|
||||
static void gen_##INSN##_3s(unsigned vece, uint32_t rd_ofs, \
|
||||
uint32_t rn_ofs, uint32_t rm_ofs, \
|
||||
uint32_t oprsz, uint32_t maxsz) \
|
||||
{ \
|
||||
tcg_gen_gvec_4(rd_ofs, offsetof(CPUARMState, vfp.qc), \
|
||||
rn_ofs, rm_ofs, oprsz, maxsz, &OPARRAY[vece]); \
|
||||
} \
|
||||
DO_3SAME(INSN, gen_##INSN##_3s)
|
||||
|
||||
DO_3SAME_GVEC4(VQADD_S, sqadd_op)
|
||||
DO_3SAME_GVEC4(VQADD_U, uqadd_op)
|
||||
DO_3SAME_GVEC4(VQSUB_S, sqsub_op)
|
||||
DO_3SAME_GVEC4(VQSUB_U, uqsub_op)
|
||||
|
||||
static void gen_VMUL_p_3s(unsigned vece, uint32_t rd_ofs, uint32_t rn_ofs,
|
||||
uint32_t rm_ofs, uint32_t oprsz, uint32_t maxsz)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue