HomeSort by relevance Sort by last modified time
    Searched defs:getCallCost (Results 1 - 2 of 2) sorted by null

  /external/llvm/include/llvm/Analysis/
TargetTransformInfoImpl.h 120 unsigned getCallCost(FunctionType *FTy, int NumArgs) {
358 using BaseT::getCallCost;
360 unsigned getCallCost(const Function *F, int NumArgs) {
379 return static_cast<T *>(this)->getCallCost(F->getFunctionType(), NumArgs);
382 unsigned getCallCost(const Function *F, ArrayRef<const Value *> Arguments) {
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/
TargetTransformInfo.cpp 54 unsigned TargetTransformInfo::getCallCost(FunctionType *FTy,
56 return TTIImpl->getCallCost(FTy, NumArgs);
60 TargetTransformInfo::getCallCost(const Function *F,
62 return TTIImpl->getCallCost(F, Arguments);

Completed in 62 milliseconds