Lines Matching defs:VTy
638 VectorInfo(const VectorInfo &c) : VTy(c.VTy) {
676 FixedVectorType *const VTy;
678 VectorInfo(FixedVectorType *VTy) : VTy(VTy) {
679 EI = new ElementInfo[VTy->getNumElements()];
686 unsigned getDimension() const { return VTy->getNumElements(); }
696 unsigned Size = DL.getTypeAllocSize(VTy->getElementType());
739 FixedVectorType *VTy = dyn_cast<FixedVectorType>(Op->getType());
740 if (!VTy)
744 if (Result.VTy->getNumElements() % VTy->getNumElements())
747 unsigned Factor = Result.VTy->getNumElements() / VTy->getNumElements();
748 unsigned NewSize = DL.getTypeAllocSize(Result.VTy->getElementType());
749 unsigned OldSize = DL.getTypeAllocSize(VTy->getElementType());
754 VectorInfo Old(VTy);
758 for (unsigned i = 0; i < Result.VTy->getNumElements(); i += Factor) {
880 if (!DL.typeSizeEqualsStoreSize(Result.VTy->getElementType()))
896 int64_t Ofs = DL.getIndexedOffsetInType(Result.VTy, Idx);
1063 unsigned Size = DL.getTypeAllocSize(C0->VTy->getElementType());
1069 if (C->VTy != C0->VTy)