Re: [PATCH] soft-fp: Update soft-fp from glibc

2022-08-16 Thread Kito Cheng via Gcc-patches
Hi Joseph: I saw other soft-fp updates will also ask for some approval on the list too, anyway I know that now :) Thanks! On Tue, Aug 16, 2022 at 10:18 PM Joseph Myers wrote: > > On Tue, 16 Aug 2022, Kito Cheng wrote: > > > ping > > Under our write access policies, "Importing files maintained o

Re: [PATCH] soft-fp: Update soft-fp from glibc

2022-08-16 Thread Joseph Myers
On Tue, 16 Aug 2022, Kito Cheng wrote: > ping Under our write access policies, "Importing files maintained outside the tree from their official versions." does not require review or approval. -- Joseph S. Myers jos...@codesourcery.com

Re: [PATCH] soft-fp: Update soft-fp from glibc

2022-08-16 Thread Kito Cheng via Gcc-patches
ping On Wed, Aug 10, 2022 at 10:23 PM Kito Cheng wrote: > > This patch is updating all soft-fp from glibc, most changes are > copyright years update, removing "Contributed by" lines and update URL for > license, and changes other than those update are adding conversion > function between IEEE hal

[PATCH] soft-fp: Update soft-fp from glibc

2022-08-10 Thread Kito Cheng
This patch is updating all soft-fp from glibc, most changes are copyright years update, removing "Contributed by" lines and update URL for license, and changes other than those update are adding conversion function between IEEE half and 32-bit/64-bit integer, those functions are required by RISC-V

[PATCH] soft-fp: Update soft-fp from glibc

2021-07-07 Thread H.J. Lu via Gcc-patches
From: liuhongt 1. Add __extendhfdf2/__extendhfsf2 to return an IEEE half converted to IEEE double/single. 2. Add __truncdfhf2/__extendsfhf2 to truncate IEEE double/single into IEEE half. 3. Add __eqhf2/__nehf2 to return 0 if a == b and a,b are not NAN, otherwise return 1. These are needed by x86

Re: [PATCH] soft-fp: Update soft-fp from glibc

2021-07-01 Thread H.J. Lu via Gcc-patches
On Thu, Jul 1, 2021 at 1:12 PM Jeff Law wrote: > > > > On 7/1/2021 1:28 PM, H.J. Lu via Gcc-patches wrote: > > This patch is updating soft-fp from glibc: > > > > 1. Add __extendhfxf2 to return an IEEE half converted to IEEE extended. > > 2. Add __truncxfhf2 to truncate IEEE extended into IEEE half

Re: [PATCH] soft-fp: Update soft-fp from glibc

2021-07-01 Thread Jeff Law via Gcc-patches
On 7/1/2021 1:28 PM, H.J. Lu via Gcc-patches wrote: This patch is updating soft-fp from glibc: 1. Add __extendhfxf2 to return an IEEE half converted to IEEE extended. 2. Add __truncxfhf2 to truncate IEEE extended into IEEE half. These are needed by x86 _Float16 support. Presumably these are

[PATCH] soft-fp: Update soft-fp from glibc

2021-07-01 Thread H.J. Lu via Gcc-patches
This patch is updating soft-fp from glibc: 1. Add __extendhfxf2 to return an IEEE half converted to IEEE extended. 2. Add __truncxfhf2 to truncate IEEE extended into IEEE half. These are needed by x86 _Float16 support. --- libgcc/soft-fp/extendhfxf2.c | 53 l

Re: [PATCH] soft-fp: Update soft-fp from glibc

2019-05-16 Thread Joseph Myers
On Wed, 15 May 2019, H.J. Lu wrote: > This patch is updating all soft-fp from glibc, most changes are > copyright years update, and changes other than years update are > > * soft-fp/extenddftf2.c: Use "_FP_W_TYPE_SIZE < 64" to check if > 4_FP_W_TYPEs are used for IEEE quad precision.

[PATCH] soft-fp: Update soft-fp from glibc

2019-05-15 Thread H.J. Lu
This patch is updating all soft-fp from glibc, most changes are copyright years update, and changes other than years update are * soft-fp/extenddftf2.c: Use "_FP_W_TYPE_SIZE < 64" to check if 4_FP_W_TYPEs are used for IEEE quad precision. * soft-fp/extendhftf2.c: Likewise.