[llvm] Vectorize: Support fminimumnum and fmaximumnum (PR #131781)

YunQiang Su via llvm-commits llvm-commits at lists.llvm.org
Wed Apr 2 23:40:44 PDT 2025


================
@@ -2776,6 +2776,12 @@ class BasicTTIImplBase : public TargetTransformInfoImplCRTPBase<T> {
       }
       return Cost;
     }
+    case Intrinsic::maximumnum:
+    case Intrinsic::minimumnum: {
+      if (TLI->isOperationLegalOrPromote(llvm::ISD::FMAXNUM_IEEE, LT.second))
----------------
wzssyqa wrote:

If so, the problem will be quite complicated: different architecture uses different `fcanonical`.
LoongArch uses `min`
MIPSr6 uses `max`
AArch64 uses `max`
Maybe we can use `max && min` here. 

https://github.com/llvm/llvm-project/pull/131781


More information about the llvm-commits mailing list