Searched defs:getCallCost (Results 1 - 2 of 2) sorted by relevance

/external/llvm/include/llvm/Analysis/
H A DTargetTransformInfoImpl.h120 unsigned getCallCost(FunctionType *FTy, int NumArgs) { function in class:llvm::TargetTransformInfoImplBase
358 using BaseT::getCallCost;
360 unsigned getCallCost(const Function *F, int NumArgs) { function in class:llvm::TargetTransformInfoImplCRTPBase
379 return static_cast<T *>(this)->getCallCost(F->getFunctionType(), NumArgs);
382 unsigned getCallCost(const Function *F, ArrayRef<const Value *> Arguments) { function in class:llvm::TargetTransformInfoImplCRTPBase
386 return static_cast<T *>(this)->getCallCost(F, Arguments.size());
419 ->getCallCost(cast<FunctionType>(FTy), CS.arg_size());
423 return static_cast<T *>(this)->getCallCost(F, Arguments);
/external/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp54 unsigned TargetTransformInfo::getCallCost(FunctionType *FTy, function in class:TargetTransformInfo
56 return TTIImpl->getCallCost(FTy, NumArgs);
60 TargetTransformInfo::getCallCost(const Function *F, function in class:TargetTransformInfo
62 return TTIImpl->getCallCost(F, Arguments);

Completed in 82 milliseconds