Re: [PATCH 25/72] softfloat: Rearrange FloatParts64

2021-05-12 Thread Alex Bennée
Richard Henderson writes: > On 5/11/21 8:57 AM, Alex Bennée wrote: >>> +union { >>> +/* Routines that know the structure may reference the singular >>> name. */ >>> +uint64_t frac; >>> +/* >>> + * Routines expanded with multiple structures reference "hi" and

Re: [PATCH 25/72] softfloat: Rearrange FloatParts64

2021-05-11 Thread Richard Henderson
On 5/11/21 8:57 AM, Alex Bennée wrote: +union { +/* Routines that know the structure may reference the singular name. */ +uint64_t frac; +/* + * Routines expanded with multiple structures reference "hi" and "lo". + * In this structure, the one word is b

Re: [PATCH 25/72] softfloat: Rearrange FloatParts64

2021-05-11 Thread Alex Bennée
Richard Henderson writes: > Shuffle the fraction to the end, otherwise sort by size. > Add frac_hi and frac_lo members to alias frac. > > Signed-off-by: Richard Henderson > --- > fpu/softfloat.c | 13 +++-- > 1 file changed, 11 insertions(+), 2 deletions(-) > > diff --git a/fpu/softfl

[PATCH 25/72] softfloat: Rearrange FloatParts64

2021-05-07 Thread Richard Henderson
Shuffle the fraction to the end, otherwise sort by size. Add frac_hi and frac_lo members to alias frac. Signed-off-by: Richard Henderson --- fpu/softfloat.c | 13 +++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/fpu/softfloat.c b/fpu/softfloat.c index 2123453d40..2d6f