Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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);
/openbsd-src/gnu/llvm/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
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DDivRemPairs.cpp197 bool HasDivRemOp = TTI.hasDivRemOp(E.getType(), E.isSigned()); in optimizeDivRem()
/openbsd-src/gnu/llvm/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.h257 bool hasDivRemOp(Type *DataType, bool IsSigned);
H A DX86TargetTransformInfo.cpp6045 bool X86TTIImpl::hasDivRemOp(Type *DataType, bool IsSigned) { in hasDivRemOp() function in X86TTIImpl
/openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h689 bool hasDivRemOp(Type *DataType, bool IsSigned) const;
1664 virtual bool hasDivRemOp(Type *DataType, bool IsSigned) = 0;
2118 bool hasDivRemOp(Type *DataType, bool IsSigned) override { in hasDivRemOp() function
2119 return Impl.hasDivRemOp(DataType, IsSigned); in hasDivRemOp()
H A DTargetTransformInfoImpl.h295 bool hasDivRemOp(Type *DataType, bool IsSigned) const { return false; } in hasDivRemOp() function
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp455 bool TargetTransformInfo::hasDivRemOp(Type *DataType, bool IsSigned) const { in hasDivRemOp() function in TargetTransformInfo
456 return TTIImpl->hasDivRemOp(DataType, IsSigned); in hasDivRemOp()