Home | History | Annotate | Download | only in Analysis

Lines Matching defs:FTy

62 unsigned TargetTransformInfo::getCallCost(FunctionType *FTy,
64 return PrevTTI->getCallCost(FTy, NumArgs);
309 unsigned getCallCost(FunctionType *FTy, int NumArgs = -1) const {
310 assert(FTy && "FunctionType must be provided to this routine.");
319 NumArgs = FTy->getNumParams();
333 FunctionType *FTy = F->getFunctionType();
334 SmallVector<Type *, 8> ParamTys(FTy->param_begin(), FTy->param_end());
335 return TopTTI->getIntrinsicCost(IID, FTy->getReturnType(), ParamTys);
400 Type *FTy = CS.getCalledValue()->getType()->getPointerElementType();
401 return TopTTI->getCallCost(cast<FunctionType>(FTy), CS.arg_size());