Lines Matching refs:LLTy
278 LLT LLTy = MRI.getType(DstRegs[0]); in mergeVectorRegsToResultRegs() local
282 LLT LCMTy = getCoverTy(LLTy, PartLLT); in mergeVectorRegsToResultRegs()
283 if (LCMTy == LLTy) { in mergeVectorRegsToResultRegs()
303 int NumDst = LCMTy.getSizeInBits() / LLTy.getSizeInBits(); in mergeVectorRegsToResultRegs()
310 PadDstRegs[I] = MRI.createGenericVirtualRegister(LLTy); in mergeVectorRegsToResultRegs()
322 ArrayRef<Register> Regs, LLT LLTy, LLT PartLLT, in buildCopyFromRegs() argument
326 if (PartLLT == LLTy) { in buildCopyFromRegs()
333 if (PartLLT.getSizeInBits() == LLTy.getSizeInBits() && OrigRegs.size() == 1 && in buildCopyFromRegs()
341 if (PartLLT.isVector() == LLTy.isVector() && in buildCopyFromRegs()
342 PartLLT.getScalarSizeInBits() > LLTy.getScalarSizeInBits() && in buildCopyFromRegs()
344 PartLLT.getNumElements() == LLTy.getNumElements()) && in buildCopyFromRegs()
351 SrcReg = B.buildAssertSExt(LocTy, SrcReg, LLTy.getScalarSizeInBits()) in buildCopyFromRegs()
354 SrcReg = B.buildAssertZExt(LocTy, SrcReg, LLTy.getScalarSizeInBits()) in buildCopyFromRegs()
370 if (!LLTy.isVector() && !PartLLT.isVector()) { in buildCopyFromRegs()
392 if (PartLLT.getSizeInBits() > LLTy.getSizeInBits() && in buildCopyFromRegs()
393 PartLLT.getScalarSizeInBits() == LLTy.getScalarSizeInBits() * 2 && in buildCopyFromRegs()
395 LLT NewTy = PartLLT.changeElementType(LLTy.getElementType()) in buildCopyFromRegs()
401 if (LLTy.getScalarType() == PartLLT.getElementType()) { in buildCopyFromRegs()
405 LLT GCDTy = getGCDType(LLTy, PartLLT); in buildCopyFromRegs()
418 assert(LLTy.isVector() && !PartLLT.isVector()); in buildCopyFromRegs()
420 LLT DstEltTy = LLTy.getElementType(); in buildCopyFromRegs()
445 for (int I = 0, NumElts = LLTy.getNumElements(); I != NumElts; ++I) { in buildCopyFromRegs()
457 LLT BVType = LLT::fixed_vector(LLTy.getNumElements(), PartLLT); in buildCopyFromRegs()