From: "Alex Bennée" <alex.bennee@linaro.org>
To: qemu-arm@nongnu.org
Cc: qemu-devel@nongnu.org, Amir Charif <amir.charif@cea.fr>
Subject: Re: [Qemu-arm] [PATCH] Re-evaluate SVE vector length everytime ADDVL is executed
Date: Wed, 13 Mar 2019 16:13:33 +0000 [thread overview]
Message-ID: <87y35i4us2.fsf@zen.linaroharston> (raw)
In-Reply-To: <1552488086-4025-1-git-send-email-amir.charif@cea.fr>
Amir Charif <amir.charif@cea.fr> writes:
> In system emulation mode, the kernel may internally use 16-byte vectors.
> If this size is saved in the DisasContext before entering a userspace app
> that uses higher SVE sizes, the wrong size may be allocated on the stack
> resulting in corruption (segfaults in user space).
> This fix evaluates the vector size at runtime (as opposed to
> translation time)
This implies we have missed recalculating the vector size on a mode
transition. We want to ensure that the flags setting of TBFLAG_A64,
ZCR_LEN is consistent. Is sve_zcr_len_for_el() getting it wrong?
> to always allocate the correct size on the stack (when ADDVL is used).
>
> Signed-off-by: Amir Charif <amir.charif@cea.fr>
> ---
> target/arm/translate-a64.c | 17 +++++++++++++++++
> target/arm/translate-a64.h | 1 +
> target/arm/translate-sve.c | 7 +++++--
> 3 files changed, 23 insertions(+), 2 deletions(-)
>
> diff --git a/target/arm/translate-a64.c b/target/arm/translate-a64.c
> index 1959046..e431f1e 100644
> --- a/target/arm/translate-a64.c
> +++ b/target/arm/translate-a64.c
> @@ -45,6 +45,9 @@ static TCGv_i64 cpu_pc;
> /* Load/store exclusive handling */
> static TCGv_i64 cpu_exclusive_high;
>
> +/* Current value of the zcr_el[1] register */
> +static TCGv_i64 cpu_zcr_el1;
> +
> static const char *regnames[] = {
> "x0", "x1", "x2", "x3", "x4", "x5", "x6", "x7",
> "x8", "x9", "x10", "x11", "x12", "x13", "x14", "x15",
> @@ -103,6 +106,9 @@ void a64_translate_init(void)
>
> cpu_exclusive_high = tcg_global_mem_new_i64(cpu_env,
> offsetof(CPUARMState, exclusive_high), "exclusive_high");
> +
> + cpu_zcr_el1 = tcg_global_mem_new_i64(cpu_env,
> + offsetof(CPUARMState, vfp.zcr_el[1]), "zcr_el1");
> }
>
> static inline int get_a64_user_mem_index(DisasContext *s)
> @@ -578,6 +584,17 @@ TCGv_i64 read_cpu_reg_sp(DisasContext *s, int reg, int sf)
> return v;
> }
>
> +/* Get a temporary register containing the current vector length */
> +TCGv_i64 get_cpu_vec_len(DisasContext *s)
> +{
> + TCGv_i64 v = new_tmp_a64(s);
> + tcg_gen_mov_i64(v, cpu_zcr_el1);
> + tcg_gen_andi_i64(v, v, 0xf);
> + tcg_gen_addi_i64(v, v, 1);
> + tcg_gen_muli_i64(v, v, 16);
> + return v;
> +}
> +
> /* Return the offset into CPUARMState of a slice (from
> * the least significant end) of FP register Qn (ie
> * Dn, Sn, Hn or Bn).
> diff --git a/target/arm/translate-a64.h b/target/arm/translate-a64.h
> index 63d958c..fcfbc90 100644
> --- a/target/arm/translate-a64.h
> +++ b/target/arm/translate-a64.h
> @@ -35,6 +35,7 @@ TCGv_i64 cpu_reg(DisasContext *s, int reg);
> TCGv_i64 cpu_reg_sp(DisasContext *s, int reg);
> TCGv_i64 read_cpu_reg(DisasContext *s, int reg, int sf);
> TCGv_i64 read_cpu_reg_sp(DisasContext *s, int reg, int sf);
> +TCGv_i64 get_cpu_vec_len(DisasContext *s);
> void write_fp_dreg(DisasContext *s, int reg, TCGv_i64 v);
> TCGv_ptr get_fpstatus_ptr(bool);
> bool logic_imm_decode_wmask(uint64_t *result, unsigned int immn,
> diff --git a/target/arm/translate-sve.c b/target/arm/translate-sve.c
> index 3a2eb51..d5ad88b 100644
> --- a/target/arm/translate-sve.c
> +++ b/target/arm/translate-sve.c
> @@ -945,7 +945,9 @@ static bool trans_ADDVL(DisasContext *s, arg_ADDVL *a)
> {
> TCGv_i64 rd = cpu_reg_sp(s, a->rd);
> TCGv_i64 rn = cpu_reg_sp(s, a->rn);
> - tcg_gen_addi_i64(rd, rn, a->imm * vec_full_reg_size(s));
> + TCGv_i64 ln = get_cpu_vec_len(s);
> + tcg_gen_muli_i64(ln, ln, a->imm);
> + tcg_gen_add_i64(rd, rn, ln);
> return true;
> }
>
> @@ -960,7 +962,8 @@ static bool trans_ADDPL(DisasContext *s, arg_ADDPL *a)
> static bool trans_RDVL(DisasContext *s, arg_RDVL *a)
> {
> TCGv_i64 reg = cpu_reg(s, a->rd);
> - tcg_gen_movi_i64(reg, a->imm * vec_full_reg_size(s));
> + TCGv_i64 ln = get_cpu_vec_len(s);
> + tcg_gen_muli_i64(reg, ln, a->imm);
> return true;
> }
--
Alex Bennée
next prev parent reply other threads:[~2019-03-13 16:13 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-03-13 14:41 [Qemu-arm] [PATCH] Re-evaluate SVE vector length everytime ADDVL is executed Amir Charif
2019-03-13 16:13 ` Alex Bennée [this message]
2019-03-13 16:34 ` [Qemu-arm] [Qemu-devel] " Richard Henderson
2019-03-14 9:30 ` Amir CHARIF
2019-03-14 10:51 ` Alex Bennée
2019-03-14 15:09 ` Richard Henderson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87y35i4us2.fsf@zen.linaroharston \
--to=alex.bennee@linaro.org \
--cc=amir.charif@cea.fr \
--cc=qemu-arm@nongnu.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.