Home
last modified time | relevance | path

Searched refs:getCallCost (Results 1 – 3 of 3) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DTargetTransformInfoImpl.h130 unsigned getCallCost(FunctionType *FTy, int NumArgs, const User *U) { in getCallCost() function
713 using BaseT::getCallCost;
715 unsigned getCallCost(const Function *F, int NumArgs, const User *U) { in getCallCost() function
734 return static_cast<T *>(this)->getCallCost(F->getFunctionType(), NumArgs, U); in getCallCost()
737 unsigned getCallCost(const Function *F, ArrayRef<const Value *> Arguments, in getCallCost() function
742 return static_cast<T *>(this)->getCallCost(F, Arguments.size(), U); in getCallCost()
885 ->getCallCost(cast<FunctionType>(FTy), CS.arg_size(), U); in getUserCost()
889 return static_cast<T *>(this)->getCallCost(F, Arguments, U); in getUserCost()
DTargetTransformInfo.h245 int getCallCost(FunctionType *FTy, int NumArgs = -1,
252 int getCallCost(const Function *F, int NumArgs = -1,
258 int getCallCost(const Function *F, ArrayRef<const Value *> Arguments,
1182 virtual int getCallCost(FunctionType *FTy, int NumArgs, const User *U) = 0;
1183 virtual int getCallCost(const Function *F, int NumArgs, const User *U) = 0;
1184 virtual int getCallCost(const Function *F,
1423 int getCallCost(FunctionType *FTy, int NumArgs, const User *U) override { in getCallCost() function
1424 return Impl.getCallCost(FTy, NumArgs, U); in getCallCost()
1426 int getCallCost(const Function *F, int NumArgs, const User *U) override { in getCallCost() function
1427 return Impl.getCallCost(F, NumArgs, U); in getCallCost()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DTargetTransformInfo.cpp156 int TargetTransformInfo::getCallCost(FunctionType *FTy, int NumArgs, in getCallCost() function in TargetTransformInfo
158 int Cost = TTIImpl->getCallCost(FTy, NumArgs, U); in getCallCost()
163 int TargetTransformInfo::getCallCost(const Function *F, in getCallCost() function in TargetTransformInfo
166 int Cost = TTIImpl->getCallCost(F, Arguments, U); in getCallCost()