Home | History | Annotate | Download | only in Analysis

Lines Matching defs:FTy

53 unsigned TargetTransformInfo::getCallCost(FunctionType *FTy,
55 return PrevTTI->getCallCost(FTy, NumArgs);
334 unsigned getCallCost(FunctionType *FTy, int NumArgs = -1) const override
336 assert(FTy && "FunctionType must be provided to this routine.");
345 NumArgs = FTy->getNumParams();
360 FunctionType *FTy = F->getFunctionType();
361 SmallVector<Type *, 8> ParamTys(FTy->param_begin(), FTy->param_end());
362 return TopTTI->getIntrinsicCost(IID, FTy->getReturnType(), ParamTys);
428 Type *FTy = CS.getCalledValue()->getType()->getPointerElementType();
429 return TopTTI->getCallCost(cast<FunctionType>(FTy), CS.arg_size());