isinf() on NaN args

David Schultz das at CSAIL.MIT.EDU
Wed Jun 5 16:06:01 UTC 2013


On Wed, Jun 05, 2013, Bruce Evans wrote:
> Is isinf(x) (or even fpclassify(x)) permitted to raise FE_INVALID if
> x is a (quiet) NaN?  It shouldn't, but I can't find where C99 requires
> this.  I can only find where C99 requires FE_INVALID to not be raised
> for comparison macros.
> 
> It should raise if x is a signaling NaN, but C99 doesn't specify
> signaling NaNs and the hardware behaviour is more varied and the
> software bugs are larger for signaling NaNs, so getting this wrong in
> many cases doesn't matter much.

The equivalent operation in IEEE-754R never raises an exception,
even for signaling NaNs.  If we ignore signaling NaNs for a
moment, I think the general idea is to raise an invalid exception
in two situations:

 1. at the moment when a NaN is produced from non-NaN inputs
    (this is similar to the rule that overflow is raised only
    when the overflow first occurs)

 2. for operations that don't return a floating-point result,
    whenever there's no sensible answer to return

The second case covers things like conversion to integer, ilogb,
and comparison operators.  One could argue that classification
macros like isinf() always have a sensible true or false answer,
though, because you're asking a question about what kind of value
you have.


More information about the freebsd-numerics mailing list