[llvm] [InstCombine] Transform high latency, dependent FSQRT/FDIV into FMUL (PR #87474)
Andy Kaylor via llvm-commits
llvm-commits at lists.llvm.org
Thu Jan 9 09:15:57 PST 2025
================
@@ -666,6 +667,90 @@ Instruction *InstCombinerImpl::foldPowiReassoc(BinaryOperator &I) {
return nullptr;
}
+// Check legality for transforming
+// x = 1.0/sqrt(a)
+// r1 = x * x;
+// r2 = a/sqrt(a);
+//
+// TO
+//
+// r1 = 1/a
+// r2 = sqrt(a)
+// x = r1 * r2
+// This transform works only when 'a' is known positive.
+static bool isFSqrtDivToFMulLegal(Instruction *X,
+ SmallPtrSetImpl<Instruction *> &R1,
+ SmallPtrSetImpl<Instruction *> &R2) {
+ BasicBlock *BBx = X->getParent();
+ BasicBlock *BBr1 = (*R1.begin())->getParent();
+ BasicBlock *BBr2 = (*R2.begin())->getParent();
+
+ CallInst *FSqrt = cast<CallInst>(X->getOperand(1));
----------------
andykaylor wrote:
The cast contains an assert, so there's no need to add one. I understand your point about readability. I think it's better to have code that avoids failures than to have code that fails in obvious ways if misused, but I'm willing to leave that up to you.
https://github.com/llvm/llvm-project/pull/87474
More information about the llvm-commits
mailing list