Home
last modified time | relevance | path

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

/external/llvm/include/llvm/Analysis/
DTargetTransformInfoImpl.h116 unsigned getCallCost(FunctionType *FTy, int NumArgs) { in getCallCost() function
403 using BaseT::getCallCost;
405 unsigned getCallCost(const Function *F, int NumArgs) { in getCallCost() function
424 return static_cast<T *>(this)->getCallCost(F->getFunctionType(), NumArgs); in getCallCost()
427 unsigned getCallCost(const Function *F, ArrayRef<const Value *> Arguments) { in getCallCost() function
431 return static_cast<T *>(this)->getCallCost(F, Arguments.size()); in getCallCost()
519 ->getCallCost(cast<FunctionType>(FTy), CS.arg_size()); in getUserCost()
523 return static_cast<T *>(this)->getCallCost(F, Arguments); in getUserCost()
DTargetTransformInfo.h156 int getCallCost(FunctionType *FTy, int NumArgs = -1) const;
162 int getCallCost(const Function *F, int NumArgs = -1) const;
167 int getCallCost(const Function *F, ArrayRef<const Value *> Arguments) const;
635 virtual int getCallCost(FunctionType *FTy, int NumArgs) = 0;
636 virtual int getCallCost(const Function *F, int NumArgs) = 0;
637 virtual int getCallCost(const Function *F,
761 int getCallCost(FunctionType *FTy, int NumArgs) override { in getCallCost() function
762 return Impl.getCallCost(FTy, NumArgs); in getCallCost()
764 int getCallCost(const Function *F, int NumArgs) override { in getCallCost() function
765 return Impl.getCallCost(F, NumArgs); in getCallCost()
[all …]
/external/llvm/lib/Analysis/
DTargetTransformInfo.cpp57 int TargetTransformInfo::getCallCost(FunctionType *FTy, int NumArgs) const { in getCallCost() function in TargetTransformInfo
58 int Cost = TTIImpl->getCallCost(FTy, NumArgs); in getCallCost()
63 int TargetTransformInfo::getCallCost(const Function *F, in getCallCost() function in TargetTransformInfo
65 int Cost = TTIImpl->getCallCost(F, Arguments); in getCallCost()