<div dir="ltr"><div>I agree that we should remove the target options as an override for FMF.</div><div>But we should be aware of a current shortcoming in IR/node-level FMF.  Here's a simple recent example:</div><div><a href="https://llvm.org/PR52259">https://llvm.org/PR52259</a></div><div><br></div><div>When compiled with -fno-signed-zeros ("nsz"), we want this to be "llvm.fabs" in IR:<br></div><div><pre class="gmail-bz_comment_text" id="gmail-comment_text_0">double floatingAbs(double x) {
  if (x < 0) return -x;
  return x;
}
</pre></div><div>But it doesn't work because the application of FMF is incomplete (or the FMF design is broken?) - we don't have FMF on function arguments or loaded FP values. <br></div><div><br></div><div>This patch proposes to solve that example by using function-level attributes:</div><div><a href="https://reviews.llvm.org/D112283">https://reviews.llvm.org/D112283</a></div><div><br></div><div>IIUC, removing the target options still allows for the function attribute override to FMF, so we will still have a potential work-around for the holes in FMF design/implementation.<br></div><div><br></div><div><br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Sat, Oct 30, 2021 at 4:02 PM Renato Golin via llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</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"><div dir="ltr"><div dir="ltr">On Sat, 30 Oct 2021 at 17:56, Craig Topper <<a href="mailto:craig.topper@gmail.com" target="_blank">craig.topper@gmail.com</a>> wrote:<br></div><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">I thought the target options were older than FMF. I don't think they were created as a workaround for a shortcoming of FMF. Though that may be what they've become.</div></blockquote><div><br></div><div>This is what I read from Pengfei's reply. Target options are being used that way, not created that way.</div><div><br></div><div>--renato</div></div></div>
_______________________________________________<br>
LLVM Developers mailing list<br>
<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a><br>
<a href="https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" rel="noreferrer" target="_blank">https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev</a><br>
</blockquote></div>