Home | History | Annotate | Download | only in CodeGen

Lines Matching full:retty

101   virtual unsigned getIntrinsicInstrCost(Intrinsic::ID, Type *RetTy,
382 unsigned BasicTTI::getIntrinsicInstrCost(Intrinsic::ID IID, Type *RetTy,
390 if (RetTy->isVectorTy()) {
391 ScalarizationCost = getScalarizationOverhead(RetTy, true, false);
392 ScalarCalls = std::max(ScalarCalls, RetTy->getVectorNumElements());
397 ScalarCalls = std::max(ScalarCalls, RetTy->getVectorNumElements());
423 std::pair<unsigned, MVT> LT = TLI->getTypeLegalizationCost(RetTy);
444 if (RetTy->isVectorTy()) {
445 unsigned Num = RetTy->getVectorNumElements();
446 unsigned Cost = TopTTI->getIntrinsicInstrCost(IID, RetTy->getScalarType(),