[llvm] [InstCombine] Handle scalable splats of constants in getMinimumFPType (PR #132960)

Yingwei Zheng via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 26 18:01:29 PDT 2025


================
@@ -1685,11 +1685,12 @@ static Type *getMinimumFPType(Value *V, bool PreferBFloat) {
       return T;
 
   // We can only correctly find a minimum type for a scalable vector when it is
-  // a splat. For splats of constant values the fpext is wrapped up as a
-  // ConstantExpr.
-  if (auto *FPCExt = dyn_cast<ConstantExpr>(V))
-    if (FPCExt->getOpcode() == Instruction::FPExt)
-      return FPCExt->getOperand(0)->getType();
+  // a splat.
+  if (auto *FPCE = dyn_cast<ConstantExpr>(V))
+    if (isa<ScalableVectorType>(V->getType()))
+      if (auto *Splat = dyn_cast<ConstantFP>(FPCE->getSplatValue()))
----------------
dtcxzyw wrote:

Fixed-width vectors are handled by `shrinkFPConstantVector` below.


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


More information about the llvm-commits mailing list