Lines Matching defs:VTy
295 Type *pickVectorType(VectorType *VTy = nullptr) {
303 if (VTy)
304 return VectorType::get(Ty, VTy->getElementCount());
544 Type *VTy = V->getType();
548 if (VTy->isVectorTy())
549 DestTy = pickVectorType(cast<VectorType>(VTy));
552 if (VTy == DestTy) return;
555 if (VTy->isPointerTy()) {
562 unsigned VSize = VTy->getScalarType()->getPrimitiveSizeInBits();
572 if (VTy->isIntOrIntVectorTy() && DestTy->isIntOrIntVectorTy()) {
586 if (VTy->isFPOrFPVectorTy() && DestTy->isIntOrIntVectorTy()) {
594 if (VTy->isIntOrIntVectorTy() && DestTy->isFPOrFPVectorTy()) {
602 if (VTy->isFPOrFPVectorTy() && DestTy->isFPOrFPVectorTy()) {
629 if (auto *VTy = dyn_cast<VectorType>(Val0->getType()))
631 CondTy = VectorType::get(CondTy, VTy->getElementCount());