target/arm: Implement FPCR.EBF=1 semantics for bfdotadd()
authorPeter Maydell <peter.maydell@linaro.org>
Tue, 3 Sep 2024 16:22:16 +0000 (17:22 +0100)
committerPeter Maydell <peter.maydell@linaro.org>
Thu, 5 Sep 2024 12:12:36 +0000 (13:12 +0100)
commit0e1850182a1faae23fcafc069a0af929930b20bb
tree27d3a7bd149f2da312f8a7e0b39785ff21153dcd
parent09b0d9e0ad24e875c006e024e184be8b79d2ad11
target/arm: Implement FPCR.EBF=1 semantics for bfdotadd()

Implement the FPCR.EBF=1 semantics for bfdotadd() operations:
 * is_ebf() sets up fpst and fpst_odd
 * bfdotadd_ebf() implements the fused paired-multiply-and-add
   operation that we need

The paired-multiply-and-add is similar to f16_dotadd() and
we use the same trick here as in that function, but the inputs
here are bfloat16 rather than float16.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
target/arm/tcg/vec_helper.c