soft-fp: Fix _FP_TO_INT latent bug in overflow handling.
commit0022e688d082761a1e15b19121303cafbdad33ec
authorJoseph Myers <joseph@codesourcery.com>
Thu, 9 Oct 2014 01:07:10 +0000 (9 01:07 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Thu, 9 Oct 2014 01:07:10 +0000 (9 01:07 +0000)
treefeb146a250a010d44ebcabca982503ca095a28f8
parent73e28d9c885fdfed91e6d70c4aab7e8e801818e3
soft-fp: Fix _FP_TO_INT latent bug in overflow handling.

This patch fixes a latent bug in _FP_TO_INT regarding handling of
arguments with maximum exponent (infinities and NaNs).  If the maximum
exponent is below that calculated as an overflow threshold, such
values would incorrectly be treated as normal values for the purposes
of the conversion.  This could not occur for any of the conversions
actually occurring in glibc, libgcc or the Linux kernel (the maximum
exponent for float is, just, big enough to ensure overflow for
unsigned __int128), but would apply if soft-fp were used for IEEE
binary16.  Appropriate checks are inserted to ensure that the maximum
exponent is always treated as an overflowing exponent, and never as a
normal one.

Tested for powerpc-nofpu that the disassembly of installed shared
libraries is unchanged by this patch.

* soft-fp/op-common.h (_FP_TO_INT): Ensure maximum exponent is
treated as invalid conversion, not as normal exponent.
ChangeLog
soft-fp/op-common.h