Skip to content

Commit

Permalink
target/arm: Use TRANS_FEAT for gen_gvec_ool_zz
Browse files Browse the repository at this point in the history
Convert SVE translation functions using gen_gvec_ool_zz to TRANS_FEAT.

Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20220527181907.189259-4-richard.henderson@linaro.org
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
  • Loading branch information
rth7680 authored and pm215 committed May 30, 2022
1 parent c5edf07 commit 0ea3cdb
Showing 1 changed file with 13 additions and 26 deletions.
39 changes: 13 additions & 26 deletions target/arm/translate-sve.c
Expand Up @@ -1375,16 +1375,12 @@ static bool trans_ADR_u32(DisasContext *s, arg_rrri *a)
*** SVE Integer Misc - Unpredicated Group
*/

static bool trans_FEXPA(DisasContext *s, arg_rr_esz *a)
{
static gen_helper_gvec_2 * const fns[4] = {
NULL,
gen_helper_sve_fexpa_h,
gen_helper_sve_fexpa_s,
gen_helper_sve_fexpa_d,
};
return gen_gvec_ool_zz(s, fns[a->esz], a->rd, a->rn, 0);
}
static gen_helper_gvec_2 * const fexpa_fns[4] = {
NULL, gen_helper_sve_fexpa_h,
gen_helper_sve_fexpa_s, gen_helper_sve_fexpa_d,
};
TRANS_FEAT(FEXPA, aa64_sve, gen_gvec_ool_zz,
fexpa_fns[a->esz], a->rd, a->rn, 0)

static bool trans_FTSSEL(DisasContext *s, arg_rrr_esz *a)
{
Expand Down Expand Up @@ -2418,14 +2414,11 @@ static bool trans_INSR_r(DisasContext *s, arg_rrr_esz *a)
return true;
}

static bool trans_REV_v(DisasContext *s, arg_rr_esz *a)
{
static gen_helper_gvec_2 * const fns[4] = {
gen_helper_sve_rev_b, gen_helper_sve_rev_h,
gen_helper_sve_rev_s, gen_helper_sve_rev_d
};
return gen_gvec_ool_zz(s, fns[a->esz], a->rd, a->rn, 0);
}
static gen_helper_gvec_2 * const rev_fns[4] = {
gen_helper_sve_rev_b, gen_helper_sve_rev_h,
gen_helper_sve_rev_s, gen_helper_sve_rev_d
};
TRANS_FEAT(REV_v, aa64_sve, gen_gvec_ool_zz, rev_fns[a->esz], a->rd, a->rn, 0)

static bool trans_TBL(DisasContext *s, arg_rrr_esz *a)
{
Expand Down Expand Up @@ -8376,14 +8369,8 @@ static bool trans_USDOT_zzzz(DisasContext *s, arg_USDOT_zzzz *a)
return true;
}

static bool trans_AESMC(DisasContext *s, arg_AESMC *a)
{
if (!dc_isar_feature(aa64_sve2_aes, s)) {
return false;
}
return gen_gvec_ool_zz(s, gen_helper_crypto_aesmc,
a->rd, a->rd, a->decrypt);
}
TRANS_FEAT(AESMC, aa64_sve2_aes, gen_gvec_ool_zz,
gen_helper_crypto_aesmc, a->rd, a->rd, a->decrypt)

static bool do_aese(DisasContext *s, arg_rrr_esz *a, bool decrypt)
{
Expand Down

0 comments on commit 0ea3cdb

Please sign in to comment.