qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Richard Henderson <richard.henderson@linaro.org>
To: Christoph Muellner <christoph.muellner@vrull.eu>,
	qemu-riscv@nongnu.org, qemu-devel@nongnu.org,
	Alistair Francis <alistair.francis@wdc.com>,
	Bin Meng <bin.meng@windriver.com>,
	Philipp Tomsich <philipp.tomsich@vrull.eu>,
	Palmer Dabbelt <palmer@dabbelt.com>,
	Jeff Law <jeffreyalaw@gmail.com>,
	Tsukasa OI <research_trasio@irq.a4lg.com>,
	liweiwei@iscas.ac.cn,
	Daniel Henrique Barboza <dbarboza@ventanamicro.com>,
	Liu Zhiwei <zhiwei_liu@linux.alibaba.com>,
	Rob Bradford <rbradford@rivosinc.com>
Subject: Re: [PATCH v6] riscv: Add support for the Zfa extension
Date: Fri, 30 Jun 2023 19:49:11 +0200	[thread overview]
Message-ID: <50c87d7b-a5b0-9a33-e527-a76811aa18c7@linaro.org> (raw)
In-Reply-To: <20230630170230.1043454-1-christoph.muellner@vrull.eu>

On 6/30/23 19:02, Christoph Muellner wrote:
> From: Christoph Müllner <christoph.muellner@vrull.eu>
> 
> This patch introduces the RISC-V Zfa extension, which introduces
> additional floating-point instructions:
> * fli (load-immediate) with pre-defined immediates
> * fminm/fmaxm (like fmin/fmax but with different NaN behaviour)
> * fround/froundmx (round to integer)
> * fcvtmod.w.d (Modular Convert-to-Integer)
> * fmv* to access high bits of float register bigger than XLEN
> * Quiet comparison instructions (fleq/fltq)
> 
> Zfa defines its instructions in combination with the following extensions:
> * single-precision floating-point (F)
> * double-precision floating-point (D)
> * quad-precision floating-point (Q)
> * half-precision floating-point (Zfh)
> 
> Since QEMU does not support the RISC-V quad-precision floating-point
> ISA extension (Q), this patch does not include the instructions that
> depend on this extension. All other instructions are included in this
> patch.
> 
> The Zfa specification can be found here:
>    https://github.com/riscv/riscv-isa-manual/blob/master/src/zfa.tex
> The Zfa specifciation is frozen and is in public review since May 3, 2023:
>    https://groups.google.com/a/groups.riscv.org/g/isa-dev/c/SED4ntBkabg
> 
> The patch also includes a TCG test for the fcvtmod.w.d instruction.
> The test cases test for correct results and flag behaviour.
> Note, that the Zfa specification requires fcvtmod's flag behaviour
> to be identical to a fcvt with the same operands (which is also
> tested).
> 
> Signed-off-by: Christoph Müllner <christoph.muellner@vrull.eu>
> 
> ---
> 
> This patch depends on float64_to_int64_modulo(), which is provided
> by a patchset from Richard Henderson:
>    https://lists.nongnu.org/archive/html/qemu-devel/2023-05/msg07022.html
> 
> Changes in v6:
> * Address issues in trans_fmvp_d_x() and trans_fmvh_x_d()
> 
> Changes in v5:
> * Merge all three commits
> * Address issues reported by Richard
> 
> Changes in v4:
> * Rebase and resolve conflicts
> * Fix whitespace issue (thanks Rob)
> * Add patch to implemnt fcvtmod.w.d using float64_to_int64_modulo()
> * Add (demo) test for fcvtmod.w.d
> 
> Changes in v3:
> * Add disassembler support
> * Enable Zfa by default
> * Remove forgotten comments in the decoder
> * Fix fli translation code (use movi instead of ld)
> * Tested against SPEC CPU2017 fprate
> * Use floatN_[min|max] for f[min|max]m.* instructions
> 
> Changes in v2:
> * Remove calls to mark_fs_dirty() in comparison trans functions
> * Rewrite fround(nx) using float*_round_to_int()
> * Move fli* to translation unit and fix NaN-boxing of NaN values
> * Reimplement FCVTMOD.W.D
> * Add use of second register in trans_fmvp_d_x()
> 
>   disas/riscv.c                             | 151 +++++++
>   target/riscv/cpu.c                        |   8 +
>   target/riscv/cpu_cfg.h                    |   1 +
>   target/riscv/fpu_helper.c                 | 154 +++++++
>   target/riscv/helper.h                     |  19 +
>   target/riscv/insn32.decode                |  26 ++
>   target/riscv/insn_trans/trans_rvzfa.c.inc | 521 ++++++++++++++++++++++
>   target/riscv/translate.c                  |   1 +
>   tests/tcg/riscv64/Makefile.target         |   6 +
>   tests/tcg/riscv64/test-fcvtmod.c          | 345 ++++++++++++++
>   10 files changed, 1232 insertions(+)
>   create mode 100644 target/riscv/insn_trans/trans_rvzfa.c.inc
>   create mode 100644 tests/tcg/riscv64/test-fcvtmod.c

Reviewed-by: Richard Henderson <richard.henderson@linaro.org>


r~


  reply	other threads:[~2023-06-30 17:49 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-06-30 17:02 [PATCH v6] riscv: Add support for the Zfa extension Christoph Muellner
2023-06-30 17:49 ` Richard Henderson [this message]
2023-07-03  3:57 ` Alistair Francis
2023-07-03  6:21   ` Christoph Müllner

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=50c87d7b-a5b0-9a33-e527-a76811aa18c7@linaro.org \
    --to=richard.henderson@linaro.org \
    --cc=alistair.francis@wdc.com \
    --cc=bin.meng@windriver.com \
    --cc=christoph.muellner@vrull.eu \
    --cc=dbarboza@ventanamicro.com \
    --cc=jeffreyalaw@gmail.com \
    --cc=liweiwei@iscas.ac.cn \
    --cc=palmer@dabbelt.com \
    --cc=philipp.tomsich@vrull.eu \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-riscv@nongnu.org \
    --cc=rbradford@rivosinc.com \
    --cc=research_trasio@irq.a4lg.com \
    --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).