Home
last modified time | relevance | path

Searched refs:hasDivRemOp (Results 1 – 10 of 10) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsTargetTransformInfo.h35 bool hasDivRemOp(Type *DataType, bool IsSigned) const override;
H A DMipsTargetTransformInfo.cpp13 bool MipsTTIImpl::hasDivRemOp(Type *DataType, bool IsSigned) const { in hasDivRemOp() function in MipsTTIImpl
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZTargetTransformInfo.h85 bool hasDivRemOp(Type *DataType, bool IsSigned) const override;
H A DSystemZTargetTransformInfo.cpp481 bool SystemZTTIImpl::hasDivRemOp(Type *DataType, bool IsSigned) const { in hasDivRemOp() function in SystemZTTIImpl
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DDivRemPairs.cpp194 bool HasDivRemOp = TTI.hasDivRemOp(E.getType(), E.isSigned()); in optimizeDivRem()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.h291 bool hasDivRemOp(Type *DataType, bool IsSigned) const override;
H A DX86TargetTransformInfo.cpp6478 bool X86TTIImpl::hasDivRemOp(Type *DataType, bool IsSigned) const { in hasDivRemOp() function in X86TTIImpl
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp550 bool TargetTransformInfo::hasDivRemOp(Type *DataType, bool IsSigned) const { in hasDivRemOp() function in TargetTransformInfo
551 return TTIImpl->hasDivRemOp(DataType, IsSigned); in hasDivRemOp()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h876 LLVM_ABI bool hasDivRemOp(Type *DataType, bool IsSigned) const;
H A DTargetTransformInfoImpl.h390 virtual bool hasDivRemOp(Type *DataType, bool IsSigned) const { in hasDivRemOp() function