Lines Matching refs:NewTy
1650 Type *NewTy = ArgTys[D.getArgumentNumber()]; in matchIntrinsicType() local
1651 if (VectorType *VTy = dyn_cast<VectorType>(NewTy)) in matchIntrinsicType()
1652 NewTy = VectorType::getExtendedElementVectorType(VTy); in matchIntrinsicType()
1653 else if (IntegerType *ITy = dyn_cast<IntegerType>(NewTy)) in matchIntrinsicType()
1654 NewTy = IntegerType::get(ITy->getContext(), 2 * ITy->getBitWidth()); in matchIntrinsicType()
1658 return Ty != NewTy; in matchIntrinsicType()
1665 Type *NewTy = ArgTys[D.getArgumentNumber()]; in matchIntrinsicType() local
1666 if (VectorType *VTy = dyn_cast<VectorType>(NewTy)) in matchIntrinsicType()
1667 NewTy = VectorType::getTruncatedElementVectorType(VTy); in matchIntrinsicType()
1668 else if (IntegerType *ITy = dyn_cast<IntegerType>(NewTy)) in matchIntrinsicType()
1669 NewTy = IntegerType::get(ITy->getContext(), ITy->getBitWidth() / 2); in matchIntrinsicType()
1673 return Ty != NewTy; in matchIntrinsicType()
1742 Type *NewTy = ArgTys[D.getArgumentNumber()]; in matchIntrinsicType() local
1743 if (auto *VTy = dyn_cast<VectorType>(NewTy)) { in matchIntrinsicType()
1745 NewTy = VectorType::getSubdividedVectorType(VTy, SubDivs); in matchIntrinsicType()
1746 return Ty != NewTy; in matchIntrinsicType()