Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
H A DSystemZTargetTransformInfo.h78 bool hasDivRemOp(Type *DataType, bool IsSigned);
H A DSystemZTargetTransformInfo.cpp359 bool SystemZTTIImpl::hasDivRemOp(Type *DataType, bool IsSigned) { in hasDivRemOp() function in SystemZTTIImpl
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DDivRemPairs.cpp196 bool HasDivRemOp = TTI.hasDivRemOp(E.getType(), E.isSigned()); in optimizeDivRem()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.h234 bool hasDivRemOp(Type *DataType, bool IsSigned);
H A DX86TargetTransformInfo.cpp4610 bool X86TTIImpl::hasDivRemOp(Type *DataType, bool IsSigned) { in hasDivRemOp() function in X86TTIImpl
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h668 bool hasDivRemOp(Type *DataType, bool IsSigned) const;
1519 virtual bool hasDivRemOp(Type *DataType, bool IsSigned) = 0;
1900 bool hasDivRemOp(Type *DataType, bool IsSigned) override { in hasDivRemOp() function
1901 return Impl.hasDivRemOp(DataType, IsSigned); in hasDivRemOp()
H A DTargetTransformInfoImpl.h265 bool hasDivRemOp(Type *DataType, bool IsSigned) const { return false; } in hasDivRemOp() function
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp412 bool TargetTransformInfo::hasDivRemOp(Type *DataType, bool IsSigned) const { in hasDivRemOp() function in TargetTransformInfo
413 return TTIImpl->hasDivRemOp(DataType, IsSigned); in hasDivRemOp()