Skip to content

Commit 7d5dc7d

Browse files
committedMay 31, 2023
libm: Fix carry condition in floor/ceil
The floor and ceil implementations work 32-bits at a time, so they have to special case a carry from the lower 32-bit value into the higher value. We need to be explicit and use unsigned compares to detect when the overflow occurs. Closes: picolibc#480 Signed-off-by: Keith Packard <[email protected]>
1 parent d07c38f commit 7d5dc7d

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed
 

‎newlib/libm/math/s_ceil.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ ceil64(__float64 x)
6363
i0 += 1;
6464
else {
6565
j = i1 + (1 << (52 - j0));
66-
if (j < i1)
66+
if ((__uint32_t) j < (__uint32_t) i1)
6767
i0 += 1; /* got a carry */
6868
i1 = j;
6969
}

‎newlib/libm/math/s_floor.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ floor64(__float64 x)
104104
i0 += 1;
105105
else {
106106
j = i1 + (1 << (52 - j0));
107-
if (j < i1)
107+
if ((__uint32_t) j < (__uint32_t) i1)
108108
i0 += 1; /* got a carry */
109109
i1 = j;
110110
}

‎newlib/libm/test/ceil_vec.c

+1
Original file line numberDiff line numberDiff line change
@@ -300,6 +300,7 @@
300300
{64, 0,123,__LINE__, 0x403b0000, 0x00000000, 0x403a1999, 0x99999996}, /* 27=f(26.1)*/
301301
{64, 0,123,__LINE__, 0x403c0000, 0x00000000, 0x403bcccc, 0xccccccc9}, /* 28=f(27.8)*/
302302
{64, 0,123,__LINE__, 0x403e0000, 0x00000000, 0x403d7fff, 0xfffffffc}, /* 30=f(29.5)*/
303+
{64, 0,123,__LINE__, 0x41500000, 0x00000000, 0x414fffff, 0xc0000000}, /* 0x1p+22=f(0x1.fffffcp+21)*/
303304
{64, 0,123,__LINE__, 0x7ff80000, 0x00000000, 0x7ff80000, 0x00000000}, /* qnan=f(qnan)*/
304305
{64, 0,123,__LINE__, 0x7ff80000, 0x00000000, 0x7ff40000, 0x00000000}, /* qnan=f(snan)*/
305306
{64, 0,123,__LINE__, 0x7ff00000, 0x00000000, 0x7ff00000, 0x00000000}, /* +inf=f(+inf)*/

‎newlib/libm/test/floor_vec.c

+1
Original file line numberDiff line numberDiff line change
@@ -300,6 +300,7 @@
300300
{64, 0,123,__LINE__, 0x403a0000, 0x00000000, 0x403a1999, 0x99999996}, /* 26=f(26.1)*/
301301
{64, 0,123,__LINE__, 0x403b0000, 0x00000000, 0x403bcccc, 0xccccccc9}, /* 27=f(27.8)*/
302302
{64, 0,123,__LINE__, 0x403d0000, 0x00000000, 0x403d7fff, 0xfffffffc}, /* 29=f(29.5)*/
303+
{64, 0,123,__LINE__, 0xc1500000, 0x00000000, 0xc14fffff, 0xc0000000}, /* -0x1p+22=f(-0x1.fffffcp+21)*/
303304
{64, 0,123,__LINE__, 0x7ff80000, 0x00000000, 0x7ff80000, 0x00000000}, /* qnan=f(qnan)*/
304305
{64, 0,123,__LINE__, 0x7ff80000, 0x00000000, 0x7ff40000, 0x00000000}, /* qnan=f(snan)*/
305306
{64, 0,123,__LINE__, 0x7ff00000, 0x00000000, 0x7ff00000, 0x00000000}, /* +inf=f(+inf)*/

0 commit comments

Comments
 (0)