Searched refs:hasDivRemOp (Results 1 – 8 of 8) sorted by relevance
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/ |
D | SystemZTargetTransformInfo.h | 66 bool hasDivRemOp(Type *DataType, bool IsSigned);
|
D | SystemZTargetTransformInfo.cpp | 326 bool SystemZTTIImpl::hasDivRemOp(Type *DataType, bool IsSigned) { in hasDivRemOp() function in SystemZTTIImpl
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86TargetTransformInfo.h | 196 bool hasDivRemOp(Type *DataType, bool IsSigned);
|
D | X86TargetTransformInfo.cpp | 3475 bool X86TTIImpl::hasDivRemOp(Type *DataType, bool IsSigned) { in hasDivRemOp() function in X86TTIImpl
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | DivRemPairs.cpp | 193 bool HasDivRemOp = TTI.hasDivRemOp(E.getType(), E.isSigned()); in optimizeDivRem()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | TargetTransformInfo.h | 614 bool hasDivRemOp(Type *DataType, bool IsSigned) const; 1244 virtual bool hasDivRemOp(Type *DataType, bool IsSigned) = 0; 1552 bool hasDivRemOp(Type *DataType, bool IsSigned) override { in hasDivRemOp() function 1553 return Impl.hasDivRemOp(DataType, IsSigned); in hasDivRemOp()
|
D | TargetTransformInfoImpl.h | 287 bool hasDivRemOp(Type *DataType, bool IsSigned) { return false; } in hasDivRemOp() function
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | TargetTransformInfo.cpp | 336 bool TargetTransformInfo::hasDivRemOp(Type *DataType, bool IsSigned) const { in hasDivRemOp() function in TargetTransformInfo 337 return TTIImpl->hasDivRemOp(DataType, IsSigned); in hasDivRemOp()
|