[llvm] [InstCombine] Fold `(select C, (x bin_op a), x) bin_op b` into `x bin_op select C, (a bin_op b), b` (PR #173511)
Yingwei Zheng via llvm-commits
llvm-commits at lists.llvm.org
Fri Dec 26 00:33:49 PST 2025
================
@@ -1876,6 +1876,47 @@ static Value *simplifyInstructionWithPHI(Instruction &I, PHINode *PN,
return nullptr;
}
+// In some cases it is beneficial to fold a select into a binary operator.
+// For example:
+// %1 = or %in, 4
+// %2 = select %cond, %1, %in
+// %3 = or %2, 1
+// =>
+// %1 = select i1 %cond, 5, 1
+// %2 = or %1, %in
+Instruction *InstCombinerImpl::foldSelectIntoBinOp(BinaryOperator &Op) {
+ SelectInst *SI = dyn_cast<SelectInst>(Op.getOperand(0));
----------------
dtcxzyw wrote:
Add an assertion here to make sure the op is associative (not commutative, see my previous comment https://github.com/llvm/llvm-project/pull/172662#discussion_r2637249818).
https://github.com/llvm/llvm-project/pull/173511
More information about the llvm-commits
mailing list