Skip to content

Commit

Permalink
target/arm: Introduce gen_gvec_ool_arg_zzzz
Browse files Browse the repository at this point in the history
Use gen_gvec_ool_arg_zzzz instead of gen_gvec_ool_zzzz
when the arguments come from arg_rrrr_esz.

Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20220527181907.189259-11-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 5f425b9 commit cab79ac
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions target/arm/translate-sve.c
Expand Up @@ -193,6 +193,12 @@ static bool gen_gvec_ool_zzzz(DisasContext *s, gen_helper_gvec_4 *fn,
return true;
}

static bool gen_gvec_ool_arg_zzzz(DisasContext *s, gen_helper_gvec_4 *fn,
arg_rrrr_esz *a, int data)
{
return gen_gvec_ool_zzzz(s, fn, a->rd, a->rn, a->rm, a->ra, data);
}

/* Invoke an out-of-line helper on 2 Zregs and a predicate. */
static void gen_gvec_ool_zzp(DisasContext *s, gen_helper_gvec_3 *fn,
int rd, int rn, int pg, int data)
Expand Down Expand Up @@ -7109,7 +7115,7 @@ static bool do_sve2_zzzz_ool(DisasContext *s, arg_rrrr_esz *a,
if (!dc_isar_feature(aa64_sve2, s)) {
return false;
}
return gen_gvec_ool_zzzz(s, fn, a->rd, a->rn, a->rm, a->ra, data);
return gen_gvec_ool_arg_zzzz(s, fn, a, data);
}

static bool do_abal(DisasContext *s, arg_rrrr_esz *a, bool uns, bool sel)
Expand Down Expand Up @@ -8407,7 +8413,7 @@ static bool do_i8mm_zzzz_ool(DisasContext *s, arg_rrrr_esz *a,
if (!dc_isar_feature(aa64_sve_i8mm, s)) {
return false;
}
return gen_gvec_ool_zzzz(s, fn, a->rd, a->rn, a->rm, a->ra, data);
return gen_gvec_ool_arg_zzzz(s, fn, a, data);
}

static bool trans_SMMLA(DisasContext *s, arg_rrrr_esz *a)
Expand All @@ -8430,8 +8436,7 @@ static bool trans_BFDOT_zzzz(DisasContext *s, arg_rrrr_esz *a)
if (!dc_isar_feature(aa64_sve_bf16, s)) {
return false;
}
return gen_gvec_ool_zzzz(s, gen_helper_gvec_bfdot,
a->rd, a->rn, a->rm, a->ra, 0);
return gen_gvec_ool_arg_zzzz(s, gen_helper_gvec_bfdot, a, 0);
}

static bool trans_BFDOT_zzxz(DisasContext *s, arg_rrxr_esz *a)
Expand All @@ -8448,8 +8453,7 @@ static bool trans_BFMMLA(DisasContext *s, arg_rrrr_esz *a)
if (!dc_isar_feature(aa64_sve_bf16, s)) {
return false;
}
return gen_gvec_ool_zzzz(s, gen_helper_gvec_bfmmla,
a->rd, a->rn, a->rm, a->ra, 0);
return gen_gvec_ool_arg_zzzz(s, gen_helper_gvec_bfmmla, a, 0);
}

static bool do_BFMLAL_zzzw(DisasContext *s, arg_rrrr_esz *a, bool sel)
Expand Down

0 comments on commit cab79ac

Please sign in to comment.