Lines Matching refs:LLTy
300 LLT LLTy = MRI.getType(DstRegs[0]); in mergeVectorRegsToResultRegs() local
304 LLT LCMTy = getCoverTy(LLTy, PartLLT); in mergeVectorRegsToResultRegs()
305 if (LCMTy == LLTy) { in mergeVectorRegsToResultRegs()
325 int NumDst = LCMTy.getSizeInBits() / LLTy.getSizeInBits(); in mergeVectorRegsToResultRegs()
332 PadDstRegs[I] = MRI.createGenericVirtualRegister(LLTy); in mergeVectorRegsToResultRegs()
344 ArrayRef<Register> Regs, LLT LLTy, LLT PartLLT, in buildCopyFromRegs() argument
348 if (PartLLT == LLTy) { in buildCopyFromRegs()
355 if (PartLLT.getSizeInBits() == LLTy.getSizeInBits() && OrigRegs.size() == 1 && in buildCopyFromRegs()
363 if (PartLLT.isVector() == LLTy.isVector() && in buildCopyFromRegs()
364 PartLLT.getScalarSizeInBits() > LLTy.getScalarSizeInBits() && in buildCopyFromRegs()
366 PartLLT.getElementCount() == LLTy.getElementCount()) && in buildCopyFromRegs()
373 SrcReg = B.buildAssertSExt(LocTy, SrcReg, LLTy.getScalarSizeInBits()) in buildCopyFromRegs()
376 SrcReg = B.buildAssertZExt(LocTy, SrcReg, LLTy.getScalarSizeInBits()) in buildCopyFromRegs()
392 if (!LLTy.isVector() && !PartLLT.isVector()) { in buildCopyFromRegs()
415 if (PartLLT.getSizeInBits() > LLTy.getSizeInBits() && in buildCopyFromRegs()
416 PartLLT.getScalarSizeInBits() == LLTy.getScalarSizeInBits() * 2 && in buildCopyFromRegs()
418 LLT NewTy = PartLLT.changeElementType(LLTy.getElementType()) in buildCopyFromRegs()
424 if (LLTy.getScalarType() == PartLLT.getElementType()) { in buildCopyFromRegs()
428 LLT GCDTy = getGCDType(LLTy, PartLLT); in buildCopyFromRegs()
441 assert(LLTy.isVector() && !PartLLT.isVector()); in buildCopyFromRegs()
443 LLT DstEltTy = LLTy.getElementType(); in buildCopyFromRegs()
468 for (int I = 0, NumElts = LLTy.getNumElements(); I != NumElts; ++I) { in buildCopyFromRegs()
481 unsigned NumElts = LLTy.getNumElements(); in buildCopyFromRegs()