This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Rewrite some jump.c routines to use flags


> +/* Invoke T (CODE, ORDER, SIGNEDNESS, CAN_TRAP) for each comparison, where:
> +
> +   - CODE is the rtl comparison code
> +   - ORDER is the OR of the conditions under which CODE returns true
> +   - SIGNEDNESS is the signedness of COND, or 0 if it is sign-agnostic
> +   - CAN_TRAP is true if CODE can trap on some forms of NaN.  */

Are you talking about any NaNs here or just quiet NaNs?  If the former, what's 
the point to encode anything for signaling NaNs?

> +#define FOR_MAPPING(T) \
> +  T (EQ,	FLAGS_EQ,			0,		true) \
> +  T (NE,	~FLAGS_EQ,			0,		true) \

This doesn't look correct: EQ and NE do not trap on quiet NaNs, unlike GT/LT.

-- 
Eric Botcazou


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]