D | TargetTransformInfo.cpp | 52 int Cost = TTIImpl->getOperationCost(Opcode, Ty, OpTy); in getOperationCost() local 53 assert(Cost >= 0 && "TTI should not produce negative costs!"); in getOperationCost() 54 return Cost; in getOperationCost() 58 int Cost = TTIImpl->getCallCost(FTy, NumArgs); in getCallCost() local 59 assert(Cost >= 0 && "TTI should not produce negative costs!"); in getCallCost() 60 return Cost; in getCallCost() 65 int Cost = TTIImpl->getCallCost(F, Arguments); in getCallCost() local 66 assert(Cost >= 0 && "TTI should not produce negative costs!"); in getCallCost() 67 return Cost; in getCallCost() 81 int Cost = TTIImpl->getIntrinsicCost(IID, RetTy, Arguments); in getIntrinsicCost() local [all …]
|