Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Transforms/Scalar/
H A DPartiallyInlineLibCalls.cpp141 if (TTI->haveFastSqrt(Call->getType()) && in runPartiallyInlineLibCalls()
/llvm-project-15.0.7/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h849 bool haveFastSqrt(Type *Ty) const;
1653 virtual bool haveFastSqrt(Type *Ty) = 0;
2131 bool haveFastSqrt(Type *Ty) override { return Impl.haveFastSqrt(Ty); } in haveFastSqrt() function
H A DTargetTransformInfoImpl.h370 bool haveFastSqrt(Type *Ty) const { return false; } in haveFastSqrt() function
/llvm-project-15.0.7/llvm/lib/Transforms/AggressiveInstCombine/
H A DAggressiveInstCombine.cpp457 if (TTI.haveFastSqrt(Ty) && Call->hasNoNaNs()) { in foldSqrt()
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp567 bool TargetTransformInfo::haveFastSqrt(Type *Ty) const { in haveFastSqrt() function in TargetTransformInfo
568 return TTIImpl->haveFastSqrt(Ty); in haveFastSqrt()
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h490 bool haveFastSqrt(Type *Ty) { in haveFastSqrt() function