[llvm] [InstCombine] Fold (X * 0.0) * constant => X * 0.0 #85241 (PR #92512)

Jay Foad via llvm-commits llvm-commits at lists.llvm.org
Thu May 23 01:14:46 PDT 2024


================
@@ -905,6 +905,16 @@ Instruction *InstCombinerImpl::visitFMul(BinaryOperator &I) {
     }
   }
 
+  // (X * 0.0) * constant => X * 0.0
+  if (match(Op0, m_FMul(m_Value(X), m_AnyZeroFP())) &&
+      match(Op1, m_Constant(C))) {
+    Constant *C1 = cast<Constant>(cast<Instruction>(Op0)->getOperand(1));
+    if (Constant *CC1 =
+            ConstantFoldBinaryOpOperands(Instruction::FMul, C, C1, DL)) {
+      return BinaryOperator::CreateFMulFMF(X, CC1, I.getFastMathFlags());
----------------
jayfoad wrote:

In general I think it would be safer to only propagate flags that are present on _both_ of the original fmul instructions. But I agree that you should check all cases with alive2.

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


More information about the llvm-commits mailing list