Lines Matching refs:ArgTys

1489   SmallVector<Type*, 8> ArgTys;  in getType()  local
1491 ArgTys.push_back(DecodeFixedType(TableRef, Tys, Context)); in getType()
1495 if (!ArgTys.empty() && ArgTys.back()->isVoidTy()) { in getType()
1496 ArgTys.pop_back(); in getType()
1497 return FunctionType::get(ResultTy, ArgTys, true); in getType()
1499 return FunctionType::get(ResultTy, ArgTys, false); in getType()
1562 SmallVectorImpl<Type *> &ArgTys, in matchIntrinsicType() argument
1600 matchIntrinsicType(VT->getElementType(), Infos, ArgTys, in matchIntrinsicType()
1615 if (matchIntrinsicType(ST->getElementType(i), Infos, ArgTys, in matchIntrinsicType()
1624 if (D.getArgumentNumber() < ArgTys.size()) in matchIntrinsicType()
1625 return Ty != ArgTys[D.getArgumentNumber()]; in matchIntrinsicType()
1627 if (D.getArgumentNumber() > ArgTys.size() || in matchIntrinsicType()
1631 assert(D.getArgumentNumber() == ArgTys.size() && !IsDeferredCheck && in matchIntrinsicType()
1633 ArgTys.push_back(Ty); in matchIntrinsicType()
1647 if (D.getArgumentNumber() >= ArgTys.size()) in matchIntrinsicType()
1650 Type *NewTy = ArgTys[D.getArgumentNumber()]; in matchIntrinsicType()
1662 if (D.getArgumentNumber() >= ArgTys.size()) in matchIntrinsicType()
1665 Type *NewTy = ArgTys[D.getArgumentNumber()]; in matchIntrinsicType()
1677 if (D.getArgumentNumber() >= ArgTys.size()) in matchIntrinsicType()
1679 return !isa<VectorType>(ArgTys[D.getArgumentNumber()]) || in matchIntrinsicType()
1681 cast<VectorType>(ArgTys[D.getArgumentNumber()])) != Ty; in matchIntrinsicType()
1683 if (D.getArgumentNumber() >= ArgTys.size()) { in matchIntrinsicType()
1688 auto *ReferenceType = dyn_cast<VectorType>(ArgTys[D.getArgumentNumber()]); in matchIntrinsicType()
1700 return matchIntrinsicType(EltTy, Infos, ArgTys, DeferredChecks, in matchIntrinsicType()
1705 if (RefArgNumber >= ArgTys.size()) { in matchIntrinsicType()
1710 ArgTys.push_back(Ty); in matchIntrinsicType()
1715 assert(D.getOverloadArgNumber() == ArgTys.size() && in matchIntrinsicType()
1717 ArgTys.push_back(Ty); in matchIntrinsicType()
1723 auto *ReferenceType = dyn_cast<VectorType>(ArgTys[RefArgNumber]); in matchIntrinsicType()
1731 if (D.getArgumentNumber() >= ArgTys.size()) in matchIntrinsicType()
1733 auto *ReferenceType = dyn_cast<VectorType>(ArgTys[D.getArgumentNumber()]); in matchIntrinsicType()
1739 if (D.getArgumentNumber() >= ArgTys.size()) in matchIntrinsicType()
1742 Type *NewTy = ArgTys[D.getArgumentNumber()]; in matchIntrinsicType()
1751 if (D.getArgumentNumber() >= ArgTys.size()) in matchIntrinsicType()
1753 auto *ReferenceType = dyn_cast<VectorType>(ArgTys[D.getArgumentNumber()]); in matchIntrinsicType()
1766 SmallVectorImpl<Type *> &ArgTys) { in matchIntrinsicSignature() argument
1768 if (matchIntrinsicType(FTy->getReturnType(), Infos, ArgTys, DeferredChecks, in matchIntrinsicSignature()
1775 if (matchIntrinsicType(Ty, Infos, ArgTys, DeferredChecks, false)) in matchIntrinsicSignature()
1780 if (matchIntrinsicType(Check.first, Check.second, ArgTys, DeferredChecks, in matchIntrinsicSignature()
1810 SmallVectorImpl<Type *> &ArgTys) { in getIntrinsicSignature() argument
1818 if (Intrinsic::matchIntrinsicSignature(FT, TableRef, ArgTys) != in getIntrinsicSignature()
1828 SmallVectorImpl<Type *> &ArgTys) { in getIntrinsicSignature() argument
1830 ArgTys); in getIntrinsicSignature()
1834 SmallVector<Type *, 4> ArgTys; in remangleIntrinsicFunction() local
1835 if (!getIntrinsicSignature(F, ArgTys)) in remangleIntrinsicFunction()
1841 Intrinsic::getName(ID, ArgTys, F->getParent(), F->getFunctionType()); in remangleIntrinsicFunction()
1857 return Intrinsic::getDeclaration(F->getParent(), ID, ArgTys); in remangleIntrinsicFunction()