Lines Matching defs:VTy
1029 } else if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
1030 ElementCount EC = VTy->getElementCount();
1034 getMangledTypeStr(VTy->getElementType(), HasUnnamedType);
1430 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
1431 return VectorType::getExtendedElementVectorType(VTy);
1437 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
1438 return VectorType::getTruncatedElementVectorType(VTy);
1447 VectorType *VTy = dyn_cast<VectorType>(Ty);
1448 assert(VTy && "Expected an argument of Vector Type");
1450 return VectorType::getSubdividedVectorType(VTy, SubDivs);
1458 if (auto *VTy = dyn_cast<VectorType>(Ty))
1459 return VectorType::get(EltTy, VTy->getElementCount());
1464 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
1465 return VTy->getElementType();
1470 VectorType *VTy = dyn_cast<VectorType>(Ty);
1471 assert(VTy && "Expected an argument of Vector Type");
1472 return VectorType::getInteger(VTy);
1651 if (VectorType *VTy = dyn_cast<VectorType>(NewTy))
1652 NewTy = VectorType::getExtendedElementVectorType(VTy);
1666 if (VectorType *VTy = dyn_cast<VectorType>(NewTy))
1667 NewTy = VectorType::getTruncatedElementVectorType(VTy);
1743 if (auto *VTy = dyn_cast<VectorType>(NewTy)) {
1745 NewTy = VectorType::getSubdividedVectorType(VTy, SubDivs);