From: Richard Henderson <richard.henderson@linaro.org>
To: Max Chou <max.chou@sifive.com>,
qemu-devel@nongnu.org, qemu-riscv@nongnu.org
Cc: Paolo Bonzini <pbonzini@redhat.com>,
Palmer Dabbelt <palmer@dabbelt.com>,
Alistair Francis <alistair.francis@wdc.com>,
Bin Meng <bmeng.cn@gmail.com>, Weiwei Li <liwei1518@gmail.com>,
Daniel Henrique Barboza <dbarboza@ventanamicro.com>,
Liu Zhiwei <zhiwei_liu@linux.alibaba.com>
Subject: Re: [RFC PATCH v4 4/5] target/riscv: rvv: Provide group continuous ld/st flow for unit-stride ld/st instructions
Date: Wed, 19 Jun 2024 21:38:38 -0700 [thread overview]
Message-ID: <acbf0fae-51be-4aa1-ba79-94345ecfbb21@linaro.org> (raw)
In-Reply-To: <20240613175122.1299212-5-max.chou@sifive.com>
On 6/13/24 10:51, Max Chou wrote:
> The vector unmasked unit-stride and whole register load/store
> instructions will load/store continuous memory. If the endian of both
> the host and guest architecture are the same, then we can group the
> element load/store to load/store more data at a time.
>
> Signed-off-by: Max Chou <max.chou@sifive.com>
> ---
> target/riscv/vector_helper.c | 160 +++++++++++++++++++++++++----------
> 1 file changed, 117 insertions(+), 43 deletions(-)
>
> diff --git a/target/riscv/vector_helper.c b/target/riscv/vector_helper.c
> index 793337a6f96..cba46ef16a5 100644
> --- a/target/riscv/vector_helper.c
> +++ b/target/riscv/vector_helper.c
> @@ -457,6 +457,69 @@ GEN_VEXT_ST_ELEM(ste_h, uint16_t, H2, stw)
> GEN_VEXT_ST_ELEM(ste_w, uint32_t, H4, stl)
> GEN_VEXT_ST_ELEM(ste_d, uint64_t, H8, stq)
>
> +static inline uint32_t
> +vext_group_ldst_host(CPURISCVState *env, void *vd, uint32_t byte_end,
> + uint32_t byte_offset, void *host, uint32_t esz,
> + bool is_load)
> +{
> + uint32_t group_size;
> + static vext_ldst_elem_fn_host * const fns[2][4] = {
> + /* Store */
> + { ste_b_host, ste_h_host, ste_w_host, ste_d_host },
> + /* Load */
> + { lde_b_host, lde_h_host, lde_w_host, lde_d_host }
> + };
> + vext_ldst_elem_fn_host *fn;
> +
> + if (byte_offset + 8 < byte_end) {
> + group_size = MO_64;
> + } else if (byte_offset + 4 < byte_end) {
> + group_size = MO_32;
> + } else if (byte_offset + 2 < byte_end) {
> + group_size = MO_16;
> + } else {
> + group_size = MO_8;
> + }
> +
> + fn = fns[is_load][group_size];
> + fn(vd, byte_offset, host + byte_offset);
This is a really bad idea. The table and indirect call means that none of these will be
properly inlined. Anyway...
> +
> + return 1 << group_size;
> +}
> +
> +static inline void
> +vext_continus_ldst_tlb(CPURISCVState *env, vext_ldst_elem_fn_tlb *ldst_tlb,
> + void *vd, uint32_t evl, target_ulong addr,
> + uint32_t reg_start, uintptr_t ra, uint32_t esz,
> + bool is_load)
> +{
> + for (; reg_start < evl; reg_start++, addr += esz) {
> + ldst_tlb(env, adjust_addr(env, addr), reg_start * esz, vd, ra);
> + }
> +}
> +
> +static inline void
> +vext_continus_ldst_host(CPURISCVState *env, vext_ldst_elem_fn_host *ldst_host,
> + void *vd, uint32_t evl, uint32_t reg_start, void *host,
> + uint32_t esz, bool is_load)
> +{
> +#if TARGET_BIG_ENDIAN != HOST_BIG_ENDIAN
> + for (; reg_start < evl; reg_start++) {
> + uint32_t byte_off = reg_start * esz;
> + ldst_host(vd, byte_off, host + byte_off);
> + }
> +#else
> + uint32_t group_byte;
> + uint32_t byte_start = reg_start * esz;
> + uint32_t byte_end = evl * esz;
> + while (byte_start < byte_end) {
> + group_byte = vext_group_ldst_host(env, vd, byte_end, byte_start, host,
> + esz, is_load);
> + byte_start += group_byte;
> + }
... this is much better handled with memcpy, given that you know endianness matches.
r~
next prev parent reply other threads:[~2024-06-20 4:39 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-13 17:51 [RFC PATCH v4 0/5] Improve the performance of RISC-V vector unit-stride/whole register ld/st instructions Max Chou
2024-06-13 17:51 ` [RFC PATCH v4 1/5] accel/tcg: Avoid unnecessary call overhead from qemu_plugin_vcpu_mem_cb Max Chou
2024-06-20 2:48 ` Richard Henderson
2024-06-20 7:50 ` Frank Chang
2024-06-20 14:27 ` Alex Bennée
2024-06-13 17:51 ` [RFC PATCH v4 2/5] target/riscv: rvv: Provide a fast path using direct access to host ram for unmasked unit-stride load/store Max Chou
2024-06-20 4:29 ` Richard Henderson
2024-06-25 15:14 ` Max Chou
2024-06-20 4:41 ` Richard Henderson
2024-06-13 17:51 ` [RFC PATCH v4 3/5] target/riscv: rvv: Provide a fast path using direct access to host ram for unit-stride whole register load/store Max Chou
2024-06-13 17:51 ` [RFC PATCH v4 4/5] target/riscv: rvv: Provide group continuous ld/st flow for unit-stride ld/st instructions Max Chou
2024-06-20 4:38 ` Richard Henderson [this message]
2024-06-24 6:50 ` Max Chou
2024-06-13 17:51 ` [RFC PATCH v4 5/5] target/riscv: Inline unit-stride ld/st and corresponding functions for performance Max Chou
2024-06-20 4:44 ` 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=acbf0fae-51be-4aa1-ba79-94345ecfbb21@linaro.org \
--to=richard.henderson@linaro.org \
--cc=alistair.francis@wdc.com \
--cc=bmeng.cn@gmail.com \
--cc=dbarboza@ventanamicro.com \
--cc=liwei1518@gmail.com \
--cc=max.chou@sifive.com \
--cc=palmer@dabbelt.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-riscv@nongnu.org \
--cc=zhiwei_liu@linux.alibaba.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).