Lines Matching defs:VTy
287 Type *pickVectorType(VectorType *VTy = nullptr) {
291 if (VTy)
292 return VectorType::get(Ty, VTy->getElementCount());
531 Type *VTy = V->getType();
535 if (VTy->isVectorTy())
536 DestTy = pickVectorType(cast<VectorType>(VTy));
539 if (VTy == DestTy) return;
542 if (VTy->isPointerTy()) {
549 unsigned VSize = VTy->getScalarType()->getPrimitiveSizeInBits();
559 if (VTy->isIntOrIntVectorTy() && DestTy->isIntOrIntVectorTy()) {
574 if (VTy->isFPOrFPVectorTy() && DestTy->isIntOrIntVectorTy()) {
583 if (VTy->isIntOrIntVectorTy() && DestTy->isFPOrFPVectorTy()) {
592 if (VTy->isFPOrFPVectorTy() && DestTy->isFPOrFPVectorTy()) {
619 if (auto *VTy = dyn_cast<VectorType>(Val0->getType()))
621 CondTy = VectorType::get(CondTy, VTy->getElementCount());