[llvm] [InstCombine] Fold `mul (sext bool X), Y` into `select X, -Y, 0` (PR #84792)

Yingwei Zheng via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 13 02:13:46 PDT 2024


================
@@ -448,6 +448,20 @@ Instruction *InstCombinerImpl::visitMul(BinaryOperator &I) {
   if (match(Op1, m_ZExt(m_Value(X))) && X->getType()->isIntOrIntVectorTy(1))
     return SelectInst::Create(X, Op0, ConstantInt::getNullValue(Ty));
 
+  // mul (sext X), Y -> select X, -Y, 0
+  // mul Y, (sext X) -> select X, -Y, 0
+  Value *SExtOp;
+  if (match(Op0, m_OneUse(m_SExt(m_Value(SExtOp)))) &&
----------------
dtcxzyw wrote:

It is correct. Alive2: https://alive2.llvm.org/ce/z/sTPbP3


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


More information about the llvm-commits mailing list