target/arm: Use TRANS_FEAT for do_ppzz_flags

Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20220527181907.189259-67-richard.henderson@linaro.org
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
Richard Henderson 2022-05-27 11:18:19 -07:00 committed by Peter Maydell
parent 897ebd7074
commit 671bdb2e1f

View File

@ -2708,14 +2708,12 @@ static bool do_ppzz_flags(DisasContext *s, arg_rprr_esz *a,
} }
#define DO_PPZZ(NAME, name) \ #define DO_PPZZ(NAME, name) \
static bool trans_##NAME##_ppzz(DisasContext *s, arg_rprr_esz *a) \ static gen_helper_gvec_flags_4 * const name##_ppzz_fns[4] = { \
{ \ gen_helper_sve_##name##_ppzz_b, gen_helper_sve_##name##_ppzz_h, \
static gen_helper_gvec_flags_4 * const fns[4] = { \ gen_helper_sve_##name##_ppzz_s, gen_helper_sve_##name##_ppzz_d, \
gen_helper_sve_##name##_ppzz_b, gen_helper_sve_##name##_ppzz_h, \ }; \
gen_helper_sve_##name##_ppzz_s, gen_helper_sve_##name##_ppzz_d, \ TRANS_FEAT(NAME##_ppzz, aa64_sve, do_ppzz_flags, \
}; \ a, name##_ppzz_fns[a->esz])
return do_ppzz_flags(s, a, fns[a->esz]); \
}
DO_PPZZ(CMPEQ, cmpeq) DO_PPZZ(CMPEQ, cmpeq)
DO_PPZZ(CMPNE, cmpne) DO_PPZZ(CMPNE, cmpne)
@ -2727,14 +2725,12 @@ DO_PPZZ(CMPHS, cmphs)
#undef DO_PPZZ #undef DO_PPZZ
#define DO_PPZW(NAME, name) \ #define DO_PPZW(NAME, name) \
static bool trans_##NAME##_ppzw(DisasContext *s, arg_rprr_esz *a) \ static gen_helper_gvec_flags_4 * const name##_ppzw_fns[4] = { \
{ \ gen_helper_sve_##name##_ppzw_b, gen_helper_sve_##name##_ppzw_h, \
static gen_helper_gvec_flags_4 * const fns[4] = { \ gen_helper_sve_##name##_ppzw_s, NULL \
gen_helper_sve_##name##_ppzw_b, gen_helper_sve_##name##_ppzw_h, \ }; \
gen_helper_sve_##name##_ppzw_s, NULL \ TRANS_FEAT(NAME##_ppzw, aa64_sve, do_ppzz_flags, \
}; \ a, name##_ppzw_fns[a->esz])
return do_ppzz_flags(s, a, fns[a->esz]); \
}
DO_PPZW(CMPEQ, cmpeq) DO_PPZW(CMPEQ, cmpeq)
DO_PPZW(CMPNE, cmpne) DO_PPZW(CMPNE, cmpne)