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

David Sherwood via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 27 02:12:46 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()))
----------------
david-arm wrote:

Thanks for this. I personally think it looks neater to handle all splats in one place.

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


More information about the llvm-commits mailing list