target/arm: Use TRANS_FEAT for do_sve2_zpz_data
Convert SVE translation functions using do_sve2_zpz_data to use TRANS_FEAT and gen_gvec_ool_arg_zpz. Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20220527181907.189259-23-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:
parent
817bd5c98e
commit
b2c0096119
@ -6554,48 +6554,23 @@ static bool trans_UADALP_zpzz(DisasContext *s, arg_rprr_esz *a)
|
|||||||
* SVE2 integer unary operations (predicated)
|
* SVE2 integer unary operations (predicated)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static bool do_sve2_zpz_ool(DisasContext *s, arg_rpr_esz *a,
|
TRANS_FEAT(URECPE, aa64_sve2, gen_gvec_ool_arg_zpz,
|
||||||
gen_helper_gvec_3 *fn)
|
a->esz == 2 ? gen_helper_sve2_urecpe_s : NULL, a, 0)
|
||||||
{
|
|
||||||
if (!dc_isar_feature(aa64_sve2, s)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return gen_gvec_ool_arg_zpz(s, fn, a, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
static bool trans_URECPE(DisasContext *s, arg_rpr_esz *a)
|
TRANS_FEAT(URSQRTE, aa64_sve2, gen_gvec_ool_arg_zpz,
|
||||||
{
|
a->esz == 2 ? gen_helper_sve2_ursqrte_s : NULL, a, 0)
|
||||||
if (a->esz != 2) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return do_sve2_zpz_ool(s, a, gen_helper_sve2_urecpe_s);
|
|
||||||
}
|
|
||||||
|
|
||||||
static bool trans_URSQRTE(DisasContext *s, arg_rpr_esz *a)
|
static gen_helper_gvec_3 * const sqabs_fns[4] = {
|
||||||
{
|
gen_helper_sve2_sqabs_b, gen_helper_sve2_sqabs_h,
|
||||||
if (a->esz != 2) {
|
gen_helper_sve2_sqabs_s, gen_helper_sve2_sqabs_d,
|
||||||
return false;
|
};
|
||||||
}
|
TRANS_FEAT(SQABS, aa64_sve2, gen_gvec_ool_arg_zpz, sqabs_fns[a->esz], a, 0)
|
||||||
return do_sve2_zpz_ool(s, a, gen_helper_sve2_ursqrte_s);
|
|
||||||
}
|
|
||||||
|
|
||||||
static bool trans_SQABS(DisasContext *s, arg_rpr_esz *a)
|
static gen_helper_gvec_3 * const sqneg_fns[4] = {
|
||||||
{
|
gen_helper_sve2_sqneg_b, gen_helper_sve2_sqneg_h,
|
||||||
static gen_helper_gvec_3 * const fns[4] = {
|
gen_helper_sve2_sqneg_s, gen_helper_sve2_sqneg_d,
|
||||||
gen_helper_sve2_sqabs_b, gen_helper_sve2_sqabs_h,
|
};
|
||||||
gen_helper_sve2_sqabs_s, gen_helper_sve2_sqabs_d,
|
TRANS_FEAT(SQNEG, aa64_sve2, gen_gvec_ool_arg_zpz, sqneg_fns[a->esz], a, 0)
|
||||||
};
|
|
||||||
return do_sve2_zpz_ool(s, a, fns[a->esz]);
|
|
||||||
}
|
|
||||||
|
|
||||||
static bool trans_SQNEG(DisasContext *s, arg_rpr_esz *a)
|
|
||||||
{
|
|
||||||
static gen_helper_gvec_3 * const fns[4] = {
|
|
||||||
gen_helper_sve2_sqneg_b, gen_helper_sve2_sqneg_h,
|
|
||||||
gen_helper_sve2_sqneg_s, gen_helper_sve2_sqneg_d,
|
|
||||||
};
|
|
||||||
return do_sve2_zpz_ool(s, a, fns[a->esz]);
|
|
||||||
}
|
|
||||||
|
|
||||||
#define DO_SVE2_ZPZZ(NAME, name) \
|
#define DO_SVE2_ZPZZ(NAME, name) \
|
||||||
static bool trans_##NAME(DisasContext *s, arg_rprr_esz *a) \
|
static bool trans_##NAME(DisasContext *s, arg_rprr_esz *a) \
|
||||||
|
Loading…
Reference in New Issue
Block a user