/external/llvm/include/llvm/Analysis/ |
D | TargetTransformInfoImpl.h | 116 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()
|
D | TargetTransformInfo.h | 156 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/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | TargetTransformInfoImpl.h | 130 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()
|
D | TargetTransformInfo.h | 245 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 …]
|
/external/llvm/lib/Analysis/ |
D | TargetTransformInfo.cpp | 57 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()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | TargetTransformInfo.cpp | 156 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()
|