[PULL 0/7] softfloat patch queue

Richard Henderson posted 7 patches 3 years, 8 months ago
Test docker-quick@centos7 failed
Test docker-mingw@fedora failed
Test checkpatch failed
Test FreeBSD failed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20200830023203.612312-1-richard.henderson@linaro.org
Maintainers: "Alex Bennée" <alex.bennee@linaro.org>, Aurelien Jarno <aurelien@aurel32.net>, Peter Maydell <peter.maydell@linaro.org>
There is a newer version of this series
include/fpu/softfloat-types.h  |   5 +
include/fpu/softfloat.h        | 235 +++++++++++++++++++++++
fpu/softfloat.c                | 425 +++++++++++++++++++++++++++++++++++++++++
target/riscv/vector_helper.c   |  25 ---
fpu/softfloat-specialize.c.inc |  38 ++++
5 files changed, 703 insertions(+), 25 deletions(-)
[PULL 0/7] softfloat patch queue
Posted by Richard Henderson 3 years, 8 months ago
The following changes since commit ea1bb830cb021cca2e361091cf728aaabc8c0654:

  Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20200828' into staging (2020-08-28 15:14:40 +0100)

are available in the Git repository at:

  https://github.com/rth7680/qemu.git tags/pull-sf-20200829

for you to fetch changes up to c53b1079334c41b342a8ad3b7ccfd51bf5427f5a:

  softfloat: Define comparison operations for bfloat16 (2020-08-29 19:25:42 -0700)

----------------------------------------------------------------
* float16 comparison wrappers
* float16 conversions to/from 8-bit integers
* bfloat16 support

----------------------------------------------------------------
Frank Chang (1):
      softfloat: Add fp16 and uint8/int8 conversion functions

Kito Cheng (1):
      softfloat: Implement the full set of comparisons for float16

LIU Zhiwei (3):
      softfloat: Define operations for bfloat16
      softfloat: Define convert operations for bfloat16
      softfloat: Define misc operations for bfloat16

Richard Henderson (1):
      softfloat: Define comparison operations for bfloat16

Stephen Long (1):
      softfloat: Add float16_is_normal

 include/fpu/softfloat-types.h  |   5 +
 include/fpu/softfloat.h        | 235 +++++++++++++++++++++++
 fpu/softfloat.c                | 425 +++++++++++++++++++++++++++++++++++++++++
 target/riscv/vector_helper.c   |  25 ---
 fpu/softfloat-specialize.c.inc |  38 ++++
 5 files changed, 703 insertions(+), 25 deletions(-)

Re: [PULL 0/7] softfloat patch queue
Posted by Peter Maydell 3 years, 8 months ago
On Sun, 30 Aug 2020 at 03:32, Richard Henderson
<richard.henderson@linaro.org> wrote:
>
> The following changes since commit ea1bb830cb021cca2e361091cf728aaabc8c0654:
>
>   Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20200828' into staging (2020-08-28 15:14:40 +0100)
>
> are available in the Git repository at:
>
>   https://github.com/rth7680/qemu.git tags/pull-sf-20200829
>
> for you to fetch changes up to c53b1079334c41b342a8ad3b7ccfd51bf5427f5a:
>
>   softfloat: Define comparison operations for bfloat16 (2020-08-29 19:25:42 -0700)
>
> ----------------------------------------------------------------
> * float16 comparison wrappers
> * float16 conversions to/from 8-bit integers
> * bfloat16 support
>


Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/5.2
for any user-visible changes.

-- PMM