Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Target/Mips/
H A DMipsTargetTransformInfo.cpp13 bool MipsTTIImpl::hasDivRemOp(Type *DataType, bool IsSigned) { in hasDivRemOp() function in MipsTTIImpl
H A DMipsTargetTransformInfo.h35 bool hasDivRemOp(Type *DataType, bool IsSigned);
/llvm-project-15.0.7/llvm/lib/Target/SystemZ/
H A DSystemZTargetTransformInfo.h80 bool hasDivRemOp(Type *DataType, bool IsSigned);
H A DSystemZTargetTransformInfo.cpp396 bool SystemZTTIImpl::hasDivRemOp(Type *DataType, bool IsSigned) { in hasDivRemOp() function in SystemZTTIImpl
/llvm-project-15.0.7/llvm/lib/Transforms/Scalar/
H A DDivRemPairs.cpp196 bool HasDivRemOp = TTI.hasDivRemOp(E.getType(), E.isSigned()); in optimizeDivRem()
/llvm-project-15.0.7/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.h246 bool hasDivRemOp(Type *DataType, bool IsSigned);
H A DX86TargetTransformInfo.cpp5398 bool X86TTIImpl::hasDivRemOp(Type *DataType, bool IsSigned) { in hasDivRemOp() function in X86TTIImpl
/llvm-project-15.0.7/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h707 bool hasDivRemOp(Type *DataType, bool IsSigned) const;
1615 virtual bool hasDivRemOp(Type *DataType, bool IsSigned) = 0;
2048 bool hasDivRemOp(Type *DataType, bool IsSigned) override { in hasDivRemOp() function
2049 return Impl.hasDivRemOp(DataType, IsSigned); in hasDivRemOp()
H A DTargetTransformInfoImpl.h291 bool hasDivRemOp(Type *DataType, bool IsSigned) const { return false; } in hasDivRemOp() function
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp450 bool TargetTransformInfo::hasDivRemOp(Type *DataType, bool IsSigned) const { in hasDivRemOp() function in TargetTransformInfo
451 return TTIImpl->hasDivRemOp(DataType, IsSigned); in hasDivRemOp()