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 116 unsigned getCallCost(FunctionType *FTy, int NumArgs) {
367 using BaseT::getCallCost;
369 unsigned getCallCost(const Function *F, int NumArgs) {
388 return static_cast<T *>(this)->getCallCost(F->getFunctionType(), NumArgs);
391 unsigned getCallCost(const Function *F, ArrayRef<const Value *> Arguments) {
395 return static_cast<T *>(this)->getCallCost(F, Arguments.size());
483 ->getCallCost(cast<FunctionType>(FTy), CS.arg_size());
487 return static_cast<T *>(this)->getCallCost(F, Arguments);
  /external/llvm/lib/Analysis/
TargetTransformInfo.cpp 56 int TargetTransformInfo::getCallCost(FunctionType *FTy, int NumArgs) const {
57 int Cost = TTIImpl->getCallCost(FTy, NumArgs);
62 int TargetTransformInfo::getCallCost(const Function *F,
64 int Cost = TTIImpl->getCallCost(F, Arguments);

Completed in 4781 milliseconds