[llvm] [InstCombine] optimize exp(exp(x)) / exp(x) with fast-math (PR #66177)
Vikash Gupta via llvm-commits
llvm-commits at lists.llvm.org
Sun Mar 9 23:52:55 PDT 2025
================
@@ -1748,6 +1748,18 @@ Instruction *InstCombinerImpl::visitFDiv(BinaryOperator &I) {
if (Instruction *Mul = foldFDivPowDivisor(I, Builder))
return Mul;
+ Value *ExpX;
+ // exp(exp(X)) / exp(X) -> exp(exp(X) - X)
+ if (match(Op0, m_Intrinsic<Intrinsic::exp>(m_Value(ExpX))) &&
+ match(Op1, m_Intrinsic<Intrinsic::exp>(m_Value(X))) &&
+ match(ExpX, m_Intrinsic<Intrinsic::exp>(m_Specific(X)))) {
+ // check that exp(x) is only used in the div expression.
+ if (Op1->hasNUses(2)) {
+ Value *XY = Builder.CreateFSubFMF(ExpX, X, &I);
+ auto *NewPow = Builder.CreateUnaryIntrinsic(Intrinsic::exp, XY, &I);
----------------
vg0204 wrote:
Also, no flags coming from the original EXP to the replaced one too!
https://github.com/llvm/llvm-project/pull/66177
More information about the llvm-commits
mailing list