Home
last modified time | relevance | path

Searched refs:haveFastSqrt (Results 1 – 6 of 6) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DPartiallyInlineLibCalls.cpp141 if (TTI->haveFastSqrt(Call->getType()) && in runPartiallyInlineLibCalls()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h970 bool haveFastSqrt(Type *Ty) const;
1897 virtual bool haveFastSqrt(Type *Ty) = 0;
2446 bool haveFastSqrt(Type *Ty) override { return Impl.haveFastSqrt(Ty); } in haveFastSqrt() function
H A DTargetTransformInfoImpl.h406 bool haveFastSqrt(Type *Ty) const { return false; } in haveFastSqrt() function
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp639 bool TargetTransformInfo::haveFastSqrt(Type *Ty) const { in haveFastSqrt() function in TargetTransformInfo
640 return TTIImpl->haveFastSqrt(Ty); in haveFastSqrt()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/AggressiveInstCombine/
H A DAggressiveInstCombine.cpp426 if (TTI.haveFastSqrt(Ty) && in foldSqrt()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h527 bool haveFastSqrt(Type *Ty) { in haveFastSqrt() function