<div dir="ltr">There is no problem to restore the previous behavior if -ffast-math is specified. But why cannot this RFC be used  for the discussion of this behavior?<div><br></div><div>Making a real check instead of optimizing out the function seems safe, as it does not break functionality. Could you please share, what is your concern?<br><div><br clear="all"><div><div dir="ltr" class="gmail_signature" data-smartmail="gmail_signature">Thanks,<br>--Serge<br></div></div><br></div></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Wed, Aug 25, 2021 at 12:53 AM Roman Lebedev <<a href="mailto:lebedev.ri@gmail.com">lebedev.ri@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Regardless of everything, i would like to see a patch that restores<br>
the -ffast-math handling, and *then* the RFC on what the is-nan check<br>
should do when -ffast-math is present.<br>
It is more than possible that the RFC will succeed,<br>
but i don't think a change like that should happen the way it did.<br>
<br>
<a href="https://gcc.gnu.org/bugzilla/show_bug.cgi?id=84949" rel="noreferrer" target="_blank">https://gcc.gnu.org/bugzilla/show_bug.cgi?id=84949</a> was mentioned as<br>
motivational, but i don't see any resolution there,<br>
it's not even in "confirmed" state.<br>
<br>
The change landed *after* the branch, so i think we are not too<br>
constrained on the timeline for it. If there is no RFC before Aug 30'th,<br>
i will be posting a patch to revert said change myself.<br>
<br>
<br>
Roman.<br>
<br>
On Tue, Aug 24, 2021 at 8:34 PM Serge Pavlov via cfe-dev<br>
<<a href="mailto:cfe-dev@lists.llvm.org" target="_blank">cfe-dev@lists.llvm.org</a>> wrote:<br>
><br>
> On Tue, Aug 24, 2021 at 10:59 PM Sanjay Patel via cfe-dev <<a href="mailto:cfe-dev@lists.llvm.org" target="_blank">cfe-dev@lists.llvm.org</a>> wrote:<br>
>><br>
>> Thanks for making this clearer. So there's general consensus that we need an intrinsic to represent isnan()...<br>
>> 1. How many others like this do we need? (see the list that James provided a couple of mails earlier)<br>
><br>
><br>
> We need all classification functions: isnan, isinf, isfinite, isnormal, issubnormal, iszero, fpclassify. In strict exception mode even iszero requires special treatment, it cannot be implemented as compare with zero, because the argument may be a signaling NaN.<br>
><br>
>> 2. How do we introduce these and limit regressions? D104854 had clang produce isnan() for all modes simultaneously, but that leads to problems like: <a href="https://llvm.org/PR51556" rel="noreferrer" target="_blank">https://llvm.org/PR51556</a> . I suggest introducing these in LLVM only or in clang with strictFP modes only as a 1st step, so we're not causing perf regressions that require reverting large patches.<br>
><br>
><br>
> The patch is already 3 weeks in the tree. PR51556 is the only problem so far and it is a missed optimization, not malfunction. Besides, as it is said in the ticket, "the SLP call vectorization fails as we don't properly account for calls that have different return/arg types", so the problem already existed, this intrinsic only elucidated it. I think if in a couple of weeks no new problems will be found, work in this direction can be continued, as if there were something broken, it would be already reported.<br>
>><br>
>><br>
>> On Tue, Aug 24, 2021 at 8:26 AM Kevin Neal <<a href="mailto:Kevin.Neal@sas.com" target="_blank">Kevin.Neal@sas.com</a>> wrote:<br>
>>><br>
>>> It probably doesn’t help that IEEE 754-2019 uses the word “signal” to mean, paraphrased, “set a bit in a status register and continue producing a result with no trap”, and that’s in the default FP environment. So IEEE “signaling” is not Unix “signaling”.<br>
>>><br>
>>><br>
>>><br>
>>> Once one picks up on that distinction the IEEE 754 document reads a lot like Andy’s description of x86-64 behavior.<br>
>>><br>
>>><br>
>>><br>
>>> From: Kaylor, Andrew <<a href="mailto:andrew.kaylor@intel.com" target="_blank">andrew.kaylor@intel.com</a>><br>
>>> Sent: Monday, August 23, 2021 6:31 PM<br>
>>> To: Arthur O'Dwyer <<a href="mailto:arthur.j.odwyer@gmail.com" target="_blank">arthur.j.odwyer@gmail.com</a>>; Sanjay Patel <<a href="mailto:spatel@rotateright.com" target="_blank">spatel@rotateright.com</a>><br>
>>> Cc: Kevin Neal <<a href="mailto:Kevin.Neal@sas.com" target="_blank">Kevin.Neal@sas.com</a>>; Wang, Pengfei <<a href="mailto:pengfei.wang@intel.com" target="_blank">pengfei.wang@intel.com</a>>; <a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>; Clang Dev <<a href="mailto:cfe-dev@lists.llvm.org" target="_blank">cfe-dev@lists.llvm.org</a>><br>
>>> Subject: RE: [cfe-dev] [llvm-dev] Intrinsic llvm::isnan<br>
>>><br>
>>><br>
>>><br>
>>> EXTERNAL<br>
>>><br>
>>> I think the confusion here has to do with what it means for the optimizer to assume that “floating-point exceptions will be masked”. What I’m about to say may be specific to the x86-64-based processor behavior because that’s the one I know, but I think other architectures will have similar behavior but possibly with different terms?<br>
>>><br>
>>><br>
>>><br>
>>> If a floating point exception occurs in an operation and that exception is masked in the floating point control registers, the status bit for that exception will be set and nothing else will happen. If a floating point exception occurs in an operation and that exception is NOT masked in the floating point control registers, an exception handler will be called.<br>
>>><br>
>>><br>
>>><br>
>>> So, what the current documentation means to say is that the optimizer may assume that the status flags will not be read and that no exception handler will be called if a floating point exception occurs. Basically, it means that floating point exceptions will be ignored in all ways.<br>
>>><br>
>>><br>
>>><br>
>>><br>
>>><br>
>>> > It's still not clear to me if there's a benefit from having an intrinsic vs. one more exception mode ("none" or "off").<br>
>>><br>
>>><br>
>>><br>
>>> The key point to recognize here is that the metadata arguments to the constrained intrinsics are intended to describe assumptions that can or cannot be made. They are not intended to bring about the state that they describe. So, for example, if the rounding mode argument is set to “fpround.tonearest” that means the optimizer can assume that the processor is set to use the “tonearest” rounding mode, but it does not enforce this. If we see this flag during ISel, we can select an instruction that takes an explicit rounding mode argument and use the “tonearest” value for that argument, but we are also allowed to select an instruction that uses the rounding mode from the MXCSR register and assume that when this instruction is executed that rounding mode will be “tonearest”.<br>
>>><br>
>>><br>
>>><br>
>>> If you need an intrinsic that is guaranteed not to raise exceptions, that should be a distinct intrinsic from any similar intrinsic that may raise exceptions. See, for example, llvm.experimental.constrained.nearbyint and llvm.experimental.constrained.rint which differ only in exception behavior.<br>
>>><br>
>>><br>
>>><br>
>>><br>
>>><br>
>>> -Andy<br>
>>><br>
>>><br>
>>><br>
>>><br>
>>><br>
>>> From: Arthur O'Dwyer <<a href="mailto:arthur.j.odwyer@gmail.com" target="_blank">arthur.j.odwyer@gmail.com</a>><br>
>>> Sent: Monday, August 23, 2021 2:37 PM<br>
>>> To: Sanjay Patel <<a href="mailto:spatel@rotateright.com" target="_blank">spatel@rotateright.com</a>><br>
>>> Cc: Kaylor, Andrew <<a href="mailto:andrew.kaylor@intel.com" target="_blank">andrew.kaylor@intel.com</a>>; Kevin Neal <<a href="mailto:Kevin.Neal@sas.com" target="_blank">Kevin.Neal@sas.com</a>>; Wang, Pengfei <<a href="mailto:pengfei.wang@intel.com" target="_blank">pengfei.wang@intel.com</a>>; <a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>; Clang Dev <<a href="mailto:cfe-dev@lists.llvm.org" target="_blank">cfe-dev@lists.llvm.org</a>><br>
>>> Subject: Re: [cfe-dev] [llvm-dev] Intrinsic llvm::isnan<br>
>>><br>
>>><br>
>>><br>
>>> On Mon, Aug 23, 2021 at 3:42 PM Sanjay Patel via cfe-dev <<a href="mailto:cfe-dev@lists.llvm.org" target="_blank">cfe-dev@lists.llvm.org</a>> wrote:<br>
>>><br>
>>> Ok, does this edit to the LangRef make sense for the definition of "ignore":<br>
>>><br>
>>> "optimization passes may assume that the exception status flags will not be read and that floating-point exceptions **will** be masked" --><br>
>>><br>
>>> "optimization passes may assume that the exception status flags will not be read and that floating-point exceptions **may** be masked"<br>
>>><br>
>>><br>
>>><br>
>>> I haven't been following the technical details, but in terms of the English documentation, it makes no sense to say that someone "may assume that [X] may happen." Either [X] always happens, in which case optimization passes may safely assume that it happens; or [X] never happens, in which case optimization passes may safely assume that it does not happen; or else [X] sometimes happens and sometimes doesn't, in which case optimizations passes must not assume anything about [X].<br>
>>><br>
>>><br>
>>><br>
>>> So you might say: "optimization passes may assume that the exception status flags will not be read. Floating-point exceptions might or might not be masked, depending on [____]" (and then mention the relevant variable, such as "instruction set" or "optimization level" or whatever).<br>
>>><br>
>>><br>
>>><br>
>>> HTH,<br>
>>><br>
>>> Arthur<br>
>><br>
>> _______________________________________________<br>
>> cfe-dev mailing list<br>
>> <a href="mailto:cfe-dev@lists.llvm.org" target="_blank">cfe-dev@lists.llvm.org</a><br>
>> <a href="https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev" rel="noreferrer" target="_blank">https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev</a><br>
><br>
> _______________________________________________<br>
> cfe-dev mailing list<br>
> <a href="mailto:cfe-dev@lists.llvm.org" target="_blank">cfe-dev@lists.llvm.org</a><br>
> <a href="https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev" rel="noreferrer" target="_blank">https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev</a><br>
</blockquote></div>